Atlassian · Schema

ProjectId

Project ID details.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id string The ID of the project.
View JSON Schema on GitHub

JSON Schema

atlassian-projectid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectId",
  "title": "ProjectId",
  "additionalProperties": false,
  "description": "Project ID details.",
  "nullable": true,
  "properties": {
    "id": {
      "description": "The ID of the project.",
      "type": "string"
    }
  },
  "required": [
    "id"
  ],
  "type": "object"
}