{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "contentitem.schema.json",
  "title": "Content Item",
  "description": "Core Componet Content Component in CTK",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Shold be always set to Passage"
    },
    "sourceId": {
      "type": "string"
    },
    "spinetags": {
      "type": "array",
      "minItems": 1,
      "uniqueItems": true,
      "items": {
        "type": "string"
      }
    },
    "securitylevel": {
      "type": "string",
      "enum": [ "standard", "high" ]
    },
    "approved": {
      "type": "boolean"
    }
  },
  "required": [ "type" ],
  "additionalProperties": true
}