Amazon Ground Station · JSON Structure

Ground Station Get Minute Usage Request Structure

Type: object Properties: 2 Required: 2
Data ProcessingIoTSatellite CommunicationsSpace Technology

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

Properties

month year

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-get-minute-usage-request-structure.json",
  "name": "GetMinuteUsageRequest",
  "description": "<p/>",
  "type": "object",
  "properties": {
    "month": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Month"
        },
        {
          "description": "The month being requested, with a value of 1-12."
        }
      ]
    },
    "year": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Year"
        },
        {
          "description": "The year being requested, in the format of YYYY."
        }
      ]
    }
  },
  "required": [
    "month",
    "year"
  ]
}