Adobe Creative Cloud · Schema
LicenseInfoResponse
LicenseInfoResponse from Adobe API
AI/MLCloudCreativeDesignDocumentsPhotographySaaSVideo
Properties
| Name | Type | Description |
|---|---|---|
| contents | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adobe-creative-cloud/refs/heads/main/json-schema/adobe-stock-api-license-info-response-schema.json",
"title": "LicenseInfoResponse",
"description": "LicenseInfoResponse from Adobe API",
"type": "object",
"properties": {
"contents": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"content_id": {
"type": "integer"
},
"purchase_details": {
"type": "object",
"properties": {
"state": {
"type": "string",
"enum": [
"not_purchased",
"purchased",
"cancelled"
]
},
"license": {
"type": "string"
},
"date": {
"type": "string",
"format": "date-time"
},
"url": {
"type": "string",
"format": "uri",
"description": "Download URL if already licensed."
}
}
},
"size": {
"type": "string"
}
}
}
}
}
}