refactor(schema): Make domain a required field for Data Product creation (#20182)

(cherry picked from commit 7d7472321a588612c24af10123219bd918b1a9cb)
This commit is contained in:
Ayush Shah 2025-03-11 21:15:37 +05:30 committed by OpenMetadata Release Bot
parent 1be11510a0
commit 6d48d58a10
2 changed files with 3 additions and 2 deletions

View File

@ -66,7 +66,8 @@
},
"required": [
"name",
"description"
"description",
"domain"
],
"additionalProperties": false
}

View File

@ -29,7 +29,7 @@ export interface CreateDataProduct {
/**
* Fully qualified name of the Domain the DataProduct belongs to.
*/
domain?: string;
domain: string;
/**
* List of user/login names of users who are experts in this DataProduct.
*/