{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://accurotech.local/schemas/catalogue/catalogue_shape_record.schema.json",
  "title": "Catalogue Shape Record",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "id",
    "slug",
    "name",
    "namespace",
    "kind",
    "canon_level",
    "stage_relevance",
    "entry",
    "base_fields",
    "relationship_slots",
    "payload_policy"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "slug": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "namespace": {
      "type": "string"
    },
    "kind": {
      "type": "string"
    },
    "canon_level": {
      "type": "string"
    },
    "stage_relevance": {
      "type": "string"
    },
    "entry": {
      "type": "string"
    },
    "payload_policy": {
      "type": "string"
    },
    "base_fields": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "relationship_slots": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}
