{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://metkagram.github.io/api/v1/schemas/document.json",
  "title": "Metkagram Annotated Document",
  "type": "object",
  "required": [
    "id",
    "language",
    "title",
    "annotations"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "language": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "annotations": {
      "type": "array"
    }
  }
}
