Newer
Older
ez-indexation / app / node_modules / is-my-json-valid / test / json-schema-draft4 / nullAndFormat.json
@kieffer kieffer on 7 Mar 2017 385 bytes v0.0.0
[
  {
    "description": "validation of null and format",
    "schema": {"type": ["null", "string"], "format": "date-time"},
    "tests": [
      {
        "description": "a valid date-time string",
        "data": "1963-06-19T08:30:06.283185Z",
        "valid": true
      },
      {
        "description": "allow null",
        "data": null,
        "valid": true
      }
    ]
  }
]