mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-25 22:49:12 +00:00
Fixing wrong schema defaults for mutually exclusive fields (#19281)
* hotfix(api): Updated create tag schema's mutually exclusive field * hotfix(api): Updated create tag schema's mutually exclusive field --------- Co-authored-by: Mayur Singal <39544459+ulixius9@users.noreply.github.com>
This commit is contained in:
parent
2bc34d99cf
commit
cb98269dea
@ -25,7 +25,7 @@
|
||||
"mutuallyExclusive" : {
|
||||
"description" : "Tags under this classification are mutually exclusive. When mutually exclusive is `true` the tags from this classification are used to **classify** an entity. An entity can only be in one class - example, it can only be either `tier1` or `tier2` and not both. When mutually exclusive is `false`, the tags from this classification are used to **categorize** an entity. An entity can be in multiple categories simultaneously - example a customer can be `newCustomer` and `atRisk` simultaneously.",
|
||||
"type" : "boolean",
|
||||
"default" : "false"
|
||||
"default" : false
|
||||
},
|
||||
"domain" : {
|
||||
"description": "Fully qualified name of the domain the Table belongs to.",
|
||||
|
||||
@ -43,7 +43,7 @@
|
||||
"mutuallyExclusive" : {
|
||||
"description" : "Children tags under this group are mutually exclusive. When mutually exclusive is `true` the tags from this group are used to **classify** an entity. An entity can only be in one class - example, it can only be either `tier1` or `tier2` and not both. When mutually exclusive is `false`, the tags from this group are used to **categorize** an entity. An entity can be in multiple categories simultaneously - example a customer can be `newCustomer` and `atRisk` simultaneously.",
|
||||
"type" : "boolean",
|
||||
"default" : "false"
|
||||
"default" : false
|
||||
},
|
||||
"domain" : {
|
||||
"description": "Fully qualified name of the domain the Table belongs to.",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user