UpdateProjectRequest schema from AWS CodeStar API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codestar/refs/heads/main/json-schema/codestar-update-project-request-schema.json", "title": "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" ] }