{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://romania-uat.local/schemas/route-notes.schema.json",
  "title": "Route Notes",
  "type": "object",
  "required": ["generated", "routes"],
  "properties": {
    "generated": {
      "type": "boolean"
    },
    "generated_at": {
      "type": "string",
      "format": "date-time"
    },
    "routes": {
      "type": "array",
      "items": {
        "type": "object",
        "required": ["route_id", "notes"],
        "properties": {
          "route_id": {
            "type": "string"
          },
          "notes": {
            "type": "array",
            "items": {
              "type": "object",
              "required": ["id", "type", "title", "lat", "lon"],
              "properties": {
                "id": {
                  "type": "string"
                },
                "type": {
                  "type": "string"
                },
                "title": {
                  "type": "string"
                },
                "description": {
                  "type": "string"
                },
                "lat": {
                  "type": "number"
                },
                "lon": {
                  "type": "number"
                },
                "feature_refs": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                }
              },
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": true
      }
    }
  },
  "additionalProperties": true
}
