Amazon CodeStar · JSON Structure

Codestar Untag Project Request Structure

UntagProjectRequest schema from AWS CodeStar API

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

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

Properties

id tags

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-untag-project-request-structure.json",
  "name": "UntagProjectRequest",
  "description": "UntagProjectRequest schema from AWS CodeStar API",
  "type": "object",
  "properties": {
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectId"
        },
        {
          "description": "The ID of the project to remove tags from."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagKeys"
        },
        {
          "description": "The tags to remove from the project."
        }
      ]
    }
  },
  "required": [
    "id",
    "tags"
  ]
}