For the complete documentation index, see llms.txt. This page is also available as Markdown.

Real-World Examples: A Geospatial Schemas for Eco-Focused Industries

Here's how a single Schema could be applied to different payloads.

Geospatial Data

{
  "schema": string,
  "sensorId": string,
  "location": {
    "name": string,
    "nationalPark": string,
    "country": string,
    "state": string,
    "latitude": number,
    "longitude": number,
    "elevationMeters": number"
  },
  "timestamp":  T00:00:00.000Z,
  "environmentData": {
    "temperatureCelsius": number,
    "humidityPercent": number,
    "soilMoistureLevel": number
  }
}
{
  "schema": "network.xyo.environment.forest-sensor",
  "sensorId": "sensor_alpha_74",
  "location": {
    "name": "Upper Yosemite Falls",
    "nationalPark": "Yosemite National Park",
    "country": "United States",
    "state": "California",
    "latitude": 37.7565,
    "longitude": -119.5967,
    "elevationMeters": 739
  },
  "timestamp": "2025-04-25T07:45:00Z",
  "environmentData": {
    "temperatureCelsius": 13.2,
    "humidityPercent": 72,
    "soilMoistureLevel": 58
  }
}

Last updated