Atlassian · Schema

ProjectIdentifierBean

The identifiers for a project.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

atlassian-projectidentifierbean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectIdentifierBean",
  "title": "ProjectIdentifierBean",
  "additionalProperties": false,
  "description": "The identifiers for a project.",
  "properties": {
    "id": {
      "description": "The ID of the project.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "key": {
      "description": "The key of the project.",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object"
}