fix: replace oneOf with anyOf

Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
Pranav C
2023-02-24 00:54:17 +05:30
parent 90fe5ef1fc
commit 06f7bcc2be
2 changed files with 6 additions and 5 deletions

View File

@@ -10170,6 +10170,7 @@
}
},
"LinkToAnotherColumnReq": {
"type": "object",
"properties": {
"uidt": {
"type": "string",
@@ -10207,6 +10208,7 @@
]
},
"RollupColumnReq": {
"type": "object",
"properties": {
"uidt": {
"type": "string",
@@ -10266,10 +10268,7 @@
"ColumnReq": {
"allOf": [
{
"oneOf": [
{
"$ref": "#/components/schemas/NormalColumnRequest"
},
"anyOf": [
{
"$ref": "#/components/schemas/LinkToAnotherColumnReq"
},
@@ -10281,6 +10280,9 @@
},
{
"$ref": "#/components/schemas/LookupColumnReq"
},
{
"$ref": "#/components/schemas/NormalColumnRequest"
}
]
},