Atlassian · Schema

IdBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id integer The ID of the permission scheme to associate with the project. Use the [Get all permission schemes](#api-rest-api-3-permissionscheme-get) resource to get a list of permission scheme IDs.
View JSON Schema on GitHub

JSON Schema

atlassian-idbean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IdBean",
  "title": "IdBean",
  "additionalProperties": false,
  "properties": {
    "id": {
      "description": "The ID of the permission scheme to associate with the project. Use the [Get all permission schemes](#api-rest-api-3-permissionscheme-get) resource to get a list of permission scheme IDs.",
      "format": "int64",
      "type": "integer"
    }
  },
  "required": [
    "id"
  ],
  "type": "object"
}