Skip to content
Snippets Groups Projects
Commit a98bf36e authored by Benoit Orihuela's avatar Benoit Orihuela
Browse files

fix: update Entity.json to follow new JSON Schema spec for the oneOf attribute

parent 930df5bf
Branches fix/schema-update-and-unit-code
No related tags found
1 merge request!8fix: JSON schema update and missing unit code
Pipeline #13990 failed
......@@ -19,11 +19,21 @@
},
"value": {
"oneOf": [
"string",
"number",
"boolean",
"array",
"object"
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"type": "array"
},
{
"type": "object"
}
]
},
"unitCode": {
......
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