{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/JobInput", "title": "JobInput", "type": "object", "description": "Reference to an input file stored in cloud storage", "required": [ "href", "storage" ], "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" } } }