Amazon CodeStar · JSON Structure

Codestar Create Project Result Structure

CreateProjectResult schema from AWS CodeStar API

Type: object Properties: 4 Required: 2
Developer ToolsDevOpsProject ManagementTeam Collaboration

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

Properties

id arn clientRequestToken projectTemplateId

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-codestar/refs/heads/main/json-structure/codestar-create-project-result-structure.json",
  "name": "CreateProjectResult",
  "description": "CreateProjectResult schema from AWS CodeStar API",
  "type": "object",
  "properties": {
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectId"
        },
        {
          "description": "The ID of the project."
        }
      ]
    },
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the created project."
        }
      ]
    },
    "clientRequestToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ClientRequestToken"
        },
        {
          "description": "A user- or system-generated token that identifies the entity that requested project creation."
        }
      ]
    },
    "projectTemplateId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectTemplateId"
        },
        {
          "description": "Reserved for future use."
        }
      ]
    }
  },
  "required": [
    "id",
    "arn"
  ]
}