{ "$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-input-structure.json", "name": "ListProjectsInput", "description": "ListProjectsInput schema from Amazon CodeBuild", "type": "object", "properties": { "sortBy": { "allOf": [ { "$ref": "#/components/schemas/ProjectSortByType" }, { "description": "

The criterion to be used to list build project names. Valid values include:

Use sortOrder to specify in what order to list the build project names based on the preceding criteria.

" } ] }, "sortOrder": { "allOf": [ { "$ref": "#/components/schemas/SortOrderType" }, { "description": "

The order in which to list build projects. Valid values include:

Use sortBy to specify the criterion to be used to list build project names.

" } ] }, "nextToken": { "allOf": [ { "$ref": "#/components/schemas/NonEmptyString" }, { "description": "During a previous call, 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. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned." } ] } } }