Amazon CodeStar · JSON Structure

Codestar List Projects Result Structure

ListProjectsResult schema from AWS CodeStar API

Type: object Properties: 2 Required: 1
Developer ToolsDevOpsProject ManagementTeam Collaboration

ListProjectsResult is a JSON Structure definition published by Amazon CodeStar, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

projects nextToken

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codestar/refs/heads/main/json-structure/codestar-list-projects-result-structure.json",
  "name": "ListProjectsResult",
  "description": "ListProjectsResult schema from AWS CodeStar API",
  "type": "object",
  "properties": {
    "projects": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectsList"
        },
        {
          "description": "A list of projects."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationToken"
        },
        {
          "description": "The continuation token to use when requesting the next set of results, if there are more results to be returned."
        }
      ]
    }
  },
  "required": [
    "projects"
  ]
}