{ "$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" ] }