TagProjectRequest 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-tag-project-request-schema.json", "title": "TagProjectRequest", "description": "TagProjectRequest schema from AWS CodeStar API", "type": "object", "properties": { "id": { "allOf": [ { "$ref": "#/components/schemas/ProjectId" }, { "description": "The ID of the project you want to add a tag to." } ] }, "tags": { "allOf": [ { "$ref": "#/components/schemas/Tags" }, { "description": "The tags you want to add to the project." } ] } }, "required": [ "id", "tags" ] }