Atlassian · Schema

PermittedProjects

A list of projects in which a user is granted permissions.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
projects array A list of projects.
View JSON Schema on GitHub

JSON Schema

atlassian-permittedprojects-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PermittedProjects",
  "title": "PermittedProjects",
  "additionalProperties": false,
  "description": "A list of projects in which a user is granted permissions.",
  "properties": {
    "projects": {
      "description": "A list of projects.",
      "items": {
        "$ref": "#/components/schemas/ProjectIdentifierBean"
      },
      "readOnly": true,
      "type": "array"
    }
  },
  "type": "object"
}