Amazon CodeCatalyst · JSON Structure

Amazon Codecatalyst Space Summary Structure

Information about an space.

Type: object Properties: 4 Required: 2
AmazonDeveloper ToolsCI/CDCollaborationDevOpsSource Control

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

Properties

name regionName displayName description

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-codecatalyst/refs/heads/main/json-structure/amazon-codecatalyst-space-summary-structure.json",
  "name": "SpaceSummary",
  "description": "Information about an space.",
  "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"
  ]
}