Atlassian · Schema

ProjectIdentifiers

Identifiers for a project.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

atlassian-projectidentifiers-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectIdentifiers",
  "title": "ProjectIdentifiers",
  "additionalProperties": false,
  "description": "Identifiers for a project.",
  "properties": {
    "id": {
      "description": "The ID of the created project.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "key": {
      "description": "The key of the created project.",
      "readOnly": true,
      "type": "string"
    },
    "self": {
      "description": "The URL of the created project.",
      "format": "uri",
      "readOnly": true,
      "type": "string"
    }
  },
  "required": [
    "id",
    "key",
    "self"
  ],
  "type": "object"
}