Amazon Ground Station · JSON Structure

Ground Station Reserve Contact Request Structure

Type: object Properties: 6 Required: 5
Data ProcessingIoTSatellite CommunicationsSpace Technology

ReserveContactRequest is a JSON Structure definition published by Amazon Ground Station, describing 6 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

endTime groundStation missionProfileArn satelliteArn startTime tags

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ground-station/refs/heads/main/json-structure/ground-station-reserve-contact-request-structure.json",
  "name": "ReserveContactRequest",
  "description": "<p/>",
  "type": "object",
  "properties": {
    "endTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "End time of a contact in UTC."
        }
      ]
    },
    "groundStation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GroundStationName"
        },
        {
          "description": "Name of a ground station."
        }
      ]
    },
    "missionProfileArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MissionProfileArn"
        },
        {
          "description": "ARN of a mission profile."
        }
      ]
    },
    "satelliteArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/satelliteArn"
        },
        {
          "description": "ARN of a satellite"
        }
      ]
    },
    "startTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "Start time of a contact in UTC."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagsMap"
        },
        {
          "description": "Tags assigned to a contact."
        }
      ]
    }
  },
  "required": [
    "endTime",
    "groundStation",
    "missionProfileArn",
    "satelliteArn",
    "startTime"
  ]
}