{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-creative-suite/refs/heads/main/json-schema/adobe-creative-suite-photoshop-job-input-schema.json", "title": "JobInput", "description": "Reference to an input file stored in cloud storage", "type": "object", "properties": { "href": { "type": "string", "description": "URL or path to the input file in cloud storage", "example": "https://my-storage.blob.core.windows.net/images/input.psd" }, "storage": { "type": "string", "description": "Cloud storage provider type", "enum": [ "adobe", "external", "azure", "dropbox" ], "example": "external" }, "type": { "type": "string", "description": "MIME type of the input file", "example": "image/vnd.adobe.photoshop" } }, "required": [ "href", "storage" ] }