{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://landscapearchive.org/schemas/orbits/tla-truth.required.schema.json",
  "title": "TLA-Truth required-keys smoke (Draft — not normative)",
  "description": "Required-key + enum smoke for la.archive.site-truth.v1 golden examples. Verification status enums only; no continuous ground truth. Not Archive Seal.",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "schema_id",
    "schema_version",
    "pack_id",
    "created_at",
    "verification",
    "tla185_refs"
  ],
  "properties": {
    "schema_id": { "const": "la.archive.site-truth.v1" },
    "schema_version": { "type": "integer", "const": 1 },
    "pack_id": { "type": "string", "minLength": 1 },
    "created_at": { "type": "string", "minLength": 1 },
    "verification": {
      "type": "object",
      "required": ["status", "method_ref"],
      "properties": {
        "status": {
          "type": "string",
          "enum": ["draft", "conformance_checked", "human_accepted", "seal_attested", "rejected"]
        },
        "method_ref": { "type": "string", "minLength": 1 }
      }
    },
    "tla185_refs": { "type": "object" }
  }
}
