Amazon CodeCatalyst · JSON Structure

Amazon Codecatalyst Project Information Structure

Information about a project in a space.

Type: object Properties: 2
AmazonDeveloper ToolsCI/CDCollaborationDevOpsSource Control

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

Properties

name projectId

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-project-information-structure.json",
  "name": "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."
        }
      ]
    }
  }
}