{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://terraevidence.com/orange-county-planting-records.schema.json",
  "title": "TerraEvidence Orange County Planting Records",
  "type": "object",
  "additionalProperties": false,
  "required": ["dataset_id", "name", "url", "schema_url", "version", "status", "reviewed_date", "applicable_geography", "climate_anchors", "source", "interpretation_boundary", "records"],
  "properties": {
    "dataset_id": {"const": "te-planting-us-tx-orange"},
    "name": {"type": "string"},
    "url": {"type": "string", "format": "uri"},
    "schema_url": {"type": "string", "format": "uri"},
    "version": {"type": "string"},
    "status": {"const": "reviewed_for_source_transcription"},
    "reviewed_date": {"type": "string", "format": "date"},
    "applicable_geography": {
      "type": "object",
      "additionalProperties": false,
      "required": ["country_code", "subdivision_code", "county", "label", "applies_to", "does_not_apply_to"],
      "properties": {
        "country_code": {"const": "US"},
        "subdivision_code": {"const": "US-TX"},
        "county": {"const": "Orange County"},
        "label": {"type": "string"},
        "applies_to": {"type": "array", "minItems": 1, "items": {"type": "string"}},
        "does_not_apply_to": {"type": "array", "minItems": 1, "items": {"type": "string"}}
      }
    },
    "climate_anchors": {
      "type": "object",
      "additionalProperties": false,
      "required": ["approximate_last_killing_frost", "approximate_first_killing_frost", "source_wording_preserved"],
      "properties": {
        "approximate_last_killing_frost": {"type": "string", "pattern": "^[0-1][0-9]-[0-3][0-9]$"},
        "approximate_first_killing_frost": {"type": "string", "pattern": "^[0-1][0-9]-[0-3][0-9]$"},
        "source_wording_preserved": {"const": true}
      }
    },
    "source": {"$ref": "#/$defs/source"},
    "interpretation_boundary": {"type": "array", "minItems": 1, "items": {"type": "string"}},
    "records": {"type": "array", "minItems": 1, "items": {"$ref": "#/$defs/record"}}
  },
  "$defs": {
    "source": {
      "type": "object",
      "additionalProperties": false,
      "required": ["source_id", "publisher", "title", "url", "access_status", "reviewed_date"],
      "properties": {
        "source_id": {"const": "us-tx-orange-county-planting-guide"},
        "publisher": {"type": "string"},
        "title": {"type": "string"},
        "url": {"type": "string", "format": "uri"},
        "access_status": {"const": "full_text_reviewed"},
        "reviewed_date": {"type": "string", "format": "date"}
      }
    },
    "range": {
      "type": "object",
      "additionalProperties": false,
      "required": ["minimum", "maximum", "unit"],
      "properties": {
        "minimum": {"type": "integer", "minimum": 0},
        "maximum": {"type": "integer", "minimum": 0},
        "unit": {"enum": ["inches", "days"]}
      }
    },
    "window": {
      "type": "object",
      "additionalProperties": false,
      "required": ["season", "start_month_day", "end_month_day", "action"],
      "properties": {
        "season": {"enum": ["spring", "fall"]},
        "start_month_day": {"type": "string", "pattern": "^[0-1][0-9]-[0-3][0-9]$"},
        "end_month_day": {"type": "string", "pattern": "^[0-1][0-9]-[0-3][0-9]$"},
        "action": {"const": "outdoor_planting_method_unspecified"}
      }
    },
    "record": {
      "type": "object",
      "additionalProperties": false,
      "required": ["crop_id", "canonical_name", "source_crop_label", "windows", "unlisted_seasons", "row_spacing", "plant_spacing", "approximate_days_to_maturity", "limitations"],
      "properties": {
        "crop_id": {"type": "string", "pattern": "^[a-z0-9-]+$"},
        "canonical_name": {"type": "string"},
        "source_crop_label": {"type": "string"},
        "windows": {"type": "array", "items": {"$ref": "#/$defs/window"}},
        "unlisted_seasons": {"type": "array", "uniqueItems": true, "items": {"enum": ["spring", "fall"]}},
        "row_spacing": {"$ref": "#/$defs/range"},
        "plant_spacing": {"$ref": "#/$defs/range"},
        "approximate_days_to_maturity": {"$ref": "#/$defs/range"},
        "limitations": {"type": "array", "minItems": 1, "items": {"type": "string"}}
      }
    }
  }
}
