{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LicenseRequest", "title": "LicenseRequest", "type": "object", "description": "Request body for licensing a stock asset", "required": [ "content_id", "license" ], "properties": { "content_id": { "type": "integer", "description": "Adobe Stock content ID of the asset to license", "example": 123456789 }, "license": { "type": "string", "description": "License type to apply", "enum": [ "Standard", "Extended", "Video_HD", "Video_4K" ], "example": "Standard" }, "locale": { "type": "string", "description": "BCP 47 locale for localized response data", "example": "en_US" }, "purchase_params": { "type": "object", "description": "Optional purchase parameters and reference metadata", "properties": { "references": { "type": "array", "description": "List of reference key-value pairs for tracking the license", "items": { "$ref": "#/components/schemas/LicenseReference" } } } } } }