ProjectInformation

Information about a project in a space.

AmazonDeveloper ToolsCI/CDCollaborationDevOpsSource Control

Properties

Name Type Description
name object
projectId object
View JSON Schema on GitHub

JSON Schema

amazon-codecatalyst-project-information-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-project-information-schema.json",
  "title": "ProjectInformation",
  "description": "Information about a project in a space.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The name of the project in the space."
        }
      ]
    },
    "projectId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The system-generated unique ID of the project."
        }
      ]
    }
  }
}