CreativeWork

The most generic kind of creative work, including books, movies, photographs, software programs, etc.

APIs.ioEngineeringPlatform

Properties

Name Type Description
datePublished string The date on which the CreativeWork was published.
provider array The source of the creative work.
thumbnailUrl string The URL to a thumbnail of the item.
video object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-creativework-schema.json Raw ↑
{
  "$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"
    }
  ]
}