{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://pipelinexlab.com/contracts/document-submission-snapshot.v1.schema.json",
  "title": "Document submission snapshot V1",
  "description": "The scoped command receipt maps to an immutable job identity. Its nested detached job snapshot reports current state; receipt lookup does not execute the job.",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "schemaVersion",
    "commandId",
    "job"
  ],
  "properties": {
    "schemaVersion": {
      "const": 1
    },
    "commandId": {
      "type": "string",
      "minLength": 1
    },
    "job": {
      "$ref": "https://pipelinexlab.com/contracts/document-job-snapshot.v1.schema.json"
    }
  }
}
