{
  "$comment": "AI Verification Landscape record schemas (source frontmatter), schema_version 1.0.0",
  "types": {
    "mechanism": {
      "id_prefix": "M"
    },
    "implementation": {
      "id_prefix": "I"
    },
    "claim": {
      "id_prefix": "C"
    },
    "concept": {
      "id_prefix": "K"
    },
    "organization": {
      "id_prefix": "O"
    },
    "person": {
      "id_prefix": "P"
    },
    "source": {
      "id_prefix": "S"
    }
  },
  "schemas": {
    "mechanism": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "slug": {
          "type": "string",
          "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
        },
        "title": {
          "type": "string",
          "minLength": 1
        },
        "aliases": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "status": {
          "default": "draft",
          "type": "string",
          "enum": [
            "draft",
            "published"
          ]
        },
        "last_reviewed": {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
        },
        "review_interval_days": {
          "default": 90,
          "type": "integer",
          "exclusiveMinimum": 0,
          "maximum": 9007199254740991
        },
        "steward": {
          "default": null,
          "type": [
            "string",
            "null"
          ]
        },
        "provenance": {
          "default": {
            "drafted_by": "human",
            "reviewed_by": []
          },
          "type": "object",
          "properties": {
            "drafted_by": {
              "type": "string",
              "enum": [
                "ai",
                "human"
              ]
            },
            "reviewed_by": {
              "default": [],
              "type": "array",
              "items": {
                "type": "string",
                "minLength": 1
              }
            }
          },
          "required": [
            "drafted_by"
          ],
          "additionalProperties": false
        },
        "risk_flags": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "R-evasion-detail",
              "R-vendor-reputation",
              "R-private-provenance",
              "R-personal-data",
              "R-geopolitical",
              "R-export-sensitive",
              "R-legal"
            ]
          }
        },
        "flags": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "provider-reported",
              "disputed",
              "under-review"
            ]
          }
        },
        "one_liner": {
          "type": "string",
          "minLength": 1
        },
        "summary": {
          "type": "string",
          "minLength": 1
        },
        "technical": {
          "type": "string"
        },
        "category": {
          "type": "string",
          "enum": [
            "on-chip",
            "off-chip-devices",
            "cryptographic-computational",
            "isolation-architecture",
            "accounting-provenance",
            "remote-sensing"
          ]
        },
        "secondary_categories": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "on-chip",
              "off-chip-devices",
              "cryptographic-computational",
              "isolation-architecture",
              "accounting-provenance",
              "remote-sensing"
            ]
          }
        },
        "verifies": {
          "minItems": 1,
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "claim": {
                "type": "string",
                "pattern": "^(C)-\\d{4}$"
              },
              "role": {
                "type": "string",
                "enum": [
                  "primary",
                  "supporting"
                ]
              },
              "note": {
                "type": "string"
              }
            },
            "required": [
              "claim",
              "role"
            ],
            "additionalProperties": false
          }
        },
        "threat_model": {
          "type": "string",
          "enum": [
            "cooperative",
            "semi-trusted",
            "adversarial"
          ]
        },
        "adversarial_evaluation": {
          "type": "string",
          "enum": [
            "none",
            "analysis",
            "red-teamed",
            "independent-red-team"
          ]
        },
        "hardware_requirement": {
          "type": "string",
          "enum": [
            "none",
            "existing-features",
            "retrofit-device",
            "new-chip"
          ]
        },
        "prover_cooperation": {
          "type": "string",
          "enum": [
            "required",
            "partial",
            "not-required"
          ]
        },
        "confidentiality": {
          "type": "string",
          "enum": [
            "preserving",
            "partial",
            "revealing"
          ]
        },
        "depends_on": {
          "default": [],
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "target": {
                "type": "string",
                "pattern": "^(M|I)-\\d{4}$"
              },
              "note": {
                "type": "string"
              }
            },
            "required": [
              "target"
            ],
            "additionalProperties": false
          }
        },
        "readiness": {
          "type": "object",
          "properties": {
            "level": {
              "type": "string",
              "enum": [
                "R0",
                "R1",
                "R2",
                "R3"
              ]
            },
            "rubric_version": {
              "type": "string"
            },
            "rationale": {
              "type": "string",
              "minLength": 1
            },
            "evidence": {
              "minItems": 1,
              "type": "array",
              "items": {
                "type": "string",
                "pattern": "^(S)-\\d{4}$"
              }
            },
            "next_level_gaps": {
              "default": [],
              "type": "array",
              "items": {
                "type": "string",
                "minLength": 1
              }
            },
            "confidence": {
              "type": "string",
              "enum": [
                "low",
                "medium",
                "high"
              ]
            },
            "assessed_by": {
              "minItems": 1,
              "type": "array",
              "items": {
                "type": "string",
                "minLength": 1
              }
            },
            "assessed_on": {
              "type": "string",
              "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
            },
            "status": {
              "default": "current",
              "type": "string",
              "enum": [
                "current",
                "under-review",
                "disputed"
              ]
            },
            "dispute": {
              "default": null,
              "anyOf": [
                {
                  "type": "object",
                  "properties": {
                    "by": {
                      "type": "string",
                      "minLength": 1
                    },
                    "summary": {
                      "type": "string",
                      "minLength": 1
                    },
                    "source": {
                      "type": "string",
                      "pattern": "^(S)-\\d{4}$"
                    },
                    "opened_on": {
                      "type": "string",
                      "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
                    },
                    "editor_response": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "by",
                    "summary",
                    "opened_on"
                  ],
                  "additionalProperties": false
                },
                {
                  "type": "null"
                }
              ]
            }
          },
          "required": [
            "level",
            "rubric_version",
            "rationale",
            "evidence",
            "confidence",
            "assessed_by",
            "assessed_on"
          ],
          "additionalProperties": false
        },
        "flaws": {
          "default": [],
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string",
                "minLength": 1
              },
              "kind": {
                "type": "string",
                "enum": [
                  "demonstrated-attack",
                  "theoretical-argument",
                  "open-question"
                ]
              },
              "severity": {
                "type": "string",
                "enum": [
                  "critical",
                  "significant",
                  "minor"
                ]
              },
              "status": {
                "type": "string",
                "enum": [
                  "open",
                  "mitigated",
                  "disputed"
                ]
              },
              "description": {
                "type": "string",
                "minLength": 1
              },
              "sources": {
                "minItems": 1,
                "type": "array",
                "items": {
                  "type": "string",
                  "pattern": "^(S)-\\d{4}$"
                }
              },
              "response": {
                "default": null,
                "type": [
                  "string",
                  "null"
                ]
              }
            },
            "required": [
              "title",
              "kind",
              "severity",
              "status",
              "description",
              "sources"
            ],
            "additionalProperties": false
          }
        },
        "blockers": {
          "default": [],
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "text": {
                "type": "string",
                "minLength": 1
              },
              "theme": {
                "type": "string",
                "enum": [
                  "coverage-hidden-compute",
                  "hardware-trust",
                  "evidence-binding",
                  "protocol-soundness",
                  "adversarial-validation",
                  "capacity-bounds",
                  "performance-compatibility",
                  "privacy-leakage",
                  "access-governance"
                ]
              },
              "blocked_by": {
                "default": null,
                "anyOf": [
                  {
                    "type": "string",
                    "pattern": "^(M|I)-\\d{4}$"
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "sources": {
                "default": [],
                "type": "array",
                "items": {
                  "type": "string",
                  "pattern": "^(S)-\\d{4}$"
                }
              }
            },
            "required": [
              "text",
              "theme"
            ],
            "additionalProperties": false
          }
        },
        "challenge_themes": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "coverage-hidden-compute",
              "hardware-trust",
              "evidence-binding",
              "protocol-soundness",
              "adversarial-validation",
              "capacity-bounds",
              "performance-compatibility",
              "privacy-leakage",
              "access-governance"
            ]
          }
        },
        "organizations": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^(O)-\\d{4}$"
          }
        },
        "people": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^(P)-\\d{4}$"
          }
        },
        "sources": {
          "minItems": 1,
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "source": {
                "type": "string",
                "pattern": "^(S)-\\d{4}$"
              },
              "supports": {
                "type": "string",
                "minLength": 1
              },
              "locator": {
                "type": "string"
              }
            },
            "required": [
              "source",
              "supports"
            ],
            "additionalProperties": false
          }
        },
        "concepts": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^(K)-\\d{4}$"
          }
        },
        "complements": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^(M|I)-\\d{4}$"
          }
        },
        "alternatives": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^(M|I)-\\d{4}$"
          }
        }
      },
      "required": [
        "id",
        "slug",
        "title",
        "last_reviewed",
        "one_liner",
        "summary",
        "category",
        "verifies",
        "threat_model",
        "adversarial_evaluation",
        "hardware_requirement",
        "prover_cooperation",
        "confidentiality",
        "readiness",
        "sources"
      ],
      "additionalProperties": false
    },
    "implementation": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "slug": {
          "type": "string",
          "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
        },
        "title": {
          "type": "string",
          "minLength": 1
        },
        "aliases": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "status": {
          "default": "draft",
          "type": "string",
          "enum": [
            "draft",
            "published"
          ]
        },
        "last_reviewed": {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
        },
        "review_interval_days": {
          "default": 90,
          "type": "integer",
          "exclusiveMinimum": 0,
          "maximum": 9007199254740991
        },
        "steward": {
          "default": null,
          "type": [
            "string",
            "null"
          ]
        },
        "provenance": {
          "default": {
            "drafted_by": "human",
            "reviewed_by": []
          },
          "type": "object",
          "properties": {
            "drafted_by": {
              "type": "string",
              "enum": [
                "ai",
                "human"
              ]
            },
            "reviewed_by": {
              "default": [],
              "type": "array",
              "items": {
                "type": "string",
                "minLength": 1
              }
            }
          },
          "required": [
            "drafted_by"
          ],
          "additionalProperties": false
        },
        "risk_flags": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "R-evasion-detail",
              "R-vendor-reputation",
              "R-private-provenance",
              "R-personal-data",
              "R-geopolitical",
              "R-export-sensitive",
              "R-legal"
            ]
          }
        },
        "flags": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "provider-reported",
              "disputed",
              "under-review"
            ]
          }
        },
        "one_liner": {
          "type": "string",
          "minLength": 1
        },
        "summary": {
          "type": "string",
          "minLength": 1
        },
        "technical": {
          "type": "string"
        },
        "category": {
          "type": "string",
          "enum": [
            "on-chip",
            "off-chip-devices",
            "cryptographic-computational",
            "isolation-architecture",
            "accounting-provenance",
            "remote-sensing"
          ]
        },
        "secondary_categories": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "on-chip",
              "off-chip-devices",
              "cryptographic-computational",
              "isolation-architecture",
              "accounting-provenance",
              "remote-sensing"
            ]
          }
        },
        "verifies": {
          "minItems": 1,
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "claim": {
                "type": "string",
                "pattern": "^(C)-\\d{4}$"
              },
              "role": {
                "type": "string",
                "enum": [
                  "primary",
                  "supporting"
                ]
              },
              "note": {
                "type": "string"
              }
            },
            "required": [
              "claim",
              "role"
            ],
            "additionalProperties": false
          }
        },
        "threat_model": {
          "type": "string",
          "enum": [
            "cooperative",
            "semi-trusted",
            "adversarial"
          ]
        },
        "adversarial_evaluation": {
          "type": "string",
          "enum": [
            "none",
            "analysis",
            "red-teamed",
            "independent-red-team"
          ]
        },
        "hardware_requirement": {
          "type": "string",
          "enum": [
            "none",
            "existing-features",
            "retrofit-device",
            "new-chip"
          ]
        },
        "prover_cooperation": {
          "type": "string",
          "enum": [
            "required",
            "partial",
            "not-required"
          ]
        },
        "confidentiality": {
          "type": "string",
          "enum": [
            "preserving",
            "partial",
            "revealing"
          ]
        },
        "depends_on": {
          "default": [],
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "target": {
                "type": "string",
                "pattern": "^(M|I)-\\d{4}$"
              },
              "note": {
                "type": "string"
              }
            },
            "required": [
              "target"
            ],
            "additionalProperties": false
          }
        },
        "readiness": {
          "type": "object",
          "properties": {
            "level": {
              "type": "string",
              "enum": [
                "R0",
                "R1",
                "R2",
                "R3"
              ]
            },
            "rubric_version": {
              "type": "string"
            },
            "rationale": {
              "type": "string",
              "minLength": 1
            },
            "evidence": {
              "minItems": 1,
              "type": "array",
              "items": {
                "type": "string",
                "pattern": "^(S)-\\d{4}$"
              }
            },
            "next_level_gaps": {
              "default": [],
              "type": "array",
              "items": {
                "type": "string",
                "minLength": 1
              }
            },
            "confidence": {
              "type": "string",
              "enum": [
                "low",
                "medium",
                "high"
              ]
            },
            "assessed_by": {
              "minItems": 1,
              "type": "array",
              "items": {
                "type": "string",
                "minLength": 1
              }
            },
            "assessed_on": {
              "type": "string",
              "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
            },
            "status": {
              "default": "current",
              "type": "string",
              "enum": [
                "current",
                "under-review",
                "disputed"
              ]
            },
            "dispute": {
              "default": null,
              "anyOf": [
                {
                  "type": "object",
                  "properties": {
                    "by": {
                      "type": "string",
                      "minLength": 1
                    },
                    "summary": {
                      "type": "string",
                      "minLength": 1
                    },
                    "source": {
                      "type": "string",
                      "pattern": "^(S)-\\d{4}$"
                    },
                    "opened_on": {
                      "type": "string",
                      "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
                    },
                    "editor_response": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "by",
                    "summary",
                    "opened_on"
                  ],
                  "additionalProperties": false
                },
                {
                  "type": "null"
                }
              ]
            }
          },
          "required": [
            "level",
            "rubric_version",
            "rationale",
            "evidence",
            "confidence",
            "assessed_by",
            "assessed_on"
          ],
          "additionalProperties": false
        },
        "flaws": {
          "default": [],
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string",
                "minLength": 1
              },
              "kind": {
                "type": "string",
                "enum": [
                  "demonstrated-attack",
                  "theoretical-argument",
                  "open-question"
                ]
              },
              "severity": {
                "type": "string",
                "enum": [
                  "critical",
                  "significant",
                  "minor"
                ]
              },
              "status": {
                "type": "string",
                "enum": [
                  "open",
                  "mitigated",
                  "disputed"
                ]
              },
              "description": {
                "type": "string",
                "minLength": 1
              },
              "sources": {
                "minItems": 1,
                "type": "array",
                "items": {
                  "type": "string",
                  "pattern": "^(S)-\\d{4}$"
                }
              },
              "response": {
                "default": null,
                "type": [
                  "string",
                  "null"
                ]
              }
            },
            "required": [
              "title",
              "kind",
              "severity",
              "status",
              "description",
              "sources"
            ],
            "additionalProperties": false
          }
        },
        "blockers": {
          "default": [],
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "text": {
                "type": "string",
                "minLength": 1
              },
              "theme": {
                "type": "string",
                "enum": [
                  "coverage-hidden-compute",
                  "hardware-trust",
                  "evidence-binding",
                  "protocol-soundness",
                  "adversarial-validation",
                  "capacity-bounds",
                  "performance-compatibility",
                  "privacy-leakage",
                  "access-governance"
                ]
              },
              "blocked_by": {
                "default": null,
                "anyOf": [
                  {
                    "type": "string",
                    "pattern": "^(M|I)-\\d{4}$"
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "sources": {
                "default": [],
                "type": "array",
                "items": {
                  "type": "string",
                  "pattern": "^(S)-\\d{4}$"
                }
              }
            },
            "required": [
              "text",
              "theme"
            ],
            "additionalProperties": false
          }
        },
        "challenge_themes": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "coverage-hidden-compute",
              "hardware-trust",
              "evidence-binding",
              "protocol-soundness",
              "adversarial-validation",
              "capacity-bounds",
              "performance-compatibility",
              "privacy-leakage",
              "access-governance"
            ]
          }
        },
        "organizations": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^(O)-\\d{4}$"
          }
        },
        "people": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^(P)-\\d{4}$"
          }
        },
        "sources": {
          "minItems": 1,
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "source": {
                "type": "string",
                "pattern": "^(S)-\\d{4}$"
              },
              "supports": {
                "type": "string",
                "minLength": 1
              },
              "locator": {
                "type": "string"
              }
            },
            "required": [
              "source",
              "supports"
            ],
            "additionalProperties": false
          }
        },
        "concepts": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^(K)-\\d{4}$"
          }
        },
        "kind": {
          "type": "string",
          "enum": [
            "research-prototype",
            "product",
            "open-source-project",
            "proposed-architecture",
            "standard"
          ]
        },
        "developer": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^(O)-\\d{4}$"
          }
        },
        "realises": {
          "minItems": 1,
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^(M)-\\d{4}$"
          }
        },
        "homepage": {
          "type": "string",
          "pattern": "^https:\\/\\/[^\\s]+$"
        },
        "repo": {
          "type": "string",
          "pattern": "^https:\\/\\/[^\\s]+$"
        }
      },
      "required": [
        "id",
        "slug",
        "title",
        "last_reviewed",
        "one_liner",
        "summary",
        "category",
        "verifies",
        "threat_model",
        "adversarial_evaluation",
        "hardware_requirement",
        "prover_cooperation",
        "confidentiality",
        "readiness",
        "sources",
        "kind",
        "realises"
      ],
      "additionalProperties": false
    },
    "claim": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "slug": {
          "type": "string",
          "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
        },
        "title": {
          "type": "string",
          "minLength": 1
        },
        "aliases": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "status": {
          "default": "draft",
          "type": "string",
          "enum": [
            "draft",
            "published"
          ]
        },
        "last_reviewed": {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
        },
        "review_interval_days": {
          "default": 90,
          "type": "integer",
          "exclusiveMinimum": 0,
          "maximum": 9007199254740991
        },
        "steward": {
          "default": null,
          "type": [
            "string",
            "null"
          ]
        },
        "provenance": {
          "default": {
            "drafted_by": "human",
            "reviewed_by": []
          },
          "type": "object",
          "properties": {
            "drafted_by": {
              "type": "string",
              "enum": [
                "ai",
                "human"
              ]
            },
            "reviewed_by": {
              "default": [],
              "type": "array",
              "items": {
                "type": "string",
                "minLength": 1
              }
            }
          },
          "required": [
            "drafted_by"
          ],
          "additionalProperties": false
        },
        "risk_flags": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "R-evasion-detail",
              "R-vendor-reputation",
              "R-private-provenance",
              "R-personal-data",
              "R-geopolitical",
              "R-export-sensitive",
              "R-legal"
            ]
          }
        },
        "flags": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "provider-reported",
              "disputed",
              "under-review"
            ]
          }
        },
        "one_liner": {
          "type": "string",
          "minLength": 1
        },
        "summary": {
          "type": "string",
          "minLength": 1
        },
        "claim_class": {
          "type": "string",
          "enum": [
            "positive",
            "negative",
            "mixed"
          ]
        },
        "editors_synthesis": {
          "type": "string"
        },
        "sources": {
          "default": [],
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "source": {
                "type": "string",
                "pattern": "^(S)-\\d{4}$"
              },
              "supports": {
                "type": "string",
                "minLength": 1
              },
              "locator": {
                "type": "string"
              }
            },
            "required": [
              "source",
              "supports"
            ],
            "additionalProperties": false
          }
        },
        "concepts": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^(K)-\\d{4}$"
          }
        },
        "order": {
          "type": "integer",
          "minimum": -9007199254740991,
          "maximum": 9007199254740991
        }
      },
      "required": [
        "id",
        "slug",
        "title",
        "last_reviewed",
        "one_liner",
        "summary",
        "claim_class"
      ],
      "additionalProperties": false
    },
    "concept": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "slug": {
          "type": "string",
          "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
        },
        "title": {
          "type": "string",
          "minLength": 1
        },
        "aliases": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "status": {
          "default": "draft",
          "type": "string",
          "enum": [
            "draft",
            "published"
          ]
        },
        "last_reviewed": {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
        },
        "review_interval_days": {
          "default": 90,
          "type": "integer",
          "exclusiveMinimum": 0,
          "maximum": 9007199254740991
        },
        "steward": {
          "default": null,
          "type": [
            "string",
            "null"
          ]
        },
        "provenance": {
          "default": {
            "drafted_by": "human",
            "reviewed_by": []
          },
          "type": "object",
          "properties": {
            "drafted_by": {
              "type": "string",
              "enum": [
                "ai",
                "human"
              ]
            },
            "reviewed_by": {
              "default": [],
              "type": "array",
              "items": {
                "type": "string",
                "minLength": 1
              }
            }
          },
          "required": [
            "drafted_by"
          ],
          "additionalProperties": false
        },
        "risk_flags": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "R-evasion-detail",
              "R-vendor-reputation",
              "R-private-provenance",
              "R-personal-data",
              "R-geopolitical",
              "R-export-sensitive",
              "R-legal"
            ]
          }
        },
        "flags": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "provider-reported",
              "disputed",
              "under-review"
            ]
          }
        },
        "one_liner": {
          "type": "string",
          "minLength": 1
        },
        "sources": {
          "default": [],
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "source": {
                "type": "string",
                "pattern": "^(S)-\\d{4}$"
              },
              "supports": {
                "type": "string",
                "minLength": 1
              },
              "locator": {
                "type": "string"
              }
            },
            "required": [
              "source",
              "supports"
            ],
            "additionalProperties": false
          }
        },
        "related": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^[MICKOPS]-\\d{4}$"
          }
        }
      },
      "required": [
        "id",
        "slug",
        "title",
        "last_reviewed",
        "one_liner"
      ],
      "additionalProperties": false
    },
    "organization": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "slug": {
          "type": "string",
          "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
        },
        "title": {
          "type": "string",
          "minLength": 1
        },
        "aliases": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "status": {
          "default": "draft",
          "type": "string",
          "enum": [
            "draft",
            "published"
          ]
        },
        "last_reviewed": {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
        },
        "review_interval_days": {
          "default": 90,
          "type": "integer",
          "exclusiveMinimum": 0,
          "maximum": 9007199254740991
        },
        "steward": {
          "default": null,
          "type": [
            "string",
            "null"
          ]
        },
        "provenance": {
          "default": {
            "drafted_by": "human",
            "reviewed_by": []
          },
          "type": "object",
          "properties": {
            "drafted_by": {
              "type": "string",
              "enum": [
                "ai",
                "human"
              ]
            },
            "reviewed_by": {
              "default": [],
              "type": "array",
              "items": {
                "type": "string",
                "minLength": 1
              }
            }
          },
          "required": [
            "drafted_by"
          ],
          "additionalProperties": false
        },
        "risk_flags": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "R-evasion-detail",
              "R-vendor-reputation",
              "R-private-provenance",
              "R-personal-data",
              "R-geopolitical",
              "R-export-sensitive",
              "R-legal"
            ]
          }
        },
        "flags": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "provider-reported",
              "disputed",
              "under-review"
            ]
          }
        },
        "kind": {
          "type": "string",
          "enum": [
            "research-org",
            "company",
            "government",
            "academic-lab",
            "nonprofit",
            "consortium"
          ]
        },
        "homepage": {
          "type": "string",
          "pattern": "^https:\\/\\/[^\\s]+$"
        },
        "one_liner": {
          "type": "string",
          "minLength": 1
        },
        "sources": {
          "default": [],
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "source": {
                "type": "string",
                "pattern": "^(S)-\\d{4}$"
              },
              "supports": {
                "type": "string",
                "minLength": 1
              },
              "locator": {
                "type": "string"
              }
            },
            "required": [
              "source",
              "supports"
            ],
            "additionalProperties": false
          }
        }
      },
      "required": [
        "id",
        "slug",
        "title",
        "last_reviewed",
        "kind",
        "homepage",
        "one_liner"
      ],
      "additionalProperties": false
    },
    "person": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "slug": {
          "type": "string",
          "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
        },
        "title": {
          "type": "string",
          "minLength": 1
        },
        "aliases": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "status": {
          "default": "draft",
          "type": "string",
          "enum": [
            "draft",
            "published"
          ]
        },
        "last_reviewed": {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
        },
        "review_interval_days": {
          "default": 90,
          "type": "integer",
          "exclusiveMinimum": 0,
          "maximum": 9007199254740991
        },
        "steward": {
          "default": null,
          "type": [
            "string",
            "null"
          ]
        },
        "provenance": {
          "default": {
            "drafted_by": "human",
            "reviewed_by": []
          },
          "type": "object",
          "properties": {
            "drafted_by": {
              "type": "string",
              "enum": [
                "ai",
                "human"
              ]
            },
            "reviewed_by": {
              "default": [],
              "type": "array",
              "items": {
                "type": "string",
                "minLength": 1
              }
            }
          },
          "required": [
            "drafted_by"
          ],
          "additionalProperties": false
        },
        "risk_flags": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "R-evasion-detail",
              "R-vendor-reputation",
              "R-private-provenance",
              "R-personal-data",
              "R-geopolitical",
              "R-export-sensitive",
              "R-legal"
            ]
          }
        },
        "flags": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "provider-reported",
              "disputed",
              "under-review"
            ]
          }
        },
        "affiliations": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^(O)-\\d{4}$"
          }
        },
        "homepage": {
          "type": "string",
          "pattern": "^https:\\/\\/[^\\s]+$"
        },
        "role": {
          "type": "string"
        }
      },
      "required": [
        "id",
        "slug",
        "title",
        "last_reviewed",
        "homepage"
      ],
      "additionalProperties": false
    },
    "source": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "slug": {
          "type": "string",
          "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
        },
        "status": {
          "default": "published",
          "type": "string",
          "enum": [
            "draft",
            "published"
          ]
        },
        "risk_flags": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "R-evasion-detail",
              "R-vendor-reputation",
              "R-private-provenance",
              "R-personal-data",
              "R-geopolitical",
              "R-export-sensitive",
              "R-legal"
            ]
          }
        },
        "title": {
          "type": "string",
          "minLength": 1
        },
        "authors": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "year": {
          "type": "integer",
          "minimum": 1950,
          "maximum": 2100
        },
        "date": {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
        },
        "venue": {
          "type": "string"
        },
        "type": {
          "type": "string",
          "enum": [
            "peer-reviewed",
            "preprint",
            "tech-report",
            "standard",
            "gov-doc",
            "docs",
            "code",
            "blog",
            "talk",
            "forum",
            "dataset"
          ]
        },
        "tier": {
          "type": "string",
          "enum": [
            "A",
            "B",
            "C"
          ]
        },
        "url": {
          "type": "string",
          "pattern": "^https:\\/\\/[^\\s]+$"
        },
        "archive_url": {
          "default": null,
          "anyOf": [
            {
              "type": "string",
              "pattern": "^https:\\/\\/[^\\s]+$"
            },
            {
              "type": "null"
            }
          ]
        },
        "accessed": {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
        },
        "doi": {
          "default": null,
          "type": [
            "string",
            "null"
          ]
        },
        "arxiv": {
          "default": null,
          "type": [
            "string",
            "null"
          ]
        },
        "version_note": {
          "type": "string"
        },
        "license_note": {
          "type": "string"
        },
        "imported_from": {
          "type": "string"
        },
        "note": {
          "type": "string"
        },
        "organizations": {
          "default": [],
          "type": "array",
          "items": {
            "type": "string",
            "pattern": "^(O)-\\d{4}$"
          }
        }
      },
      "required": [
        "id",
        "slug",
        "title",
        "year",
        "type",
        "tier",
        "url",
        "accessed"
      ],
      "additionalProperties": false
    }
  }
}