{ "$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" }