action cloud_elements_delete_object_name_by_child_object_id { label: "Delete an {childObjectName}" provider: cloud_elements method: DELETE path: "/{objectName}/{objectId}/{childObjectName}/{childObjectId}" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } childObjectId: { type: "string" } childObjectName: { type: "string" } objectId: { type: "string" } objectName: { type: "string" } } required: ["Authorization", "childObjectId", "childObjectName", "objectId", "objectName"] additionalProperties: false } output: { type: "object" additionalProperties: true } }