{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://iarpg.com/claim-review-register.schema.json",
  "title": "IARPG Claim Review Register",
  "type": "object",
  "required": [
    "register_id",
    "release",
    "version",
    "status",
    "reviewed_utc",
    "scope",
    "reports",
    "truth_boundary"
  ],
  "properties": {
    "register_id": {
      "type": "string",
      "const": "IARPG-CLAIM-REVIEW-OPS2-213"
    },
    "release": {
      "type": "string",
      "const": "IARPG-OPS-2"
    },
    "version": {
      "type": "string",
      "const": "2.0.14-wip"
    },
    "status": {
      "type": "string",
      "const": "work-in-progress"
    },
    "reviewed_utc": {
      "type": "string",
      "format": "date-time"
    },
    "scope": {
      "type": "object"
    },
    "disposition_counts": {
      "type": "object",
      "additionalProperties": {
        "type": "integer",
        "minimum": 0
      }
    },
    "reports": {
      "type": "array",
      "minItems": 30,
      "maxItems": 30,
      "items": {
        "type": "object",
        "required": [
          "report_slug",
          "title",
          "path",
          "review_status",
          "reviewed_utc",
          "claims",
          "source_body_preserved"
        ],
        "properties": {
          "report_slug": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "path": {
            "type": "string"
          },
          "source_name": {
            "type": "string"
          },
          "source_sha256": {
            "type": [
              "string",
              "null"
            ]
          },
          "review_status": {
            "type": "string",
            "const": "reviewed-with-limitations"
          },
          "reviewed_utc": {
            "type": "string",
            "format": "date-time"
          },
          "review_summary": {
            "type": "string"
          },
          "fairness_boundary": {
            "type": "string"
          },
          "reviewed_synthesis_anchor": {
            "type": "string",
            "const": "reviewed-synthesis"
          },
          "source_body_preserved": {
            "type": "boolean",
            "const": true
          },
          "claims": {
            "type": "array",
            "minItems": 4,
            "items": {
              "type": "object",
              "required": [
                "claim_id",
                "topic",
                "source_claim",
                "disposition",
                "corrected_statement",
                "evidence",
                "date_sensitivity",
                "publication_decision"
              ],
              "properties": {
                "claim_id": {
                  "type": "string"
                },
                "topic": {
                  "type": "string"
                },
                "source_claim": {
                  "type": "string"
                },
                "disposition": {
                  "type": "string"
                },
                "corrected_statement": {
                  "type": "string"
                },
                "evidence": {
                  "type": "array"
                },
                "date_sensitivity": {
                  "type": "string"
                },
                "publication_decision": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": false
      }
    },
    "authoritative_source_registry": {
      "type": "array"
    },
    "truth_boundary": {
      "type": "string"
    },
    "$schema": {
      "type": "string"
    }
  },
  "additionalProperties": false
}
