mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-27 16:14:34 +00:00
refactor(schema): Make domain a required field for Data Product creation (#20182)
(cherry picked from commit 7d7472321a588612c24af10123219bd918b1a9cb)
This commit is contained in:
parent
1be11510a0
commit
6d48d58a10
@ -66,7 +66,8 @@
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"description"
|
||||
"description",
|
||||
"domain"
|
||||
],
|
||||
"additionalProperties": false
|
||||
}
|
||||
@ -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.
|
||||
*/
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user