diff --git a/openmetadata-spec/src/main/resources/json/schema/entity/applications/configuration/external/automator/addOwnerAction.json b/openmetadata-spec/src/main/resources/json/schema/entity/applications/configuration/external/automator/addOwnerAction.json index 819bcb002f2..04c2adc2471 100644 --- a/openmetadata-spec/src/main/resources/json/schema/entity/applications/configuration/external/automator/addOwnerAction.json +++ b/openmetadata-spec/src/main/resources/json/schema/entity/applications/configuration/external/automator/addOwnerAction.json @@ -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 }