Amazon CodeStar · Schema

UpdateProjectRequest

UpdateProjectRequest schema from AWS CodeStar API

Developer ToolsDevOpsProject ManagementTeam Collaboration

Properties

Name Type Description
id object
name object
description object
View JSON Schema on GitHub

JSON Schema

codestar-update-project-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codestar/refs/heads/main/json-schema/codestar-update-project-request-schema.json",
  "title": "UpdateProjectRequest",
  "description": "UpdateProjectRequest schema from AWS CodeStar API",
  "type": "object",
  "properties": {
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectId"
        },
        {
          "description": "The ID of the project you want to update."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectName"
        },
        {
          "description": "The name of the project you want to update."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectDescription"
        },
        {
          "description": "The description of the project, if any."
        }
      ]
    }
  },
  "required": [
    "id"
  ]
}