← ZL256 task inventory
scaffoldCore-1 previewrevision 2

Schema Version Record

flow/schema-version-record
flowcompiledinterpreterc

Public context

What an implementation receives

This conformance task is evaluated from its checked task definition and published source closure. It is not currently in the model-synthesis lane.

Public cases

1 inspectable case

publicpublic input + expected behavior
Input
{
  "fields": [
    {
      "name": "argument",
      "value": {
        "type": "integer",
        "value": "41"
      }
    },
    {
      "name": "scenario",
      "value": {
        "type": "text",
        "value": "schema-version-record"
      }
    }
  ],
  "type": "record"
}
Expected
{
  "kind": "history",
  "value": {
    "fields": [
      {
        "name": "run_id",
        "value": {
          "type": "integer",
          "value": "1"
        }
      },
      {
        "name": "events",
        "value": {
          "items": [
            {
              "fields": [
                {
                  "name": "command",
                  "value": {
                    "type": "text",
                    "value": "activity"
                  }
                },
                {
                  "name": "node",
                  "value": {
                    "type": "integer",
                    "value": "1"
                  }
                },
                {
                  "name": "attempt",
                  "value": {
                    "type": "integer",
                    "value": "1"
                  }
                },
                {
                  "name": "domain",
                  "value": {
                    "type": "text",
                    "value": "algorithm"
                  }
                },
                {
                  "name": "schema",
                  "value": {
                    "type": "integer",
                    "value": "1"
                  }
                },
                {
                  "name": "input",
                  "value": {
                    "type": "integer",
                    "value": "41"
                  }
                }
              ],
              "type": "record"
            },
            {
              "fields": [
                {
                  "name": "command",
                  "value": {
                    "type": "text",
                    "value": "complete"
                  }
                },
                {
                  "name": "result",
                  "value": {
                    "type": "integer",
                    "value": "42"
                  }
                }
              ],
              "type": "record"
            }
          ],
          "type": "sequence"
        }
      },
      {
        "name": "history",
        "value": {
          "hex": "",
          "type": "bytes"
        }
      }
    ],
    "type": "record"
  }
}

Held-out inputs and expectations are excluded from this projection. Their published outcomes are aggregate-only.

Code entry

ZergLang source policy

source/main.zlZergLang
module benchmark_flow_schema_version_record;

// Source graph for durable scenario: schema-version-record.
public value Definition {
    public compiled algorithm message activity(type: Class<Self>, input: Int64)
        -> Int64 effects {} { return input + 1; }
    public compiled flow message run(type: Class<Self>, input: Int64)
        -> Int64 effects { flow } {
        return Flow.activity(1, Definition.activity, input, 1, 1, true);
    }
    public interpreted algorithm message start(type: Class<Self>, input: Int64)
        -> Int64 effects { flow } { return FlowEngine.start(Definition.run, input); }
}

Execution contract

flow

Selector
benchmark_flow_schema_version_record.Definition.start
Executors
flow-reducer, flow-state-machine
Platforms
portable
Performance lane
not eligible

Normative authority

1 bound clauses

Official task history

Signed conformance observations

No official conformance run currently contains this task revision in its signed catalog.

Provenance

Where this task came from

[
  {
    "kind": "original",
    "license": "Apache-2.0",
    "source": "ZergLang Core-0/Core-1 normative specification"
  }
]