ListTagsForProjectRequest 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-list-tags-for-project-request-schema.json", "title": "ListTagsForProjectRequest", "description": "ListTagsForProjectRequest schema from AWS CodeStar API", "type": "object", "properties": { "id": { "allOf": [ { "$ref": "#/components/schemas/ProjectId" }, { "description": "The ID of the project to get tags for." } ] }, "nextToken": { "allOf": [ { "$ref": "#/components/schemas/PaginationToken" }, { "description": "Reserved for future use." } ] }, "maxResults": { "allOf": [ { "$ref": "#/components/schemas/MaxResults" }, { "description": "Reserved for future use." } ] } }, "required": [ "id" ] }