{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OCTX Entity 0.1",
  "type": "object",
  "required": ["id", "name", "type"],
  "properties": {
    "id": {
      "$ref": "#/$defs/uuidv7"
    },
    "name": {
      "type": "string",
      "minLength": 1
    },
    "type": {
      "type": "string",
      "minLength": 1
    },
    "description": {
      "type": "string"
    },
    "normalized_name": false,
    "entity_type_id": false,
    "index_id": false,
    "index_status": false,
    "embedding": false,
    "vector": false
  },
  "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}$"
    }
  }
}
