Newer
Older
ez-indexation / app / node_modules / is-my-json-valid / test / json-schema-draft4 / nullAndObject.json
@kieffer kieffer on 7 Mar 2017 316 bytes v0.0.0
[
  {
    "description": "multiple types of null and object containing properties",
    "schema": {
      "type": ["null", "object"],
      "properties": {
        "foo": {}
      }
    },
    "tests": [
      {
        "description": "null is valid",
        "data": null,
        "valid": true
      }
    ]
  }
]