{ "$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-file-batch-job-identifier-schema.json", "title": "FileBatchJobIdentifier", "description": "A batch job identifier in which the batch job to run is identified by the file name and the relative path to the file name.", "type": "object", "properties": { "fileName": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The file name for the batch job identifier." } ] }, "folderPath": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The relative path to the file name for the batch job identifier." } ] } }, "required": [ "fileName" ] }