GetSpaceResponse

GetSpaceResponse schema from Amazon CodeCatalyst

AmazonDeveloper ToolsCI/CDCollaborationDevOpsSource Control

Properties

Name Type Description
name object
regionName object
displayName object
description object
View JSON Schema on GitHub

JSON Schema

amazon-codecatalyst-get-space-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codecatalyst/refs/heads/main/json-schema/amazon-codecatalyst-get-space-response-schema.json",
  "title": "GetSpaceResponse",
  "description": "GetSpaceResponse schema from Amazon CodeCatalyst",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the space."
        }
      ]
    },
    "regionName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RegionString"
        },
        {
          "description": "The Amazon Web Services Region where the space exists."
        }
      ]
    },
    "displayName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The friendly name of the space displayed to users."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The description of the space."
        }
      ]
    }
  },
  "required": [
    "name",
    "regionName"
  ]
}