{
  "title": "Open Health Tourism — Source record data dictionary (Türkiye Ministry of Health facilities)",
  "note": "These are the fields the Ministry PDF registers actually expose, plus normalized derivatives. Fields the source does not publish (certificate number, issue/expiry date, suspension/revocation status, legal entity number, website, geocoordinates) are intentionally absent and never inferred.",
  "source_fields": [
    {
      "name": "sequence_number",
      "type": "integer",
      "nullable": false,
      "description": "Row sequence number within the source PDF register; used to validate continuity."
    },
    {
      "name": "province",
      "type": "string",
      "nullable": false,
      "description": "Turkish province (il) as printed in the source."
    },
    {
      "name": "official_name",
      "type": "string",
      "nullable": false,
      "description": "Healthcare facility name exactly as printed in the official register. Never altered for display."
    },
    {
      "name": "facility_type_raw",
      "type": "string",
      "nullable": true,
      "description": "Facility type label as printed in the source (e.g. Özel Ağız ve Diş Sağlığı Polikliniği)."
    },
    {
      "name": "address_raw",
      "type": "string",
      "nullable": true,
      "description": "Address as printed in the source."
    },
    {
      "name": "phone_raw",
      "type": "string",
      "nullable": true,
      "description": "Telephone value(s) as printed; may contain spaces, slashes or multiple numbers."
    }
  ],
  "normalized_fields": [
    {
      "name": "normalized_name",
      "type": "string",
      "description": "Case/diacritic-folded name used for matching only; not shown as the official name."
    },
    {
      "name": "normalized_phone",
      "type": "string",
      "nullable": true,
      "description": "E.164-style normalization of phone_raw (default country TR)."
    },
    {
      "name": "province_normalized",
      "type": "string",
      "description": "Canonical province key."
    },
    {
      "name": "source_category",
      "type": "string",
      "description": "Register the row came from (hospitals | medical_centers | physician_offices | other_facilities). Retained separately from facility_type_raw."
    }
  ],
  "provenance_fields": [
    {
      "name": "source_key",
      "type": "string",
      "description": "Stable key of the official source (e.g. tr_moh_hospitals)."
    },
    {
      "name": "source_snapshot_id",
      "type": "string",
      "description": "Immutable snapshot identifier."
    },
    {
      "name": "source_url",
      "type": "string",
      "format": "uri",
      "description": "Official source document URL."
    },
    {
      "name": "source_sequence_number",
      "type": "integer",
      "description": "Sequence number of the matched row in the source."
    },
    {
      "name": "source_page",
      "type": "integer",
      "nullable": true,
      "description": "PDF page of the matched row where available."
    },
    {
      "name": "source_date",
      "type": "string",
      "format": "date",
      "nullable": true,
      "description": "Source-published/page date where available."
    },
    {
      "name": "retrieved_at",
      "type": "string",
      "format": "date-time",
      "description": "Retrieval timestamp of the snapshot."
    },
    {
      "name": "source_sha256",
      "type": "string",
      "description": "SHA-256 of the retrieved source document."
    }
  ],
  "result_status_enum": [
    "LISTED_CURRENT",
    "POSSIBLE_MATCH",
    "AMBIGUOUS_MATCH",
    "NOT_FOUND_CURRENT",
    "HISTORICALLY_LISTED",
    "REMOVED_FROM_CURRENT_SOURCE",
    "SOURCE_UNAVAILABLE",
    "SOURCE_CHANGED_UNPARSED",
    "COVERAGE_UNAVAILABLE",
    "MANUAL_REVIEW"
  ],
  "match_confidence_enum": [
    "HIGH",
    "MEDIUM",
    "LOW",
    "NONE"
  ]
}