StageKey

A reference to a unique stage identified in the format {restApiId}/{stage}.

APIs.ioEngineeringPlatform

Properties

Name Type Description
restApiId object
stageName object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-stagekey-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StageKey",
  "title": "StageKey",
  "type": "object",
  "properties": {
    "restApiId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The string identifier of the associated RestApi."
        }
      ]
    },
    "stageName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The stage name associated with the stage key."
        }
      ]
    }
  },
  "description": "A reference to a unique stage identified in the format <code>{restApiId}/{stage}</code>."
}