Radar Schema
Radar Schema Constraints
Section titled “Radar Schema Constraints”Unlike standard arrays mapping simple events, the radar output natively utilizes GeoJSON compliance exclusively.
Feature Enforcements
Section titled “Feature Enforcements”{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "AlaskaIntel Radar Feature Collection", "type": "object", "properties": { "type": { "type": "string", "enum": ["FeatureCollection"] }, "features": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string", "enum": ["Feature"] }, "geometry": { "type": "object" }, "properties": { "type": "object", "required": ["type"] } }, "required": ["type", "geometry", "properties"] } } }, "required": ["type", "features"]}