{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreativeWork", "title": "CreativeWork", "properties": { "datePublished": { "type": "string", "description": "The date on which the CreativeWork was published.", "readOnly": true }, "provider": { "type": "array", "description": "The source of the creative work.", "readOnly": true, "items": { "$ref": "#/components/schemas/Thing" } }, "thumbnailUrl": { "type": "string", "description": "The URL to a thumbnail of the item.", "readOnly": true }, "video": { "$ref": "#/components/schemas/VideoObject" } }, "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.", "allOf": [ { "$ref": "#/components/schemas/Thing" } ] }