{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://schemas.driftframestudios.org/ca/schema/source-band.schema.json",
  "title": "SourceBand",
  "description": "Origin and provenance class.",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "id",
    "type",
    "label"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "label": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "sourceBand": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "sourceOfTruthBand": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "publicationStatus": {
      "type": "string",
      "enum": [
        "private_source",
        "public_safe_summary",
        "experimental_schema",
        "candidate",
        "promoted",
        "retired"
      ]
    },
    "accessConfidence": {
      "type": "string",
      "enum": [
        "direct_fetch_confirmed",
        "page_lookup_confirmed",
        "human_reported",
        "source_note_only",
        "not_currently_reachable"
      ]
    },
    "aiActivationAlias": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "notes": {
      "type": "string"
    }
  }
}
