{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/epa/refs/heads/main/json-schema/echo-case-crs0-map-data-schema.json", "title": "crs0_MapData", "description": "Data container providing locational information for each case.", "type": "object", "properties": { "ICON": { "description": "Name of each individual icon file within the URL base", "example": "CAA-IC-MN-N.png", "title": "Icon", "type": "string" }, "LAT": { "description": "The latitude of the facility in degrees, to four decimal places", "example": "38.798026", "title": "Latitude", "type": "string" }, "LON": { "description": "The longitude of the facility in degrees, to four decimal places", "example": "-77.062981", "title": "Longitude", "type": "string" }, "NAME": { "description": "For DFR, this is the Facility name. The name corresponds to the TYPE value", "example": "VIRGINIA CONCRETE ALEXANDRIA PLANT", "title": "Name", "type": "string" }, "PUV": { "description": "Pop up value. Combine with PopUpBaseURL to give the popup for the facility", "example": "110001891506", "title": "Popup Value", "type": "string" }, "TYPE": { "description": "For DFR, this is always facility", "example": "Facility", "title": "Type", "type": "string" }, "VALUE": { "type": "string", "example": "string" } }, "required": [ "LAT", "LON", "ICON", "TYPE", "NAME", "VALUE", "PUV" ] }