GetMinuteUsageRequest

Data ProcessingIoTSatellite CommunicationsSpace Technology

Properties

Name Type Description
month object
year object
View JSON Schema on GitHub

JSON Schema

ground-station-get-minute-usage-request-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-get-minute-usage-request-schema.json",
  "title": "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"
  ]
}