react / wstein / node_modules / jest-cli / node_modules / jsdom / node_modules / request / node_modules / har-validator / node_modules / is-my-json-valid / test / json-schema-draft4 / anyOf.json
81160 views[1{2"description": "anyOf",3"schema": {4"anyOf": [5{6"type": "integer"7},8{9"minimum": 210}11]12},13"tests": [14{15"description": "first anyOf valid",16"data": 1,17"valid": true18},19{20"description": "second anyOf valid",21"data": 2.5,22"valid": true23},24{25"description": "both anyOf valid",26"data": 3,27"valid": true28},29{30"description": "neither anyOf valid",31"data": 1.5,32"valid": false33}34]35},36{37"description": "anyOf with base schema",38"schema": {39"type": "string",40"anyOf" : [41{42"maxLength": 243},44{45"minLength": 446}47]48},49"tests": [50{51"description": "mismatch base schema",52"data": 3,53"valid": false54},55{56"description": "one anyOf valid",57"data": "foobar",58"valid": true59},60{61"description": "both anyOf invalid",62"data": "foo",63"valid": false64}65]66}67]686970