TimeRange

A time range with a start and end time.

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
endTime object
startTime object
View JSON Schema on GitHub

JSON Schema

ground-station-time-range-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-schema/ground-station-time-range-schema.json",
  "title": "TimeRange",
  "description": "A time range with a start and end time.",
  "type": "object",
  "properties": {
    "endTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "Time in UTC at which the time range ends."
        }
      ]
    },
    "startTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "Time in UTC at which the time range starts."
        }
      ]
    }
  },
  "required": [
    "endTime",
    "startTime"
  ]
}