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 / refRemote.json
81160 views[1{2"description": "remote ref",3"schema": {"$ref": "http://localhost:1234/integer.json"},4"tests": [5{6"description": "remote ref valid",7"data": 1,8"valid": true9},10{11"description": "remote ref invalid",12"data": "a",13"valid": false14}15]16},17{18"description": "fragment within remote ref",19"schema": {"$ref": "http://localhost:1234/subSchemas.json#/integer"},20"tests": [21{22"description": "remote fragment valid",23"data": 1,24"valid": true25},26{27"description": "remote fragment invalid",28"data": "a",29"valid": false30}31]32},33{34"description": "ref within remote ref",35"schema": {36"$ref": "http://localhost:1234/subSchemas.json#/refToInteger"37},38"tests": [39{40"description": "ref within ref valid",41"data": 1,42"valid": true43},44{45"description": "ref within ref invalid",46"data": "a",47"valid": false48}49]50},51{52"description": "change resolution scope",53"schema": {54"id": "http://localhost:1234/",55"items": {56"id": "folder/",57"items": {"$ref": "folderInteger.json"}58}59},60"tests": [61{62"description": "changed scope ref valid",63"data": [[1]],64"valid": true65},66{67"description": "changed scope ref invalid",68"data": [["a"]],69"valid": false70}71]72}73]747576