Skip to content
Snippets Groups Projects
Commit 740a1f56 authored by Sviatoslav Nekhaienko's avatar Sviatoslav Nekhaienko
Browse files

add anyOf and oneOf to integration tests

parent 7bf45bbf
No related branches found
No related tags found
1 merge request!78Support of oneOf and anyOf tags
Pipeline #24189 failed
......@@ -20,7 +20,11 @@
},
"County": {
"type": "string"
},
}}}],
"anyOf": [
{
"type": "object",
"properties": {
"State": {
"type": "string"
},
......@@ -41,7 +45,11 @@
},
"EmptyAttribute": {
"type": "string"
},
}}}],
"oneOf": [
{
"type": "object",
"properties": {
"Rank": {
"type": "integer"
},
......
......@@ -4,7 +4,7 @@
"authority": "tenant1",
"source": "indexer-int-test",
"entityType": "sample-schema-1",
"schemaVersionMajor": "1",
"schemaVersionMajor": "2",
"schemaVersionMinor": "0",
"schemaVersionPatch": "4"
},
......@@ -32,7 +32,14 @@
},
"County": {
"type": "string"
},
}
}
}
],
"anyOf": [
{
"type": "object",
"properties": {
"State": {
"type": "string"
},
......@@ -53,7 +60,14 @@
},
"EmptyAttribute": {
"type": "string"
},
}
}
}
],
"oneOf": [
{
"type": "object",
"properties": {
"Rank": {
"type": "integer"
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment