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
Loading
Loading
Loading
Loading
Loading
+15 −5
Original line number Original line Diff line number Diff line
@@ -19,11 +19,21 @@
        },
        },
        "value": {
        "value": {
          "oneOf": [
          "oneOf": [
            "string",
            {
            "number",
              "type": "string"
            "boolean",
            },
            "array",
            {
            "object"
              "type": "number"
            },
            {
              "type": "boolean"
            },
            {
              "type": "array"
            },
            {
              "type": "object"
            }
          ]
          ]
        },
        },
        "unitCode": {
        "unitCode": {