{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mainframe-modernization/refs/heads/main/json-schema/amazon-mainframe-modernization-batch-job-identifier-schema.json", "title": "BatchJobIdentifier", "description": "Identifies a specific batch job.", "type": "object", "properties": { "fileBatchJobIdentifier": { "allOf": [ { "$ref": "#/components/schemas/FileBatchJobIdentifier" }, { "description": "Specifies a file associated with a specific batch job." } ] }, "scriptBatchJobIdentifier": { "allOf": [ { "$ref": "#/components/schemas/ScriptBatchJobIdentifier" }, { "description": "A batch job identifier in which the batch job to run is identified by the script name." } ] } } }