{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-structure/amazon-codebuild-list-projects-output-structure.json", "name": "ListProjectsOutput", "description": "ListProjectsOutput schema from Amazon CodeBuild", "type": "object", "properties": { "nextToken": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken. To get the next batch of items in the list, call this operation again, adding the next token to the call." } ] }, "projects": { "allOf": [ { "$ref": "#/components/schemas/ProjectNames" }, { "description": "The list of build project names, with each build project name representing a single build project." } ] } } }