MINOR - Automator multiple ownership (#17232)

This commit is contained in:
Pere Miquel Brull 2024-07-30 15:22:49 +02:00 committed by GitHub
parent c84baaf66a
commit f52e93f88f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@
"$id": "https://open-metadata.org/schema/entity/applications/configuration/external/automator/addOwnerAction.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "AddOwnerAction",
"description": "Add an owner to the selected assets.",
"description": "Add owners to the selected assets.",
"type": "object",
"definitions": {
"addOwnerActionType": {
@ -19,17 +19,18 @@
"$ref": "#/definitions/addOwnerActionType",
"default": "AddOwnerAction"
},
"owner": {
"description": "Owner to apply",
"$ref": "../../../../../type/entityReference.json"
"owners": {
"description": "Owners to apply",
"$ref": "../../../../../type/entityReferenceList.json",
"default": null
},
"overwriteMetadata": {
"title": "Overwrite Metadata",
"description": "Update the owner even if it is defined in the asset. By default, we will only apply the owner to assets without owner.",
"description": "Update the owners even if it is defined in the asset. By default, we will only apply the owners to assets without owner.",
"type": "boolean",
"default": false
}
},
"required": ["type", "owner"],
"required": ["type", "owners"],
"additionalProperties": false
}