{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://axiomcx.dev/data/public-knowledge.schema.json",
  "schema_version": "1.0",
  "content_version": "1.0.0",
  "last_modified": "2026-09-23",
  "canonical_url": "https://axiomcx.dev/data/public-knowledge.schema.json",
  "human_readable_url": "https://axiomcx.dev/knowledge/report-contract.md",
  "scope": "public_schema",
  "title": "Axiom Cortex public knowledge resource",
  "description": "Shared metadata contract for public Axiom Cortex JSON resources. This schema does not describe or expose the proprietary evaluation method.",
  "type": "object",
  "required": [
    "schema_version",
    "content_version",
    "last_modified",
    "canonical_url",
    "human_readable_url",
    "scope"
  ],
  "properties": {
    "schema_version": { "type": "string", "pattern": "^[0-9]+\\.[0-9]+$" },
    "content_version": { "type": "string", "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" },
    "last_modified": { "type": "string", "format": "date" },
    "canonical_url": { "type": "string", "pattern": "^https://axiomcx\\.dev/data/[a-z0-9-]+\\.json$" },
    "human_readable_url": { "type": "string", "pattern": "^https://axiomcx\\.dev/" },
    "scope": { "type": "string", "minLength": 1 }
  },
  "additionalProperties": true
}
