StorageInput from Adobe Photoshop API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-photoshop/refs/heads/main/json-schema/adobe-photoshop-api-storage-input-schema.json", "title": "StorageInput", "description": "StorageInput from Adobe Photoshop API", "type": "object", "properties": { "href": { "type": "string", "description": "Pre-signed GET URL or Creative Cloud asset path.", "example": "https://image.adobe.io/example" }, "storage": { "type": "string", "enum": [ "external", "adobe", "azure", "dropbox" ], "description": "Storage type for the input file.", "example": "external" } }, "required": [ "href", "storage" ] }