Amazon CodeStar · JSON Structure

Codestar List Tags For Project Request Structure

ListTagsForProjectRequest schema from AWS CodeStar API

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

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

Properties

id nextToken maxResults

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-tags-for-project-request-structure.json",
  "name": "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"
  ]
}