Atlassian · Schema

BulkChangeOwnerDetails

Details for changing owners of shareable entities

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
autofixName boolean Whether the name is fixed automatically if it's duplicated after changing owner.
newOwner string The account id of the new owner.
View JSON Schema on GitHub

JSON Schema

atlassian-bulkchangeownerdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkChangeOwnerDetails",
  "title": "BulkChangeOwnerDetails",
  "additionalProperties": false,
  "description": "Details for changing owners of shareable entities",
  "properties": {
    "autofixName": {
      "description": "Whether the name is fixed automatically if it's duplicated after changing owner.",
      "type": "boolean"
    },
    "newOwner": {
      "description": "The account id of the new owner.",
      "type": "string"
    }
  },
  "required": [
    "autofixName",
    "newOwner"
  ],
  "type": "object"
}