CreateProjectResponse

CreateProjectResponse schema from Amazon CodeCatalyst

AmazonDeveloper ToolsCI/CDCollaborationDevOpsSource Control

Properties

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

JSON Schema

amazon-codecatalyst-create-project-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-create-project-response-schema.json",
  "title": "CreateProjectResponse",
  "description": "CreateProjectResponse schema from Amazon CodeCatalyst",
  "type": "object",
  "properties": {
    "spaceName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the space."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NameString"
        },
        {
          "description": "The name of the project in the space."
        }
      ]
    },
    "displayName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The friendly name of the project."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The description of the project."
        }
      ]
    }
  },
  "required": [
    "name"
  ]
}