{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codestar/refs/heads/main/json-structure/codestar-update-project-request-structure.json", "name": "UpdateProjectRequest", "description": "UpdateProjectRequest schema from AWS CodeStar API", "type": "object", "properties": { "id": { "allOf": [ { "$ref": "#/components/schemas/ProjectId" }, { "description": "The ID of the project you want to update." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/ProjectName" }, { "description": "The name of the project you want to update." } ] }, "description": { "allOf": [ { "$ref": "#/components/schemas/ProjectDescription" }, { "description": "The description of the project, if any." } ] } }, "required": [ "id" ] }