Atlassian · Schema

GroupCreate

The name property will soon be deprecated in favor of using id.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string
name string
id string
View JSON Schema on GitHub

JSON Schema

atlassian-groupcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupCreate",
  "title": "GroupCreate",
  "required": [
    "type"
  ],
  "type": "object",
  "description": "The name property will soon be deprecated in favor of using id.",
  "additionalProperties": true,
  "properties": {
    "type": {
      "type": "string",
      "default": "group",
      "enum": [
        "group"
      ]
    },
    "name": {
      "type": "string",
      "deprecated": true
    },
    "id": {
      "type": "string"
    }
  }
}