{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OCTX Chunk 0.1",
  "type": "object",
  "required": ["id", "document_id", "ordinal", "text"],
  "properties": {
    "id": {
      "$ref": "#/$defs/uuidv7"
    },
    "document_id": {
      "$ref": "#/$defs/uuidv7"
    },
    "ordinal": {
      "type": "integer",
      "minimum": 0
    },
    "text": {
      "type": "string",
      "minLength": 1
    }
  },
  "additionalProperties": true,
  "$defs": {
    "uuidv7": {
      "type": "string",
      "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$"
    }
  }
}
