{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://superflytv.github.io/GraphicsDataDefinition/gdd-meta-schema/v1/schema.json",
  "allOf": [
    {
      "$ref": "https://json-schema.org/draft/2020-12/schema"
    }
  ],
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "object"
      ]
    },
    "$schema": {
      "type": "string",
      "const": "https://superflytv.github.io/GraphicsDataDefinition/gdd-meta-schema/v1/schema.json",
      "description": "Reference to the JSON-schema"
    },
    "title": {
      "type": "string",
      "description": "A short name of the GFX-template. Used for informational purposes only."
    },
    "description": {
      "type": "string",
      "description": "A description GFX-template. Used for informational purposes only."
    },
    "authorName": {
      "type": "string",
      "description": "Name of the author"
    },
    "authorEmail": {
      "type": "string",
      "description": "Email to the author",
      "format": "email"
    },
    "properties": {
      "type": "object",
      "patternProperties": {
        ".": {
          "type": "object",
          "$ref": "https://superflytv.github.io/GraphicsDataDefinition/gdd-meta-schema/v1/lib/object.json"
        }
      }
    },
    "gddPlayoutOptions": {
      "type": "object",
      "$ref": "https://superflytv.github.io/GraphicsDataDefinition/gdd-meta-schema/v1/lib/playout-options.json"
    }
  },
  "required": ["properties"]
}
