input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"replace" : true, "values" : ["minecraft:shield", "minecraft:iron_sword", "minecraft:iron_helmet", "minecraft:iron_chestplate", "minecraft:iron_leggings", "minecraft:iron_boots", "minecraft:iron_horse_armor"]} | json_instruct | {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2021-05-26T12:00:00Z", "Temp" : 37, "RelHum" : 21, "WindSpeed" : 4.8, "WindDir" : 298} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "fileName": {"type": "string"}, "configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["name", "displayName", "fileName", "configurations"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Elite", "displayName" : "Elite Dangerous", "fileName" : "Elite Dangerous\\EliteD MFD.jpg", "configurations" : [{"name" : "LMFD_Elite"}, {"name" : "WHKEY_Elite", "filename" : "Elite Dangerous\\EliteD THROTTLE.JPG"}, {"name" : "RMFD_Elite", "enabled" : false}]}, {"name" : "EliteHV", "displayName" : "Elite Dangerous Hi Viz", "fileName" : "_High Contrast MFDs\\EliteD MFD HiVis.jpg", "configurations" : [{"name" : "LMFD_Elite"}, {"name" : "WHKEY_Elite", "filename" : "Elite Dangerous\\EliteD THROTTLE.JPG"}, {"name" : "RMFD_Elite", "enabled" : false}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "fileName": {"type": "string"}, "configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["name", "displayName", "fileName", "configurations"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@nestjs/common": {"type": "string"}, "@nestjs/core": {"type": "string"}, "@nestjs/platform-fastify": {"type": "string"}, "cross-env": {"type": "string"}, "nest-next": {"type": "string"}, "next": {"type": "string"}, "nodemon": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "reflect-metadata": {"type": "string"}, "rxjs": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["@nestjs/common", "@nestjs/core", "@nestjs/platform-fastify", "cross-env", "nest-next", "next", "nodemon", "react", "react-dom", "reflect-metadata", "rxjs", "ts-node"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/react-dom": {"type": "string"}, "rimraf": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "@types/react-dom", "rimraf", "typescript"]}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "dev": {"type": "string"}}, "required": ["clean", "build", "start", "dev"]}}, "required": ["name", "version", "description", "main", "types", "license", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "nest-next-example-advanced-server", "version" : "1.0.0", "description" : "The server portion of an advanced example using nest-next.", "main" : "dist/main.js", "types" : "src/main.ts", "license" : "MIT", "dependencies" : {"@nestjs/common" : "^6.10.12", "@nestjs/core" : "^6.10.12", "@nestjs/platform-fastify" : "^6.10.12", "cross-env" : "^6.0.3", "nest-next" : "^9.1.0", "next" : "^9.1.6", "nodemon" : "^2.0.2", "react" : "^16.12.0", "react-dom" : "^16.12.0", "reflect-metadata" : "^0.1.13", "rxjs" : "^6.5.3", "ts-node" : "^8.5.4"}, "devDependencies" : {"@types/node" : "^12.12.21", "@types/react-dom" : "^16.9.4", "rimraf" : "^3.0.0", "typescript" : "^3.7.3"}, "scripts" : {"clean" : "rimraf ./dist", "build" : "tsc -b", "start" : "cross-env NODE_ENV=production node ./dist/main.js", "dev" : "nodemon"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@nestjs/common": {"type": "string"}, "@nestjs/core": {"type": "string"}, "@nestjs/platform-fastify": {"type": "string"}, "cross-env": {"type": "string"}, "nest-next": {"type": "string"}, "next": {"type": "string"}, "nodemon": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "reflect-metadata": {"type": "string"}, "rxjs": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["@nestjs/common", "@nestjs/core", "@nestjs/platform-fastify", "cross-env", "nest-next", "next", "nodemon", "react", "react-dom", "reflect-metadata", "rxjs", "ts-node"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/react-dom": {"type": "string"}, "rimraf": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "@types/react-dom", "rimraf", "typescript"]}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "dev": {"type": "string"}}, "required": ["clean", "build", "start", "dev"]}}, "required": ["name", "version", "description", "main", "types", "license", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.6.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6.4": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6.5": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6.6": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.6.1", "0.6.3", "0.6.4", "0.6.5", "0.6.6"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["0.6.6"], "meta" : {"description" : "UUIDField for django models", "homepage" : "http://bitbucket.org/schinckel/django-uuidfield/"}, "versions" : {"0.6.1" : {"sha256" : "d7a23a4999dd1d9f1d0ed74a5605ee7f7202d20a2e2ef4a5ecb316a546f4525f", "url" : "https://files.pythonhosted.org/packages/5b/91/c30846220851d1e0f8ae02aa93bfdbde59cf4c762e3d9b62a776edc145cf/django-uuidfield-2-0.6.1.tar.gz"}, "0.6.3" : {"sha256" : "b68e80426629bd39b2fddfb8efeb67b0b3895a4571734c2b4cb1aa03f39a3978", "url" : "https://files.pythonhosted.org/packages/12/7b/dd4bd046a45aa9111d2bc819b35c25a16ffdd64d8947773fd27bacee3bf4/django-uuidfield-2-0.6.3.tar.gz"}, "0.6.4" : {"sha256" : "a6e0d4c5d17f35efb7d0381a325910d25b5617ed1d3321955b3df37108247499", "url" : "https://files.pythonhosted.org/packages/5a/af/7fa2008cb266735c5555ebe2e72505f17adaff2dc1617d4a5362a91ff7e0/django-uuidfield-2-0.6.4.tar.gz"}, "0.6.5" : {"sha256" : "76c3df427c6fc138036e28eb5de77e7a382ab9487a8b7f66dd371265779ef892", "url" : "https://files.pythonhosted.org/packages/26/50/b7bc432e714a721443cf00b62df4374c3843d4a1dbdc5801520f637b62c9/django-uuidfield-2-0.6.5.tar.gz"}, "0.6.6" : {"sha256" : "690f004c2472e89dd1bb531876934bc854584e45dba75a155da05d970f88dda4", "url" : "https://files.pythonhosted.org/packages/62/da/2cb38594c0bce1277f8cbddca65b12fd13c85c91ba47761bc138b3016d5b/django-uuidfield-2-0.6.6.tar.gz"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.6.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6.4": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6.5": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6.6": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.6.1", "0.6.3", "0.6.4", "0.6.5", "0.6.6"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "null"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Haramaya University", "alt_name" : "(HU)", "country" : "Ethiopia", "state" : null, "address" : {"street" : "PO Box 138", "city" : "Dire Dawa", "province" : "Harrar", "postal_code" : null}, "contact" : {"telephone" : "+251(25) 553-0319", "website" : "http://www.haramaya.edu.et", "email" : "haramaya@haramaya.edu.et", "fax" : "+251(25) 553-0325"}, "funding" : "Public", "languages" : null, "academic_year" : "September to July (September-February; February-July)", "accrediting_agency" : null} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "null"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "postinstall": {"type": "string"}, "preuninstall": {"type": "string"}, "uninstall-windows-service": {"type": "string"}}, "required": ["test", "postinstall", "preuninstall", "uninstall-windows-service"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"shelljs": {"type": "string"}, "winser": {"type": "string"}}, "required": ["shelljs", "winser"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "simple-git-mirror", "version" : "0.0.1", "description" : "Combines a (dumb) Node.js webhook listener with git to one-way mirroring of a git repository.", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "postinstall" : "winser -i -s -c --startcmd \"node server.js\"", "preuninstall" : "winser -r -x", "uninstall-windows-service" : "winser -r -x"}, "repository" : {"type" : "git", "url" : "https://github.com/decates/simple-git-mirror.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/decates/simple-git-mirror/issues"}, "homepage" : "https://github.com/decates/simple-git-mirror", "dependencies" : {"shelljs" : "^0.5.1", "winser" : "^1.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "postinstall": {"type": "string"}, "preuninstall": {"type": "string"}, "uninstall-windows-service": {"type": "string"}}, "required": ["test", "postinstall", "preuninstall", "uninstall-windows-service"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"shelljs": {"type": "string"}, "winser": {"type": "string"}}, "required": ["shelljs", "winser"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"cdf_smooth": {"type": "object", "properties": {"x": {"type": "array", "items": {"type": "number"}}, "c": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["x", "c"]}}, "required": ["cdf_smooth"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cdf_smooth" : {"x" : [1.4860681322449911, 2.277767470942213, 2.7283304571288762, 3.0308343745632107, 3.3046045688249555, 3.562296418331589, 3.80173025440313, 4.0612710232851645, 4.316823238158109, 4.616307411684693, 4.953560528209305, 5.324685108381014, 5.761606530343462, 6.288092769076972, 6.972490520547941, 7.990667572602743, 12.464580251801403], "c" : [[0.01123245888580154, 0.04699619673459852, 0.0, 0.005033], [0.02165938656563103, 0.07367438755009709, 0.0955348217784008, 0.0400635], [-0.0874084711082596, 0.10295114122004256, 0.17511574745787353, 0.10004550000000001], [-0.008288508813328484, 0.02362692643845949, 0.21340610878583866, 0.16002], [0.06846976338980984, 0.016819486434564376, 0.2244791310952771, 0.22004500000000002], [-0.223156106570316, 0.06975178632416873, 0.2467878424866184, 0.28018], [0.19043831599006417, -0.09054158159259212, 0.2418100620543577, 0.340205], [-0.20642187852213092, 0.05773793927739122, 0.2332961795057392, 0.40019499999999997], [0.08603341359712949, -0.10051676548630241, 0.22236395571838732, 0.46014], [0.0036684487179391373, -0.023219828185881624, 0.18530680422747864, 0.52003], [-0.013733446715178847, -0.019508240897074806, 0.17089662976617273, 0.580025], [0.009419657673661538, -0.03479869983651904, 0.15074198918600795, 0.6400600000000001], [-3.9289112516885955e-05, -0.022451749160991824, 0.12572804160202686, 0.7000649999999999], [0.002213984214203548, -0.022513804692208247, 0.10205429628128641, 0.76003], [0.00277319360388727, -0.017968067238228864, 0.0743485941567595, 0.82004], [0.0006427526053482556, -0.009497260973079322, 0.046384027244852126, 0.8800399999999999]]}} | json_instruct | {"type": "object", "properties": {"cdf_smooth": {"type": "object", "properties": {"x": {"type": "array", "items": {"type": "number"}}, "c": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["x", "c"]}}, "required": ["cdf_smooth"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 55, "n_trials" : 80, "objective" : "markowitz_return_on_cube", "white" : "optuna_random_clone_1", "black" : "bobyqa_default", "traceback" : ["passing", "passing"], "best_val" : [612.6862767029318, 2014.3974641606444], "best_x" : [[0.727667169841907, 0.32404560838186847, 0.9114573344729129, 0.9083644143973655, 0.7407440280091312, 0.4639722733858992, 0.6106635298277262, 0.2916166885803908, 0.17776940966326604, 0.7965360591325816, 0.09313186214391378, 0.6183018604115453, 0.992727443511118, 0.4249327693903233, 0.5321263284701334, 0.8916962601928108, 0.5045062565380892, 0.906892909312379, 0.9459177341038345, 0.03522469783208437, 0.657295970859796, 0.33265161112281594, 0.8031653544849412, 0.48033882408150597, 0.4063120516632661, 0.8332217195224808, 0.14554737013180297, 0.8945999753687023, 0.2587235432865985, 0.30142928748455733, 0.47649756732759285, 0.015526094725872519, 0.3050173552660116, 0.8689122723033776, 0.7008855369573345, 0.6033652043405042, 0.8472772098251594, 0.5365574836342045, 0.5851095307617115, 0.17527428258803857, 0.47771705678461174, 0.15990074553492406, 0.5544525873166709, 0.8100657940135513, 0.515948741106322, 0.04854173076803692, 0.6414730504768582, 0.8831047381011455, 0.1803385215585256, 0.054228444818791854, 0.055566097210522414, 0.8337869114739399, 0.5075816118008374, 0.32366943450933794, 0.43710453107829383], [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.4, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5]], "feval_count" : [80, 80], "n_trials_instructed" : [80, 80], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "optuna_random_clone_1", "loser" : "bobyqa_default"} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}, "tag": {"type": "string"}, "directory": {"type": "string"}}, "required": ["access", "tag", "directory"]}}, "required": ["name", "version", "license", "author", "private", "homepage", "repository", "bugs", "main", "files", "publishConfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@terminus/stylelint-config-frontend", "version" : "1.3.2", "license" : "MIT", "author" : "@terminus", "private" : false, "homepage" : "https://github.com/GetTerminus/terminus-oss", "repository" : {"type" : "git", "url" : "https://github.com/GetTerminus/terminus-oss.git"}, "bugs" : {"url" : "https://github.com/GetTerminus/terminus-oss/issues"}, "main" : "rules.js", "files" : ["rules.js", "README.md"], "publishConfig" : {"access" : "public", "tag" : "next", "directory" : "../../dist/libs/stylelint-config-frontend"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}, "tag": {"type": "string"}, "directory": {"type": "string"}}, "required": ["access", "tag", "directory"]}}, "required": ["name", "version", "license", "author", "private", "homepage", "repository", "bugs", "main", "files", "publishConfig"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ETag" : "W/\"1a29b9a01295ecf5db069ae2c4aed1e2\"", "Last-Modified" : "Tue, 07 Jul 2020 23:10:16 GMT", "base" : {"repo" : {"name" : "pymapd-feedstock"}}, "closed_at" : "2020-07-07T23:10:16Z", "created_at" : "2020-07-07T20:28:47Z", "draft" : false, "head" : {"ref" : "0.24.0_hf3ed77"}, "html_url" : "https://github.com/conda-forge/pymapd-feedstock/pull/57", "id" : 445656129, "labels" : [], "mergeable" : null, "mergeable_state" : "unknown", "merged" : true, "merged_at" : "2020-07-07T23:10:16Z", "number" : 57, "state" : "closed", "updated_at" : "2020-07-07T23:10:16Z"} | json_instruct | {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"WorkItem": {"type": "object", "properties": {"AffectedComponent": {"type": "object", "properties": {"Name": {"type": "string"}, "DisplayName": {"type": "string"}}, "required": ["Name", "DisplayName"]}, "ClosedComment": {"type": "string"}, "ClosedDate": {"type": "string"}, "CommentCount": {"type": "integer"}, "Custom": {"type": "string"}, "Description": {"type": "string"}, "LastUpdatedDate": {"type": "string"}, "PlannedForRelease": {"type": "string"}, "ReleaseVisibleToPublic": {"type": "boolean"}, "Priority": {"type": "object", "properties": {"Name": {"type": "string"}, "Severity": {"type": "integer"}, "Id": {"type": "integer"}}, "required": ["Name", "Severity", "Id"]}, "ProjectName": {"type": "string"}, "ReportedDate": {"type": "string"}, "Status": {"type": "object", "properties": {"Name": {"type": "string"}, "Id": {"type": "integer"}}, "required": ["Name", "Id"]}, "ReasonClosed": {"type": "object", "properties": {"Name": {"type": "string"}}, "required": ["Name"]}, "Summary": {"type": "string"}, "Type": {"type": "object", "properties": {"Name": {"type": "string"}, "Id": {"type": "integer"}}, "required": ["Name", "Id"]}, "VoteCount": {"type": "integer"}, "Id": {"type": "integer"}}, "required": ["AffectedComponent", "ClosedComment", "ClosedDate", "CommentCount", "Custom", "Description", "LastUpdatedDate", "PlannedForRelease", "ReleaseVisibleToPublic", "Priority", "ProjectName", "ReportedDate", "Status", "ReasonClosed", "Summary", "Type", "VoteCount", "Id"]}, "FileAttachments": {"type": "array", "items": {}}, "Comments": {"type": "array", "items": {"type": "object", "properties": {"Message": {"type": "string"}, "PostedDate": {"type": "string"}, "Id": {"type": "integer"}}, "required": ["Message", "PostedDate", "Id"]}}}, "required": ["WorkItem", "FileAttachments", "Comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"WorkItem" : {"AffectedComponent" : {"Name" : "", "DisplayName" : ""}, "ClosedComment" : "by design", "ClosedDate" : "2013-04-24T12:58:53.31-07:00", "CommentCount" : 2, "Custom" : "", "Description" : "Hi,\n\nI'm using the modern tab control (under .net 4) to navigate between different user controls, I depend on Loaded/Unloaded events for presenting different views, I noticed the __Loaded__ event is fired again when navigating away to a different user control and the __Unloaded__ event is fired twice. \n\n\nIs this the intended behavior, and why does it reload the control when navigating away ?\n\nMany thanks.", "LastUpdatedDate" : "2013-05-16T05:30:54.18-07:00", "PlannedForRelease" : "", "ReleaseVisibleToPublic" : false, "Priority" : {"Name" : "Unassigned", "Severity" : 0, "Id" : 0}, "ProjectName" : "mui", "ReportedDate" : "2013-04-21T08:53:28.877-07:00", "Status" : {"Name" : "Closed", "Id" : 4}, "ReasonClosed" : {"Name" : "Unassigned"}, "Summary" : "Loaded/Unloaded Events", "Type" : {"Name" : "Issue", "Id" : 3}, "VoteCount" : 2, "Id" : 19624}, "FileAttachments" : [], "Comments" : [{"Message" : "have a look at this post: [Loading and unloading controls](https://mui.codeplex.com/discussions/440170)", "PostedDate" : "2013-04-24T00:56:40.717-07:00", "Id" : 158489}, {"Message" : "Exactly what I was looking for, Thanks for the advice.", "PostedDate" : "2013-04-24T02:20:48.513-07:00", "Id" : 158490}]} | json_instruct | {"type": "object", "properties": {"WorkItem": {"type": "object", "properties": {"AffectedComponent": {"type": "object", "properties": {"Name": {"type": "string"}, "DisplayName": {"type": "string"}}, "required": ["Name", "DisplayName"]}, "ClosedComment": {"type": "string"}, "ClosedDate": {"type": "string"}, "CommentCount": {"type": "integer"}, "Custom": {"type": "string"}, "Description": {"type": "string"}, "LastUpdatedDate": {"type": "string"}, "PlannedForRelease": {"type": "string"}, "ReleaseVisibleToPublic": {"type": "boolean"}, "Priority": {"type": "object", "properties": {"Name": {"type": "string"}, "Severity": {"type": "integer"}, "Id": {"type": "integer"}}, "required": ["Name", "Severity", "Id"]}, "ProjectName": {"type": "string"}, "ReportedDate": {"type": "string"}, "Status": {"type": "object", "properties": {"Name": {"type": "string"}, "Id": {"type": "integer"}}, "required": ["Name", "Id"]}, "ReasonClosed": {"type": "object", "properties": {"Name": {"type": "string"}}, "required": ["Name"]}, "Summary": {"type": "string"}, "Type": {"type": "object", "properties": {"Name": {"type": "string"}, "Id": {"type": "integer"}}, "required": ["Name", "Id"]}, "VoteCount": {"type": "integer"}, "Id": {"type": "integer"}}, "required": ["AffectedComponent", "ClosedComment", "ClosedDate", "CommentCount", "Custom", "Description", "LastUpdatedDate", "PlannedForRelease", "ReleaseVisibleToPublic", "Priority", "ProjectName", "ReportedDate", "Status", "ReasonClosed", "Summary", "Type", "VoteCount", "Id"]}, "FileAttachments": {"type": "array", "items": {}}, "Comments": {"type": "array", "items": {"type": "object", "properties": {"Message": {"type": "string"}, "PostedDate": {"type": "string"}, "Id": {"type": "integer"}}, "required": ["Message", "PostedDate", "Id"]}}}, "required": ["WorkItem", "FileAttachments", "Comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "TEIS", "frequency" : 357, "males" : "99.71988795518207 %", "females" : "0.2801120448179272 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "commander": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["@types/node", "commander"]}}, "required": ["lockfileVersion", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lockfileVersion" : 1, "dependencies" : {"@types/node" : {"version" : "7.0.52", "resolved" : "https://registry.npmjs.org/@types/node/-/node-7.0.52.tgz", "integrity" : "sha512-jjpyQsKGsOF/wUElNjfPULk+d8PKvJOIXk3IUeBYYmNCy5dMWfrI+JiixYNw8ppKOlcRwWTXFl0B+i5oGrf95Q=="}, "commander" : {"version" : "2.12.0", "resolved" : "https://registry.npmjs.org/commander/-/commander-2.12.0.tgz", "integrity" : "sha512-0FAmW4svUhnHJzjJHrg0vHi8+3Wp5mqvZTOui03Tc0515CToaw1BD7WC8ROcY08UnTJJOr4essVYvXBSPYeV2w=="}}} | json_instruct | {"type": "object", "properties": {"lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "commander": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["@types/node", "commander"]}}, "required": ["lockfileVersion", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"atax_kernel20": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "number"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "number"}, "device_end": {"type": "number"}, "host_queued_end": {"type": "number"}}, "required": ["device_start", "host_queued_start", "device_queued", "device_end", "host_queued_end"]}, "device": {"type": "string"}, "nd_range": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}, "cmdq": {"type": "integer"}, "read": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}}, "required": ["write", "device", "nd_range", "cmdq", "read"]}}, "required": ["atax_kernel20"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"atax_kernel20" : {"write" : {"device_start" : 1586202704.5304513, "host_queued_start" : 1586202787.651192, "device_queued" : 1586202704.5301979, "device_end" : 1586202704.5305543, "host_queued_end" : 1586202787.651562}, "device" : "gpu", "nd_range" : {"device_start" : 1586202704.5305552, "device_end" : 1586202704.5306942}, "cmdq" : 0, "read" : {"device_start" : 1586202704.530698, "device_end" : 1586202704.5307}}} | json_instruct | {"type": "object", "properties": {"atax_kernel20": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "number"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "number"}, "device_end": {"type": "number"}, "host_queued_end": {"type": "number"}}, "required": ["device_start", "host_queued_start", "device_queued", "device_end", "host_queued_end"]}, "device": {"type": "string"}, "nd_range": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}, "cmdq": {"type": "integer"}, "read": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}}, "required": ["write", "device", "nd_range", "cmdq", "read"]}}, "required": ["atax_kernel20"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 1970, "sex" : "M", "n" : 12, "prop" : 6.3e-06}, {"year" : 1972, "sex" : "M", "n" : 5, "prop" : 2.99e-06}, {"year" : 1973, "sex" : "M", "n" : 5, "prop" : 3.1e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {"type": "object", "properties": {"ULAN": {"type": "object", "properties": {"Name": {"type": "null"}, "UlanIdNo": {"type": "null"}}, "required": ["Name", "UlanIdNo"]}, "after_follower": {"type": "null"}, "birth_date": {"type": "string"}, "collaboration": {"type": "null"}, "death_date": {"type": "string"}, "display_name": {"type": "string"}, "first": {"type": "string"}, "fullname": {"type": "string"}, "irn": {"type": "integer"}, "last": {"type": "string"}, "middle": {"type": "string"}, "nationality": {"type": "null"}, "organization": {"type": "null"}, "party_type": {"type": "string"}, "role": {"type": "string"}}, "required": ["ULAN", "after_follower", "birth_date", "collaboration", "death_date", "display_name", "first", "fullname", "irn", "last", "middle", "nationality", "organization", "party_type", "role"]}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "null"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "string"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"accession_number" : "70.39A-B", "actors" : [{"ULAN" : {"Name" : null, "UlanIdNo" : null}, "after_follower" : null, "birth_date" : "1886-1888", "collaboration" : null, "death_date" : "1945", "display_name" : "Fakeye A. Ogun", "first" : "Fakeye", "fullname" : "Fakeye A. Ogun", "irn" : 8776, "last" : "Ogun", "middle" : "Akobi", "nationality" : null, "organization" : null, "party_type" : "Registration-Verified", "role" : "Artist"}], "creation_date" : "late 19th to early 20th century", "credit_line" : "Daniel P. Erwin Fund", "cultures" : [], "dimensions" : null, "dynasty" : null, "images" : [], "irn" : 4579, "materials" : "wood", "on_view" : true, "period" : null, "printers" : [], "publishers" : [], "rights" : null, "title" : "Shango food bowl (covered)"} | json_instruct | {"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {"type": "object", "properties": {"ULAN": {"type": "object", "properties": {"Name": {"type": "null"}, "UlanIdNo": {"type": "null"}}, "required": ["Name", "UlanIdNo"]}, "after_follower": {"type": "null"}, "birth_date": {"type": "string"}, "collaboration": {"type": "null"}, "death_date": {"type": "string"}, "display_name": {"type": "string"}, "first": {"type": "string"}, "fullname": {"type": "string"}, "irn": {"type": "integer"}, "last": {"type": "string"}, "middle": {"type": "string"}, "nationality": {"type": "null"}, "organization": {"type": "null"}, "party_type": {"type": "string"}, "role": {"type": "string"}}, "required": ["ULAN", "after_follower", "birth_date", "collaboration", "death_date", "display_name", "first", "fullname", "irn", "last", "middle", "nationality", "organization", "party_type", "role"]}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "null"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "string"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}}, "required": ["name", "main", "version", "private"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "babel-plugin-macros-register", "main" : "src/index", "version" : "9.2.6", "private" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}}, "required": ["name", "main", "version", "private"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"fastify": {"type": "string"}, "firebase-admin": {"type": "string"}, "firebase-functions": {"type": "string"}}, "required": ["fastify", "firebase-admin", "firebase-functions"]}}, "required": ["name", "version", "description", "main", "repository", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "node-simple-webserver-serverless", "version" : "1.0.6", "description" : "Simple Node.js (serverless) server running Fastify", "main" : "index.js", "repository" : {"type" : "git", "url" : "git://github.com/mikaelvesavuori/node-simple-webserver.git"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : [], "author" : "Mikael Vesavuori", "license" : "ISC", "dependencies" : {"fastify" : "^3.9.2", "firebase-admin" : "^9.4.2", "firebase-functions" : "^3.13.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"fastify": {"type": "string"}, "firebase-admin": {"type": "string"}, "firebase-functions": {"type": "string"}}, "required": ["fastify", "firebase-admin", "firebase-functions"]}}, "required": ["name", "version", "description", "main", "repository", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"150727100": {"type": "string"}, "150727101": {"type": "string"}, "150727102": {"type": "string"}, "150727200": {"type": "string"}, "150727201": {"type": "string"}, "150727202": {"type": "string"}, "150727203": {"type": "string"}}, "required": ["150727100", "150727101", "150727102", "150727200", "150727201", "150727202", "150727203"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"150727100" : "\u963f\u62c9\u5766\u989d\u83ab\u52d2\u9547", "150727101" : "\u963f\u65e5\u54c8\u6c99\u7279\u9547", "150727102" : "\u547c\u4f26\u9547", "150727200" : "\u8d1d\u5c14\u82cf\u6728", "150727201" : "\u514b\u5c14\u4f26\u82cf\u6728", "150727202" : "\u8fbe\u8d49\u82cf\u6728", "150727203" : "\u5b9d\u683c\u5fb7\u4e4c\u62c9\u82cf\u6728"} | json_instruct | {"type": "object", "properties": {"150727100": {"type": "string"}, "150727101": {"type": "string"}, "150727102": {"type": "string"}, "150727200": {"type": "string"}, "150727201": {"type": "string"}, "150727202": {"type": "string"}, "150727203": {"type": "string"}}, "required": ["150727100", "150727101", "150727102", "150727200", "150727201", "150727202", "150727203"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Saint-Andr\u00e9-de-Rosans", "dpt" : "Hautes-Alpes", "inscrits" : 174, "abs" : 27, "votants" : 147, "blancs" : 12, "nuls" : 6, "exp" : 129, "res" : [{"panneau" : "1", "voix" : 84}, {"panneau" : "2", "voix" : 45}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"province" : "\u6c5f\u82cf\u7701", "city" : "\u5357\u4eac\u5e02", "area" : "\u6ea7\u6c34\u533a", "name" : "\u6ea7\u6c34\u6d2a\u84dd\u57e0\u90ae\u653f\u652f\u5c40", "code" : "211219", "address" : "\u5357\u4eac\u5e02\u6ea7\u6c34\u533a\u6d2a\u84dd\u9547\u91d1\u725b\u5357\u8def110\u53f7", "phone" : "025-57230001"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"opc": {"type": "string"}}, "required": ["opc"]}, "files": {"type": "array", "items": {"type": "string"}}, "config": {"type": "object", "properties": {"ghooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}}, "required": ["pre-commit"]}}, "required": ["ghooks"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "prepublish": {"type": "string"}, "compile": {"type": "string"}, "postcompile": {"type": "string"}}, "required": ["start", "test", "prepublish", "compile", "postcompile"]}, "dependencies": {"type": "object", "properties": {"cheerio": {"type": "string"}, "commander-file": {"type": "string"}, "lodash": {"type": "string"}, "object-parser": {"type": "string"}}, "required": ["cheerio", "commander-file", "lodash", "object-parser"]}, "devDependencies": {"type": "object", "properties": {"ghooks": {"type": "string"}, "jasminetea": {"type": "string"}}, "required": ["ghooks", "jasminetea"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}, "test": {"type": "string"}}, "required": ["lib", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "bin", "files", "config", "scripts", "dependencies", "devDependencies", "keywords", "directories", "author", "license", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "object-parser-cli", "version" : "0.0.1", "description" : "Object preprocessor", "bin" : {"opc" : "object-parser-cli"}, "files" : ["object-parser-cli", "index.js", "lib"], "config" : {"ghooks" : {"pre-commit" : "npm test"}}, "scripts" : {"start" : "jasminetea --watch", "test" : "jasminetea --cover --report --lint", "prepublish" : "node -e \"if(process.env.TRAVIS){}else{process.exit(1)}\" && npm run compile || echo skip prepublish", "compile" : "coffee --bare --compile index.coffee", "postcompile" : "coffee --output lib --bare --compile src"}, "dependencies" : {"cheerio" : "^0.19.0", "commander-file" : "^0.0.5", "lodash" : "^3.9.1", "object-parser" : "^0.0.1"}, "devDependencies" : {"ghooks" : "^0.3.2", "jasminetea" : "^0.2.1"}, "keywords" : ["lodash", "css-select", "cli", "json", "json5", "jsonml", "yaml", "html", "xml"], "directories" : {"lib" : "lib", "test" : "test"}, "author" : "59naga <i59naga@icloud.com> (http://berabou.me/)", "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/59naga/object-parser-cli.git"}, "bugs" : {"url" : "https://github.com/59naga/object-parser-cli/issues"}, "homepage" : "https://github.com/59naga/object-parser-cli"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"opc": {"type": "string"}}, "required": ["opc"]}, "files": {"type": "array", "items": {"type": "string"}}, "config": {"type": "object", "properties": {"ghooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}}, "required": ["pre-commit"]}}, "required": ["ghooks"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "prepublish": {"type": "string"}, "compile": {"type": "string"}, "postcompile": {"type": "string"}}, "required": ["start", "test", "prepublish", "compile", "postcompile"]}, "dependencies": {"type": "object", "properties": {"cheerio": {"type": "string"}, "commander-file": {"type": "string"}, "lodash": {"type": "string"}, "object-parser": {"type": "string"}}, "required": ["cheerio", "commander-file", "lodash", "object-parser"]}, "devDependencies": {"type": "object", "properties": {"ghooks": {"type": "string"}, "jasminetea": {"type": "string"}}, "required": ["ghooks", "jasminetea"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}, "test": {"type": "string"}}, "required": ["lib", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "bin", "files", "config", "scripts", "dependencies", "devDependencies", "keywords", "directories", "author", "license", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"hilar_lymph_node": {"type": "object", "properties": {"accuracy": {"type": "number"}, "roc_auc": {"type": "number"}, "recall": {"type": "number"}, "precision": {"type": "number"}, "f1_score": {"type": "number"}, "negative_recall": {"type": "number"}, "negative_precision": {"type": "number"}, "negative_f1_score": {"type": "number"}}, "required": ["accuracy", "roc_auc", "recall", "precision", "f1_score", "negative_recall", "negative_precision", "negative_f1_score"]}}, "required": ["hilar_lymph_node"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hilar_lymph_node" : {"accuracy" : 0.8832923832923832, "roc_auc" : 0.902559260133587, "recall" : 0.6831683168316832, "precision" : 0.5227272727272727, "f1_score" : 0.5922746781115881, "negative_recall" : 0.9116409537166901, "negative_precision" : 0.9530791788856305, "negative_f1_score" : 0.931899641577061}} | json_instruct | {"type": "object", "properties": {"hilar_lymph_node": {"type": "object", "properties": {"accuracy": {"type": "number"}, "roc_auc": {"type": "number"}, "recall": {"type": "number"}, "precision": {"type": "number"}, "f1_score": {"type": "number"}, "negative_recall": {"type": "number"}, "negative_precision": {"type": "number"}, "negative_f1_score": {"type": "number"}}, "required": ["accuracy", "roc_auc", "recall", "precision", "f1_score", "negative_recall", "negative_precision", "negative_f1_score"]}}, "required": ["hilar_lymph_node"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"async-limiter": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "colors": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "discord-rpc": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"node-fetch": {"type": "string"}, "ws": {"type": "string"}}, "required": ["node-fetch", "ws"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "node-fetch": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "ws": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"async-limiter": {"type": "string"}}, "required": ["async-limiter"]}}, "required": ["version", "resolved", "integrity", "requires"]}}, "required": ["async-limiter", "colors", "discord-rpc", "node-fetch", "ws"]}}, "required": ["requires", "lockfileVersion", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"requires" : true, "lockfileVersion" : 1, "dependencies" : {"async-limiter" : {"version" : "1.0.0", "resolved" : "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", "integrity" : "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg=="}, "colors" : {"version" : "1.3.3", "resolved" : "https://registry.npmjs.org/colors/-/colors-1.3.3.tgz", "integrity" : "sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg=="}, "discord-rpc" : {"version" : "3.0.1", "resolved" : "https://registry.npmjs.org/discord-rpc/-/discord-rpc-3.0.1.tgz", "integrity" : "sha512-PvkVpIlbFowih2mPIOAwUlX+w+9AGtpVUpQrGP6Mu7TPHDjfclsYoRuquIYiSHsS/n5EfhFgMZfsSTRPkvj22w==", "requires" : {"node-fetch" : "2.3.0", "ws" : "5.2.2"}}, "node-fetch" : {"version" : "2.3.0", "resolved" : "https://registry.npmjs.org/node-fetch/-/node-fetch-2.3.0.tgz", "integrity" : "sha512-MOd8pV3fxENbryESLgVIeaGKrdl+uaYhCSSVkjeOb/31/njTpcis5aWfdqgNlHIrKOLRbMnfPINPOML2CIFeXA=="}, "ws" : {"version" : "5.2.2", "resolved" : "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz", "integrity" : "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==", "requires" : {"async-limiter" : "1.0.0"}}}} | json_instruct | {"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"async-limiter": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "colors": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "discord-rpc": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"node-fetch": {"type": "string"}, "ws": {"type": "string"}}, "required": ["node-fetch", "ws"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "node-fetch": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "ws": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"async-limiter": {"type": "string"}}, "required": ["async-limiter"]}}, "required": ["version", "resolved", "integrity", "requires"]}}, "required": ["async-limiter", "colors", "discord-rpc", "node-fetch", "ws"]}}, "required": ["requires", "lockfileVersion", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "group": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"d": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "b": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "q": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "i": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["d", "b", "q", "i"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["type", "group", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "minecraft:crafting_shaped", "group" : "pylons", "pattern" : ["qqq", "idi", "bbb"], "key" : {"d" : {"item" : "minecraft:diamond_block"}, "b" : {"item" : "minecraft:polished_blackstone"}, "q" : {"item" : "minecraft:quartz_slab"}, "i" : {"item" : "minecraft:iron_bars"}}, "result" : {"item" : "pylons:expulsion_pylon"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "group": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"d": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "b": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "q": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "i": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["d", "b", "q", "i"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["type", "group", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "mongodb": {"type": "string"}, "request": {"type": "string"}}, "required": ["express", "mongodb", "request"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "loadDataBase": {"type": "string"}}, "required": ["start", "loadDataBase"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "netshoes-challenge", "version" : "1.0.0", "description" : "## Expected result", "main" : "app.js", "dependencies" : {"express" : "^4.14.0", "mongodb" : "^2.2.11", "request" : "^2.78.0"}, "devDependencies" : {}, "scripts" : {"start" : "node app.js", "loadDataBase" : "node public/js/mongo-setup.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/pdemutti/netshoes-challenge.git"}, "author" : "", "license" : "ISC"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "mongodb": {"type": "string"}, "request": {"type": "string"}}, "required": ["express", "mongodb", "request"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "loadDataBase": {"type": "string"}}, "required": ["start", "loadDataBase"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "drouth", "definition" : "Same as Drought. Sandys. Another ill accident is drouth at the spindling of corn. Bacon. One whose drouth [thirst], Yet scarce allayed, still eyes the current stream. Milton. In the dust and drouth of London life. Tennyson."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Molleville", "circ" : "3\u00e8me circonscription", "dpt" : "Aude", "inscrits" : 107, "abs" : 34, "votants" : 73, "blancs" : 11, "nuls" : 4, "exp" : 58, "res" : [{"nuance" : "SOC", "nom" : "M. Andr\u00e9 VIOLA", "voix" : 33}, {"nuance" : "REM", "nom" : "Mme Mireille ROBERT", "voix" : 25}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/webpack": {"type": "string"}, "ts-loader": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@types/node", "@types/webpack", "ts-loader", "ts-node", "typescript", "webpack", "webpack-cli"]}, "userscript": {"type": "object", "properties": {"require-template": {"type": "string"}, "namespace": {"type": "string"}, "license": {"type": "string"}, "match": {"type": "array", "items": {"type": "string"}}, "connect": {"type": "array", "items": {}}, "require": {"type": "array", "items": {}}, "grant": {"type": "array", "items": {}}, "exclude": {"type": "array", "items": {}}, "resources": {"type": "array", "items": {}}}, "required": ["require-template", "namespace", "license", "match", "connect", "require", "grant", "exclude", "resources"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "userscript"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "userscript-typescript-template", "version" : "1.0.0", "description" : "Template repo using Webpack and TypeScript to build your userscript for Tampermonkey and more extensions.", "main" : "userscript/index.user.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "build" : "webpack"}, "repository" : {"type" : "git", "url" : "git+https://github.com/pboymt/userscript-typescript-template.git"}, "keywords" : [], "author" : "", "license" : "MIT", "bugs" : {"url" : "https://github.com/pboymt/userscript-typescript-template/issues"}, "homepage" : "https://github.com/pboymt/userscript-typescript-template#readme", "devDependencies" : {"@types/node" : "^16.11.10", "@types/webpack" : "^5.28.0", "ts-loader" : "^9.2.6", "ts-node" : "^10.4.0", "typescript" : "^4.5.2", "webpack" : "^5.64.3", "webpack-cli" : "^4.9.1"}, "userscript" : {"require-template" : "https://cdn.jsdelivr.net/npm/${dependencyName}@${dependencyVersion}", "namespace" : "http://tampermonkey.net/", "license" : "https://opensource.org/licenses/MIT", "match" : ["https://github.com*"], "connect" : [], "require" : [], "grant" : [], "exclude" : [], "resources" : []}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/webpack": {"type": "string"}, "ts-loader": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@types/node", "@types/webpack", "ts-loader", "ts-node", "typescript", "webpack", "webpack-cli"]}, "userscript": {"type": "object", "properties": {"require-template": {"type": "string"}, "namespace": {"type": "string"}, "license": {"type": "string"}, "match": {"type": "array", "items": {"type": "string"}}, "connect": {"type": "array", "items": {}}, "require": {"type": "array", "items": {}}, "grant": {"type": "array", "items": {}}, "exclude": {"type": "array", "items": {}}, "resources": {"type": "array", "items": {}}}, "required": ["require-template", "namespace", "license", "match", "connect", "require", "grant", "exclude", "resources"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "userscript"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"pageInfo": {"type": "object", "properties": {"page": {"type": "integer"}, "numPages": {"type": "integer"}, "pageSize": {"type": "integer"}, "numEntries": {"type": "integer"}}, "required": ["page", "numPages", "pageSize", "numEntries"]}, "content": {"type": "array", "items": {"type": "object", "properties": {"matchId": {"type": "integer"}, "time": {"type": "object", "properties": {"millis": {"type": "integer"}, "label": {"type": "string"}}, "required": ["millis", "label"]}, "teams": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "scores": {"type": "array", "items": {"type": "integer"}}, "status": {"type": "string"}, "outcome": {"type": "string"}, "events": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "label": {"type": "string"}, "sport": {"type": "string"}, "start": {"type": "object", "properties": {"millis": {"type": "integer"}, "label": {"type": "string"}}, "required": ["millis", "label"]}, "end": {"type": "object", "properties": {"millis": {"type": "integer"}, "label": {"type": "string"}}, "required": ["millis", "label"]}}, "required": ["id", "label", "sport", "start", "end"]}}}, "required": ["matchId", "time", "teams", "scores", "status", "outcome", "events"]}}}, "required": ["pageInfo", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pageInfo" : {"page" : 0, "numPages" : 248, "pageSize" : 1, "numEntries" : 248}, "content" : [{"matchId" : 5883, "time" : {"millis" : 788659200000, "label" : "Thu 29 Dec 1994, 00:00 GMT"}, "teams" : [{"id" : 473, "name" : "Middlesex"}, {"id" : 41, "name" : "Italy", "abbreviation" : "ITA"}], "scores" : [3, 50], "status" : "C", "outcome" : "B", "events" : [{"id" : 749, "label" : "1994 Italy Tour of England and Scotland", "sport" : "mru", "start" : {"millis" : 757382400000, "label" : "1994-01-01"}, "end" : {"millis" : 820454399000, "label" : "1995-12-31"}}]}]} | json_instruct | {"type": "object", "properties": {"pageInfo": {"type": "object", "properties": {"page": {"type": "integer"}, "numPages": {"type": "integer"}, "pageSize": {"type": "integer"}, "numEntries": {"type": "integer"}}, "required": ["page", "numPages", "pageSize", "numEntries"]}, "content": {"type": "array", "items": {"type": "object", "properties": {"matchId": {"type": "integer"}, "time": {"type": "object", "properties": {"millis": {"type": "integer"}, "label": {"type": "string"}}, "required": ["millis", "label"]}, "teams": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "scores": {"type": "array", "items": {"type": "integer"}}, "status": {"type": "string"}, "outcome": {"type": "string"}, "events": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "label": {"type": "string"}, "sport": {"type": "string"}, "start": {"type": "object", "properties": {"millis": {"type": "integer"}, "label": {"type": "string"}}, "required": ["millis", "label"]}, "end": {"type": "object", "properties": {"millis": {"type": "integer"}, "label": {"type": "string"}}, "required": ["millis", "label"]}}, "required": ["id", "label", "sport", "start", "end"]}}}, "required": ["matchId", "time", "teams", "scores", "status", "outcome", "events"]}}}, "required": ["pageInfo", "content"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"gdLHDBuyCoin": {"type": "object", "properties": {"1": {"type": "object", "properties": {"count": {"type": "integer"}, "price": {"type": "integer"}}, "required": ["count", "price"]}, "2": {"type": "object", "properties": {"count": {"type": "integer"}, "price": {"type": "number"}}, "required": ["count", "price"]}, "3": {"type": "object", "properties": {"count": {"type": "integer"}, "price": {"type": "integer"}}, "required": ["count", "price"]}, "4": {"type": "object", "properties": {"count": {"type": "integer"}, "price": {"type": "number"}}, "required": ["count", "price"]}, "5": {"type": "object", "properties": {"count": {"type": "integer"}, "price": {"type": "integer"}}, "required": ["count", "price"]}}, "required": ["1", "2", "3", "4", "5"]}, "gdLunDongJiangLi": {"type": "object", "properties": {"1": {"type": "integer"}, "2": {"type": "integer"}, "3": {"type": "integer"}, "4": {"type": "integer"}, "5": {"type": "integer"}, "6": {"type": "integer"}, "7": {"type": "integer"}}, "required": ["1", "2", "3", "4", "5", "6", "7"]}}, "required": ["gdLHDBuyCoin", "gdLunDongJiangLi"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"gdLHDBuyCoin" : {"1" : {"count" : 1000, "price" : 1}, "2" : {"count" : 5000, "price" : 1.5}, "3" : {"count" : 10000, "price" : 2}, "4" : {"count" : 50000, "price" : 2.5}, "5" : {"count" : 100000, "price" : 3}}, "gdLunDongJiangLi" : {"1" : 51255, "2" : 51256, "3" : 51257, "4" : 51258, "5" : 51259, "6" : 51260, "7" : 51261}} | json_instruct | {"type": "object", "properties": {"gdLHDBuyCoin": {"type": "object", "properties": {"1": {"type": "object", "properties": {"count": {"type": "integer"}, "price": {"type": "integer"}}, "required": ["count", "price"]}, "2": {"type": "object", "properties": {"count": {"type": "integer"}, "price": {"type": "number"}}, "required": ["count", "price"]}, "3": {"type": "object", "properties": {"count": {"type": "integer"}, "price": {"type": "integer"}}, "required": ["count", "price"]}, "4": {"type": "object", "properties": {"count": {"type": "integer"}, "price": {"type": "number"}}, "required": ["count", "price"]}, "5": {"type": "object", "properties": {"count": {"type": "integer"}, "price": {"type": "integer"}}, "required": ["count", "price"]}}, "required": ["1", "2", "3", "4", "5"]}, "gdLunDongJiangLi": {"type": "object", "properties": {"1": {"type": "integer"}, "2": {"type": "integer"}, "3": {"type": "integer"}, "4": {"type": "integer"}, "5": {"type": "integer"}, "6": {"type": "integer"}, "7": {"type": "integer"}}, "required": ["1", "2", "3", "4", "5", "6", "7"]}}, "required": ["gdLHDBuyCoin", "gdLunDongJiangLi"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"$schema": {"type": "string"}, "$id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "object", "properties": {"description": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["description", "enum"]}, "name": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "props": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "query": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["type", "name", "props", "query"]}, "required": {"type": "array", "items": {"type": "string"}}, "additionalProperties": {"type": "boolean"}}, "required": ["$schema", "$id", "title", "description", "type", "properties", "required", "additionalProperties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "https://raw.githubusercontent.com/lenra-io/ex_component_schema/beta/priv/static/draft-lenra.json", "$id" : "widget.schema.json", "title" : "Widget", "description" : "Element of type widget", "type" : "component", "properties" : {"type" : {"description" : "The identifier of the component", "enum" : ["widget"]}, "name" : {"description" : "The name of the widget", "type" : "string"}, "props" : {"$ref" : "defs/props.schema.json"}, "query" : {"type" : "object"}}, "required" : ["type", "name"], "additionalProperties" : false} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "$id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "object", "properties": {"description": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["description", "enum"]}, "name": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "props": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "query": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["type", "name", "props", "query"]}, "required": {"type": "array", "items": {"type": "string"}}, "additionalProperties": {"type": "boolean"}}, "required": ["$schema", "$id", "title", "description", "type", "properties", "required", "additionalProperties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "621202103001", "text" : "\u540e\u6751\u5c45\u59d4\u4f1a"}, {"id" : "621202103002", "text" : "\u524d\u6751\u5c45\u59d4\u4f1a"}, {"id" : "621202103003", "text" : "\u540e\u575d\u5c45\u59d4\u4f1a"}, {"id" : "621202103200", "text" : "\u540e\u575d\u6751\u59d4\u4f1a"}, {"id" : "621202103201", "text" : "\u524d\u6751\u6751\u59d4\u4f1a"}, {"id" : "621202103202", "text" : "\u540e\u6751\u6751\u59d4\u4f1a"}, {"id" : "621202103203", "text" : "\u5e99\u576a\u6751\u6751\u59d4\u4f1a"}, {"id" : "621202103204", "text" : "\u8c22\u5bb6\u5761\u6751\u59d4\u4f1a"}, {"id" : "621202103205", "text" : "\u5be8\u5b50\u6751\u59d4\u4f1a"}, {"id" : "621202103206", "text" : "\u675c\u5bb6\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "621202103207", "text" : "\u4e24\u6c34\u6751\u59d4\u4f1a"}, {"id" : "621202103208", "text" : "\u9a6c\u5165\u5d16\u6751\u59d4\u4f1a"}, {"id" : "621202103209", "text" : "\u4e09\u58a9\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "621202103210", "text" : "\u9ec4\u680c\u575d\u6751\u59d4\u4f1a"}, {"id" : "621202103211", "text" : "\u70df\u58a9\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "621202103212", "text" : "\u571f\u95e8\u57ad\u6751\u59d4\u4f1a"}, {"id" : "621202103213", "text" : "\u6e05\u6c34\u576a\u6751\u59d4\u4f1a"}, {"id" : "621202103214", "text" : "\u9f99\u738b\u5c71\u6751\u59d4\u4f1a"}, {"id" : "621202103215", "text" : "\u6bb5\u6cb3\u575d\u6751\u59d4\u4f1a"}, {"id" : "621202103216", "text" : "\u9a6c\u5c3e\u5df4\u6751\u59d4\u4f1a"}, {"id" : "621202103217", "text" : "\u6731\u5bb6\u5c71\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "dev:sass": {"type": "string"}, "dev:server": {"type": "string"}, "build": {"type": "string"}, "build:app": {"type": "string"}, "build:sass": {"type": "string"}, "build:server": {"type": "string"}}, "required": ["dev", "dev:sass", "dev:server", "build", "build:app", "build:sass", "build:server"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"concurrently": {"type": "string"}, "node-sass": {"type": "string"}, "npm-run-all": {"type": "string"}}, "required": ["concurrently", "node-sass", "npm-run-all"]}}, "required": ["name", "version", "description", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "3d2p-web", "version" : "1.0.0", "description" : "The 3D2P website", "scripts" : {"dev" : "npx -c \"concurrently \\\"npm run dev:sass\\\" \\\"npm run dev:server\\\"\"", "dev:sass" : "npx node-sass -w ./wwwroot/sass/ -o ./wwwroot/css/", "dev:server" : "dotnet watch run", "build" : "npx npm-run-all build:*", "build:app" : "npm run --prefix ../app build:web", "build:sass" : "npx node-sass ./wwwroot/sass/ -o ./wwwroot/css/ --output-style compressed", "build:server" : "dotnet publish -c Release"}, "repository" : {"type" : "git", "url" : "git+https://github.com/geaz/3D2P-3DPrintProject.git"}, "author" : "Gerrit 'Geaz' Gazic", "license" : "MIT", "bugs" : {"url" : "https://github.com/geaz/3D2P-3DPrintProject/issues"}, "homepage" : "https://github.com/geaz/3D2P-3DPrintProject#readme", "devDependencies" : {"concurrently" : "5.1.0", "node-sass" : "4.14.1", "npm-run-all" : "4.1.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "dev:sass": {"type": "string"}, "dev:server": {"type": "string"}, "build": {"type": "string"}, "build:app": {"type": "string"}, "build:sass": {"type": "string"}, "build:server": {"type": "string"}}, "required": ["dev", "dev:sass", "dev:server", "build", "build:app", "build:sass", "build:server"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"concurrently": {"type": "string"}, "node-sass": {"type": "string"}, "npm-run-all": {"type": "string"}}, "required": ["concurrently", "node-sass", "npm-run-all"]}}, "required": ["name", "version", "description", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"target": {"type": "string"}, "sourceMap": {"type": "boolean"}, "module": {"type": "string"}}, "required": ["target", "sourceMap", "module"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : "./tsconfig.base.json", "compilerOptions" : {"target" : "es5", "sourceMap" : false, "module" : "esnext"}, "files" : ["declarations.d.ts", "src/entry.dev.ts"]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"target": {"type": "string"}, "sourceMap": {"type": "boolean"}, "module": {"type": "string"}}, "required": ["target", "sourceMap", "module"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"extends": {"type": "string"}, "globals": {"type": "object", "properties": {"Promise": {"type": "boolean"}, "amd": {"type": "boolean"}, "Set": {"type": "boolean"}, "Map": {"type": "boolean"}}, "required": ["Promise", "amd", "Set", "Map"]}}, "required": ["extends", "globals"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : "brightspace/polymer-3-config", "globals" : {"Promise" : false, "amd" : true, "Set" : true, "Map" : true}} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "globals": {"type": "object", "properties": {"Promise": {"type": "boolean"}, "amd": {"type": "boolean"}, "Set": {"type": "boolean"}, "Map": {"type": "boolean"}}, "required": ["Promise", "amd", "Set", "Map"]}}, "required": ["extends", "globals"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "ConnectionStrings": {"type": "object", "properties": {"NuGetMustHaves": {"type": "string"}}, "required": ["NuGetMustHaves"]}, "Sentry": {"type": "object", "properties": {"Dsn": {"type": "string"}}, "required": ["Dsn"]}}, "required": ["Logging", "AllowedHosts", "ConnectionStrings", "Sentry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Logging" : {"LogLevel" : {"Default" : "Warning"}}, "AllowedHosts" : "*", "ConnectionStrings" : {"NuGetMustHaves" : ""}, "Sentry" : {"Dsn" : "https://c05f3dc2309645be86735b9dca0be03a@sentry.io/1266317"}} | json_instruct | {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "ConnectionStrings": {"type": "object", "properties": {"NuGetMustHaves": {"type": "string"}}, "required": ["NuGetMustHaves"]}, "Sentry": {"type": "object", "properties": {"Dsn": {"type": "string"}}, "required": ["Dsn"]}}, "required": ["Logging", "AllowedHosts", "ConnectionStrings", "Sentry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "seatbid": {"type": "array", "items": {"type": "object", "properties": {"bid": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "impid": {"type": "string"}, "price": {"type": "integer"}, "adomain": {"type": "array", "items": {}}, "crid": {"type": "string"}, "ext": {"type": "object", "properties": {"prebid": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "origbidcpm": {"type": "integer"}, "origbidcur": {"type": "string"}}, "required": ["prebid", "origbidcpm", "origbidcur"]}}, "required": ["id", "impid", "price", "adomain", "crid", "ext"]}}, "seat": {"type": "string"}, "group": {"type": "integer"}}, "required": ["bid", "seat", "group"]}}, "cur": {"type": "string"}, "ext": {"type": "object", "properties": {"responsetimemillis": {"type": "object", "properties": {"interactiveoffers": {"type": "string"}}, "required": ["interactiveoffers"]}, "tmaxrequest": {"type": "integer"}, "prebid": {"type": "object", "properties": {"auctiontimestamp": {"type": "integer"}}, "required": ["auctiontimestamp"]}}, "required": ["responsetimemillis", "tmaxrequest", "prebid"]}}, "required": ["id", "seatbid", "cur", "ext"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "request_id", "seatbid" : [{"bid" : [{"id" : "bid_id", "impid" : "imp_id", "price" : 10, "adomain" : [], "crid" : "crid", "ext" : {"prebid" : {"type" : "banner"}, "origbidcpm" : 10, "origbidcur" : "USD"}}], "seat" : "interactiveoffers", "group" : 0}], "cur" : "USD", "ext" : {"responsetimemillis" : {"interactiveoffers" : "{{ interactiveoffers.response_time_ms }}"}, "tmaxrequest" : 5000, "prebid" : {"auctiontimestamp" : 0}}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "seatbid": {"type": "array", "items": {"type": "object", "properties": {"bid": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "impid": {"type": "string"}, "price": {"type": "integer"}, "adomain": {"type": "array", "items": {}}, "crid": {"type": "string"}, "ext": {"type": "object", "properties": {"prebid": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "origbidcpm": {"type": "integer"}, "origbidcur": {"type": "string"}}, "required": ["prebid", "origbidcpm", "origbidcur"]}}, "required": ["id", "impid", "price", "adomain", "crid", "ext"]}}, "seat": {"type": "string"}, "group": {"type": "integer"}}, "required": ["bid", "seat", "group"]}}, "cur": {"type": "string"}, "ext": {"type": "object", "properties": {"responsetimemillis": {"type": "object", "properties": {"interactiveoffers": {"type": "string"}}, "required": ["interactiveoffers"]}, "tmaxrequest": {"type": "integer"}, "prebid": {"type": "object", "properties": {"auctiontimestamp": {"type": "integer"}}, "required": ["auctiontimestamp"]}}, "required": ["responsetimemillis", "tmaxrequest", "prebid"]}}, "required": ["id", "seatbid", "cur", "ext"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xde37fbca32a6e6a39f682c0949adae813f3517f9", "tool" : "osiris", "start" : 1564625669.5895808, "end" : 1564625723.4610097, "duration" : 53.87142896652222, "analysis" : [{"errors" : [{"line" : 171, "column" : 6, "message" : "overflow_bugs"}, {"line" : 172, "column" : 6, "message" : "overflow_bugs"}], "file" : "/unique_chucks/15/0xde37fbca32a6e6a39f682c0949adae813f3517f9.sol", "name" : "EBCoin"}, {"errors" : [], "file" : "/unique_chucks/15/0xde37fbca32a6e6a39f682c0949adae813f3517f9.sol", "name" : "Owned"}, {"errors" : [], "file" : "/unique_chucks/15/0xde37fbca32a6e6a39f682c0949adae813f3517f9.sol", "name" : "SafeMath"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", "outline", "kjv_def", "lemma", "frequency", "strongs_def", "xlit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"derivation" : "from the same as H3564 (\u05db\u05bc\u05d5\u05bc\u05e8);", "pron" : "kore", "outline" : "<ol><li> kor, a measure (usually dry)<ol><li> a dry or liquid measure equal to 10 ephahs or baths<ol><li> a dry measure containing 6.25 bushels (220 l)</li><li> a liquid measure of 58 gallons (263 l)</li></ol></li></ol></li></ol>", "kjv_def" : "cor, measure. Aramaic the same.", "lemma" : "\u05db\u05bc\u05b9\u05e8", "frequency" : 9, "strongs_def" : "properly, a deep round vessel, i.e. (specifically) a cor or measure for things dry", "xlit" : "k\u00f4r"} | json_instruct | {"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", "outline", "kjv_def", "lemma", "frequency", "strongs_def", "xlit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "api": {"type": "string"}, "scss-compile": {"type": "string"}, "watch": {"type": "string"}}, "required": ["start", "api", "scss-compile", "watch"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "json-server": {"type": "string"}, "node-sass": {"type": "string"}, "scss-compile": {"type": "string"}}, "required": ["express", "json-server", "node-sass", "scss-compile"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "f-secure_homework", "version" : "0.0.1", "description" : "F-Secure Homework", "main" : "server.js", "scripts" : {"start" : "node server.js", "api" : "json-server --watch db.json", "scss-compile" : "node-sass -rw myApp/styles/scss -o myApp/styles/css", "watch" : "npm run scss-compile"}, "author" : "TomaySOFT", "license" : "ISC", "devDependencies" : {"typescript" : "^3.5.2"}, "dependencies" : {"express" : "*", "json-server" : "^0.14.0", "node-sass" : "^4.12.0", "scss-compile" : "^0.1.7"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "api": {"type": "string"}, "scss-compile": {"type": "string"}, "watch": {"type": "string"}}, "required": ["start", "api", "scss-compile", "watch"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "json-server": {"type": "string"}, "node-sass": {"type": "string"}, "scss-compile": {"type": "string"}}, "required": ["express", "json-server", "node-sass", "scss-compile"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101828477, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "281e77b343a46565a184ccc376e465ea", "wof:id" : 101828477, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.38502945293254, 49.19655013842879, 2.41405362775077, 49.22167160719516], "geometry" : {"coordinates" : [[[2.40663025278855, 49.22090350200187], [2.41405362775077, 49.20424408028362], [2.40468362271025, 49.2036085551768], [2.40551698134925, 49.19824523438558], [2.41069862104007, 49.19859673942256], [2.40895160023206, 49.1966715970197], [2.4071604780334, 49.19655013842879], [2.40702163811716, 49.19744402960004], [2.40429007090029, 49.19725864519177], [2.40387336580835, 49.19994030379962], [2.4025075157017, 49.19984758085297], [2.40222963139718, 49.20163534666875], [2.40086373695573, 49.20154260322471], [2.40072476071686, 49.20243648337714], [2.39935884646331, 49.20234372138049], [2.39921983932311, 49.20323759904716], [2.39785390525787, 49.20314481849732], [2.39771486721367, 49.20403869367726], [2.3865395531621, 49.2032786430097], [2.38502945293254, 49.21220949203712], [2.39085936738331, 49.21260604181055], [2.39058094821735, 49.21439376416953], [2.39194718232579, 49.21448663647845], [2.39125114530435, 49.21895594267806], [2.39944938533375, 49.21951288614844], [2.39931030603492, 49.22040675746143], [2.40340956339105, 49.22068501076092], [2.40327055135253, 49.2215788873765], [2.40463700445258, 49.22167160719516], [2.40477599194179, 49.22077772863344], [2.40663025278855, 49.22090350200187]], [[2.40287722508037, 49.21522901694954], [2.40246021102882, 49.21791064903675], [2.39836118873461, 49.21763236342196], [2.39877842366673, 49.21495074885792], [2.40287722508037, 49.21522901694954]], [[2.409175626592, 49.21023648309171], [2.40875902179124, 49.21291814822416], [2.40466038467105, 49.21264009698115], [2.40507721030497, 49.2099584493551], [2.409175626592, 49.21023648309171]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"service_name": {"type": "string"}, "service_description": {"type": "string"}, "service_type": {"type": "string"}, "authors": {"type": "string"}, "creation_date": {"type": "string"}, "version": {"type": "string"}, "vendor_url": {"type": "string"}, "SiLA_standard_feature_list": {"type": "array", "items": {"type": "string"}}, "SiLA_feature_list": {"type": "array", "items": {"type": "string"}}, "communication_port": {"type": "string"}, "IP_address": {"type": "string"}, "hostname": {"type": "string"}}, "required": ["service_name", "service_description", "service_type", "authors", "creation_date", "version", "vendor_url", "SiLA_standard_feature_list", "SiLA_feature_list", "communication_port", "IP_address", "hostname"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"service_name" : "PandaController", "service_description" : "A SiLA 2 service to control a Panda robot arm from Franka Emika.", "service_type" : "PandaRobotController", "authors" : "Florian Bauer <florian.bauer.dev@gmail.com>", "creation_date" : "2021-01-07", "version" : "0.0.1", "vendor_url" : "https://www.cs7.tf.fau.de", "SiLA_standard_feature_list" : ["SiLAService"], "SiLA_feature_list" : ["SiteManager", "PlateTypeManager", "RobotController"], "communication_port" : "50054", "IP_address" : "127.0.0.1", "hostname" : "localhost"} | json_instruct | {"type": "object", "properties": {"service_name": {"type": "string"}, "service_description": {"type": "string"}, "service_type": {"type": "string"}, "authors": {"type": "string"}, "creation_date": {"type": "string"}, "version": {"type": "string"}, "vendor_url": {"type": "string"}, "SiLA_standard_feature_list": {"type": "array", "items": {"type": "string"}}, "SiLA_feature_list": {"type": "array", "items": {"type": "string"}}, "communication_port": {"type": "string"}, "IP_address": {"type": "string"}, "hostname": {"type": "string"}}, "required": ["service_name", "service_description", "service_type", "authors", "creation_date", "version", "vendor_url", "SiLA_standard_feature_list", "SiLA_feature_list", "communication_port", "IP_address", "hostname"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "16\u82f1\u5bf8P90\u67aa\u7ba1 5.7x28", "ShortName" : "16\u82f1\u5bf8P90 5.7x28", "Description" : "\u9002\u7528\u4e8eP90\u76845.7x28\u5f39407\u6beb\u7c73\u67aa\u7ba1\u3002"} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"track" : "javascript", "exercise" : "rna-transcription", "id" : "afb43141f0714a6ab1f3b0cbf3daa02b", "url" : "https://exercism.io/my/solutions/afb43141f0714a6ab1f3b0cbf3daa02b", "handle" : "IanDCarroll", "is_requester" : true, "auto_approve" : false} | json_instruct | {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"cordova_version": {"type": "string"}, "framework_version": {"type": "string"}, "xcode_version": {"type": "string"}}, "required": ["cordova_version", "framework_version", "xcode_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cordova_version" : "7.1", "framework_version" : "3.5", "xcode_version" : "9"} | json_instruct | {"type": "object", "properties": {"cordova_version": {"type": "string"}, "framework_version": {"type": "string"}, "xcode_version": {"type": "string"}}, "required": ["cordova_version", "framework_version", "xcode_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"accountLinkingWhitelistedDomains": {"type": "null"}, "asin": {"type": "string"}, "averageRating": {"type": "integer"}, "canDisable": {"type": "boolean"}, "capabilities": {"type": "null"}, "category": {"type": "null"}, "description": {"type": "string"}, "enablement": {"type": "null"}, "exampleInteractions": {"type": "array", "items": {"type": "string"}}, "firstReleaseDate": {"type": "number"}, "homepageLinkText": {"type": "null"}, "homepageLinkUrl": {"type": "null"}, "id": {"type": "string"}, "imageAltText": {"type": "string"}, "imageUrl": {"type": "string"}, "inAppPurchasingSupported": {"type": "boolean"}, "launchPhrase": {"type": "string"}, "name": {"type": "string"}, "numberOfReviews": {"type": "integer"}, "pamsPartnerId": {"type": "null"}, "permissions": {"type": "null"}, "privacyPolicyUrl": {"type": "null"}, "shortDescription": {"type": "string"}, "skillTypes": {"type": "null"}, "stage": {"type": "string"}, "termsOfUseUrl": {"type": "null"}, "vendorId": {"type": "string"}, "vendorName": {"type": "string"}}, "required": ["accountLinkingWhitelistedDomains", "asin", "averageRating", "canDisable", "capabilities", "category", "description", "enablement", "exampleInteractions", "firstReleaseDate", "homepageLinkText", "homepageLinkUrl", "id", "imageAltText", "imageUrl", "inAppPurchasingSupported", "launchPhrase", "name", "numberOfReviews", "pamsPartnerId", "permissions", "privacyPolicyUrl", "shortDescription", "skillTypes", "stage", "termsOfUseUrl", "vendorId", "vendorName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"accountLinkingWhitelistedDomains" : null, "asin" : "B01LWNXENU", "averageRating" : 0, "canDisable" : true, "capabilities" : null, "category" : null, "description" : "This skill gives some facts about cockatiels both as pets and in the wild.Fun app for all the cockatiel lovers and soon to be cockatiel lovers out there", "enablement" : null, "exampleInteractions" : ["Alexa, ask Cockatiel Facts to tell me a fact", "Alexa, tell Cockatiel Facts to tell me a cockatiel fact", "Alexa, ask Cockatiel Facts to say a cockatiel fact"], "firstReleaseDate" : 1475476965.069, "homepageLinkText" : null, "homepageLinkUrl" : null, "id" : "amzn1.ask.skill.401a06e3-7290-4238-ae26-811ae74bf0dc", "imageAltText" : "Cockatiel Facts icon", "imageUrl" : "https://github.com/dale3h/alexa-skills-list/raw/master/skills/B01LWNXENU/skill_icon", "inAppPurchasingSupported" : false, "launchPhrase" : "cockatiel facts", "name" : "Cockatiel Facts", "numberOfReviews" : 0, "pamsPartnerId" : null, "permissions" : null, "privacyPolicyUrl" : null, "shortDescription" : "This skill contains some known and lesser known facts about the wonderful cockatiels", "skillTypes" : null, "stage" : "live", "termsOfUseUrl" : null, "vendorId" : "M1CAJ861Y5JU5V", "vendorName" : "Vinayak Mankal"} | json_instruct | {"type": "object", "properties": {"accountLinkingWhitelistedDomains": {"type": "null"}, "asin": {"type": "string"}, "averageRating": {"type": "integer"}, "canDisable": {"type": "boolean"}, "capabilities": {"type": "null"}, "category": {"type": "null"}, "description": {"type": "string"}, "enablement": {"type": "null"}, "exampleInteractions": {"type": "array", "items": {"type": "string"}}, "firstReleaseDate": {"type": "number"}, "homepageLinkText": {"type": "null"}, "homepageLinkUrl": {"type": "null"}, "id": {"type": "string"}, "imageAltText": {"type": "string"}, "imageUrl": {"type": "string"}, "inAppPurchasingSupported": {"type": "boolean"}, "launchPhrase": {"type": "string"}, "name": {"type": "string"}, "numberOfReviews": {"type": "integer"}, "pamsPartnerId": {"type": "null"}, "permissions": {"type": "null"}, "privacyPolicyUrl": {"type": "null"}, "shortDescription": {"type": "string"}, "skillTypes": {"type": "null"}, "stage": {"type": "string"}, "termsOfUseUrl": {"type": "null"}, "vendorId": {"type": "string"}, "vendorName": {"type": "string"}}, "required": ["accountLinkingWhitelistedDomains", "asin", "averageRating", "canDisable", "capabilities", "category", "description", "enablement", "exampleInteractions", "firstReleaseDate", "homepageLinkText", "homepageLinkUrl", "id", "imageAltText", "imageUrl", "inAppPurchasingSupported", "launchPhrase", "name", "numberOfReviews", "pamsPartnerId", "permissions", "privacyPolicyUrl", "shortDescription", "skillTypes", "stage", "termsOfUseUrl", "vendorId", "vendorName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}, "properties": {"type": "object", "properties": {"FIPS": {"type": "string"}, "CNTY_FIPS": {"type": "string"}, "STATE_FIPS": {"type": "string"}, "STATE_NAME": {"type": "string"}, "NAME": {"type": "string"}}, "required": ["FIPS", "CNTY_FIPS", "STATE_FIPS", "STATE_NAME", "NAME"]}, "type": {"type": "string"}}, "required": ["geometry", "properties", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"coordinates" : [[[-76.74473627459679, 36.23407363945698], [-76.98036969357753, 36.23039239261074], [-76.99443117482541, 36.235736704534936], [-77.12975788276273, 36.2336192662271], [-77.21735379927844, 36.24113779368635], [-77.14164727244116, 36.417218117798114], [-77.1390080120441, 36.456631045432005], [-77.1270144962464, 36.47086348001001], [-77.08296132538828, 36.470249394926554], [-77.07499624710911, 36.48366933495008], [-77.09181966071941, 36.50767107889267], [-77.15410749083013, 36.52640476645712], [-77.17704201975633, 36.55643753667065], [-76.92381636341604, 36.55429797803798], [-76.9081070474778, 36.50443674549464], [-76.94545309754633, 36.45911473829864], [-76.95335663262667, 36.41938518437573], [-76.94319366436642, 36.40188365588923], [-76.92376088128981, 36.39259881790143], [-76.7410223912057, 36.31532190341274], [-76.70716850323947, 36.266288344007435], [-76.74473627459679, 36.23407363945698]]], "type" : "Polygon"}, "properties" : {"FIPS" : "37091", "CNTY_FIPS" : "091", "STATE_FIPS" : "37", "STATE_NAME" : "North Carolina", "NAME" : "Hertford"}, "type" : "Feature"} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}, "properties": {"type": "object", "properties": {"FIPS": {"type": "string"}, "CNTY_FIPS": {"type": "string"}, "STATE_FIPS": {"type": "string"}, "STATE_NAME": {"type": "string"}, "NAME": {"type": "string"}}, "required": ["FIPS", "CNTY_FIPS", "STATE_FIPS", "STATE_NAME", "NAME"]}, "type": {"type": "string"}}, "required": ["geometry", "properties", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {"type": "string"}, "kemasan": {"type": "string"}, "dosis": {"type": "string"}, "penyajian": {"type": "string"}, "pabrik": {"type": "string"}, "id": {"type": "string"}, "category_id": {"type": "string"}}, "required": ["name", "harga", "golongan", "kandungan", "indikasi", "kontraindikasi", "perhatian", "efeksamping", "indeksamanwanitahamil", "kemasan", "dosis", "penyajian", "pabrik", "id", "category_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "TERRAMYCIN VIAL 50 MG", "harga" : " Rp. 11.977/ kemasan", "golongan" : "http://medicastore.com/image_banner/obat_keras_dan_psikotropika.gif", "kandungan" : "Oxytetracicline / Oksitetrasiklin HCl.", "indikasi" : "Infeksi pernafasan, saluran kemih dan kelamin, kulit dan jaringan lunak, serebrospinal, mata, saluran pencernaan, infeksi sistemik dan pembedahan.", "kontraindikasi" : "Hipersensitif terhadap Tetrasiklin. Hamil. Anak berusia kurang dari 8 tahun.", "perhatian" : "Kerusakan ginjal.Menyusui.Interaksi obat : - mengganggu aksi bakterisidal Penisilin.- efek dilemahkan oleh susu, antasida, preparat/sediaan Fe.- antikoagulan.- Metoksifluran.", "efeksamping" : "Hipoplasia email, superinfeksi, gangguan saluran pencernaan, ruam eritematosa dan makulopapular, reaksi hipersensitifitas. Fotosensitifitas.", "indeksamanwanitahamil" : "D: Positif ada kejadian yang berbahaya pada janin manusia, tetapi keuntungan dari penggunaan oleh wanita hamil mungkin dapat diterima walaupun berisiko. (Misalnya jika obat digunakan untuk situasi menyelamatkan nyawa atau penyakit yang serius dimana obat yang lebih aman tidak dapat digunakan atau tidak efektif).", "kemasan" : "Vial 50 mg x 10 mL x 10's", "dosis" : "Dewasa : 100 mg tiap 8-12 jam. Anak berusia lebih dari 8 tahun : 12-25 mg/kg berat badan/hari dalam dosis terbagi yang diberikan tiap 8-12 jam.", "penyajian" : "Tak ada pilihan", "pabrik" : "Pfizer.", "id" : "5868", "category_id" : "7"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {"type": "string"}, "kemasan": {"type": "string"}, "dosis": {"type": "string"}, "penyajian": {"type": "string"}, "pabrik": {"type": "string"}, "id": {"type": "string"}, "category_id": {"type": "string"}}, "required": ["name", "harga", "golongan", "kandungan", "indikasi", "kontraindikasi", "perhatian", "efeksamping", "indeksamanwanitahamil", "kemasan", "dosis", "penyajian", "pabrik", "id", "category_id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Name": {"type": "string"}, "Objects": {"type": "array", "items": {"type": "object", "properties": {"Length": {"type": "integer"}, "Height": {"type": "integer"}, "Depth": {"type": "integer"}, "Stock": {"type": "null"}, "Cost": {"type": "integer"}}, "required": ["Length", "Height", "Depth", "Stock", "Cost"]}}, "Items": {"type": "array", "items": {"type": "object", "properties": {"Length": {"type": "integer"}, "C1_Length": {"type": "integer"}, "Height": {"type": "integer"}, "C1_Height": {"type": "integer"}, "Depth": {"type": "integer"}, "C1_Depth": {"type": "integer"}, "Demand": {"type": "integer"}, "DemandMax": {"type": "null"}, "Value": {"type": "integer"}}, "required": ["Length", "C1_Length", "Height", "C1_Height", "Depth", "C1_Depth", "Demand", "DemandMax", "Value"]}}}, "required": ["Name", "Objects", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "97", "Objects" : [{"Length" : 587, "Height" : 233, "Depth" : 220, "Stock" : null, "Cost" : 30089620}], "Items" : [{"Length" : 74, "C1_Length" : 0, "Height" : 32, "C1_Height" : 1, "Depth" : 60, "C1_Depth" : 1, "Demand" : 32, "DemandMax" : null, "Value" : 142080}, {"Length" : 100, "C1_Length" : 0, "Height" : 43, "C1_Height" : 1, "Depth" : 50, "C1_Depth" : 1, "Demand" : 33, "DemandMax" : null, "Value" : 215000}, {"Length" : 95, "C1_Length" : 0, "Height" : 42, "C1_Height" : 1, "Depth" : 74, "C1_Depth" : 1, "Demand" : 37, "DemandMax" : null, "Value" : 295260}, {"Length" : 95, "C1_Length" : 0, "Height" : 30, "C1_Height" : 1, "Depth" : 70, "C1_Depth" : 0, "Demand" : 31, "DemandMax" : null, "Value" : 199500}, {"Length" : 45, "C1_Length" : 1, "Height" : 24, "C1_Height" : 1, "Depth" : 37, "C1_Depth" : 1, "Demand" : 32, "DemandMax" : null, "Value" : 39960}]} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "Objects": {"type": "array", "items": {"type": "object", "properties": {"Length": {"type": "integer"}, "Height": {"type": "integer"}, "Depth": {"type": "integer"}, "Stock": {"type": "null"}, "Cost": {"type": "integer"}}, "required": ["Length", "Height", "Depth", "Stock", "Cost"]}}, "Items": {"type": "array", "items": {"type": "object", "properties": {"Length": {"type": "integer"}, "C1_Length": {"type": "integer"}, "Height": {"type": "integer"}, "C1_Height": {"type": "integer"}, "Depth": {"type": "integer"}, "C1_Depth": {"type": "integer"}, "Demand": {"type": "integer"}, "DemandMax": {"type": "null"}, "Value": {"type": "integer"}}, "required": ["Length", "C1_Length", "Height", "C1_Height", "Depth", "C1_Depth", "Demand", "DemandMax", "Value"]}}}, "required": ["Name", "Objects", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"deliverable": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-type": {"type": "string"}, "site-plan-url": {"type": "string"}, "name": {"type": "string"}, "planning-permission-date": {"type": "string"}, "start-date": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "site-address": {"type": "string"}, "notes": {"type": "string"}, "ownership-status": {"type": "string"}, "point": {"type": "string"}, "site": {"type": "string"}, "hectares": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["deliverable", "minimum-net-dwellings", "planning-permission-status", "organisation", "planning-permission-type", "site-plan-url", "name", "planning-permission-date", "start-date", "maximum-net-dwellings", "site-address", "notes", "ownership-status", "point", "site", "hectares", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.068694, 51.303807]}, "properties" : {"deliverable" : "yes", "minimum-net-dwellings" : "1", "planning-permission-status" : "permissioned", "organisation" : "local-authority-eng:TAN", "planning-permission-type" : "full planning permission", "site-plan-url" : "https://www.tandridge.gov.uk/Planning-and-building/Planning-strategies-and-policies/Local-Plan-2033-emerging-planning-policies/Local-Plan-2033/Housing-and-Economic-Land-Availability-Assessment-HELAA-and-Brownfield-Register", "name" : "2014/1378", "planning-permission-date" : "2014-10-27", "start-date" : "2017-10-23", "maximum-net-dwellings" : "1", "site-address" : "94 Westhall Road, Warlingham CR6 9HB", "notes" : "Demolition of existing dwelling and outbuildings. erection of 2 detached dwellings with garaging, formation of new access from westhall road, closure of existing access and associated landscaping.. http://www.cartogold.co.uk/tandridgelocalplan/", "ownership-status" : "not owned by a public authority", "point" : "POINT(-0.068694 51.303807)", "site" : "2014/1378", "hectares" : "0.3", "slug" : "/brownfield-land/local-authority-eng/TAN/2014-1378", "entity" : 496225, "entry-date" : "2017-10-23"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"deliverable": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "planning-permission-status": {"type": "string"}, "organisation": {"type": "string"}, "planning-permission-type": {"type": "string"}, "site-plan-url": {"type": "string"}, "name": {"type": "string"}, "planning-permission-date": {"type": "string"}, "start-date": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "site-address": {"type": "string"}, "notes": {"type": "string"}, "ownership-status": {"type": "string"}, "point": {"type": "string"}, "site": {"type": "string"}, "hectares": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["deliverable", "minimum-net-dwellings", "planning-permission-status", "organisation", "planning-permission-type", "site-plan-url", "name", "planning-permission-date", "start-date", "maximum-net-dwellings", "site-address", "notes", "ownership-status", "point", "site", "hectares", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"CIDADE": {"type": "string"}, "IBGE": {"type": "string"}, "ESTADO": {"type": "string"}, "ID": {"type": "string"}}, "required": ["CIDADE", "IBGE", "ESTADO", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"CIDADE" : "Lajeado", "IBGE" : "4311403", "ESTADO" : "Rio Grande do Sul", "ID" : "43"} | json_instruct | {"type": "object", "properties": {"CIDADE": {"type": "string"}, "IBGE": {"type": "string"}, "ESTADO": {"type": "string"}, "ID": {"type": "string"}}, "required": ["CIDADE", "IBGE", "ESTADO", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"country": {"type": "string"}, "github": {"type": "string"}, "home": {"type": "string"}, "name": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["country", "github", "home", "name", "twitter"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"country" : "Beijing, China", "github" : "pmq20", "home" : "http://www.minqi-pan.com/", "name" : "Minqi Pan", "twitter" : "psvr"} | json_instruct | {"type": "object", "properties": {"country": {"type": "string"}, "github": {"type": "string"}, "home": {"type": "string"}, "name": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["country", "github", "home", "name", "twitter"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"key": {"type": "string"}, "title": {"type": "string"}, "subtitle": {"type": "string"}, "publishers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "isbn_10": {"type": "string"}, "isbn_13": {"type": "null"}, "publish_date": {"type": "string"}, "subjects": {"type": "array", "items": {"type": "string"}}}, "required": ["key", "title", "subtitle", "publishers", "authors", "isbn_10", "isbn_13", "publish_date", "subjects"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"key" : "/books/OL708331M", "title" : "Ethnic cleavages and conflict", "subtitle" : "the sources of national cohesion and disintegration : the case of Yugoslavia", "publishers" : ["Ashgate"], "authors" : ["Gojko Vuckovic"], "isbn_10" : "1859726402", "isbn_13" : null, "publish_date" : "1997", "subjects" : ["Nationalism -- Yugoslavia.", "Yugoslavia -- Ethnic relations -- Political aspects.", "Yugoslavia -- Politics and government."]} | json_instruct | {"type": "object", "properties": {"key": {"type": "string"}, "title": {"type": "string"}, "subtitle": {"type": "string"}, "publishers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "isbn_10": {"type": "string"}, "isbn_13": {"type": "null"}, "publish_date": {"type": "string"}, "subjects": {"type": "array", "items": {"type": "string"}}}, "required": ["key", "title", "subtitle", "publishers", "authors", "isbn_10", "isbn_13", "publish_date", "subjects"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1977, 76], [1978, 37], [1979, 22], [1980, 10], [1981, 13], [1982, 11], [1983, 6], [1984, 7], [1985, 5], [1988, 14], [1989, 12], [1990, 13], [1991, 13], [1992, 9], [1993, 7], [1994, 12], [1995, 17], [1996, 12], [1997, 19], [1998, 19], [1999, 18], [2000, 16], [2001, 12], [2002, 23], [2003, 18], [2004, 21], [2005, 30], [2006, 22], [2007, 13], [2008, 21], [2009, 28], [2010, 13], [2011, 15], [2012, 20], [2013, 18], [2014, 22]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-cli": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-jsbeautifier": {"type": "string"}, "grunt-string-replace": {"type": "string"}, "grunt-ts": {"type": "string"}, "grunt-tslint": {"type": "string"}}, "required": ["grunt", "grunt-cli", "grunt-contrib-concat", "grunt-jsbeautifier", "grunt-string-replace", "grunt-ts", "grunt-tslint"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "version", "repository", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "kurahenPremium", "version" : "1.5.1", "repository" : {"type" : "git", "url" : "https://github.com/Kurahen-Premium/Kurahen-Premium.git"}, "devDependencies" : {"grunt" : "^0.4.5", "grunt-cli" : "^0.1.13", "grunt-contrib-concat" : "^0.5.0", "grunt-jsbeautifier" : "^0.2.7", "grunt-string-replace" : "^1.0.0", "grunt-ts" : "^2.0.0", "grunt-tslint" : "^1.0.1"}, "scripts" : {"test" : "grunt --verbose"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-cli": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-jsbeautifier": {"type": "string"}, "grunt-string-replace": {"type": "string"}, "grunt-ts": {"type": "string"}, "grunt-tslint": {"type": "string"}}, "required": ["grunt", "grunt-cli", "grunt-contrib-concat", "grunt-jsbeautifier", "grunt-string-replace", "grunt-ts", "grunt-tslint"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "version", "repository", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"age=0": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=1": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=2": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=3": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=4": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=5": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=6": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=7": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["age=0", "age=1", "age=2", "age=3", "age=4", "age=5", "age=6", "age=7"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"age=0" : {"model" : "photosynthesis:block/scallion_crop_stage0"}, "age=1" : {"model" : "photosynthesis:block/scallion_crop_stage1"}, "age=2" : {"model" : "photosynthesis:block/scallion_crop_stage1"}, "age=3" : {"model" : "photosynthesis:block/scallion_crop_stage2"}, "age=4" : {"model" : "photosynthesis:block/scallion_crop_stage2"}, "age=5" : {"model" : "photosynthesis:block/scallion_crop_stage3"}, "age=6" : {"model" : "photosynthesis:block/scallion_crop_stage3"}, "age=7" : {"model" : "photosynthesis:block/scallion_crop_stage4"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"age=0": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=1": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=2": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=3": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=4": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=5": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=6": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=7": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["age=0", "age=1", "age=2", "age=3", "age=4", "age=5", "age=6", "age=7"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:ar": {"type": "string"}, "name:en": {"type": "string"}, "name:it": {"type": "string"}, "alt_name:ar": {"type": "string"}, "alt_name:en": {"type": "string"}, "alt_name:it": {"type": "string"}}, "required": ["name:ar", "name:en", "name:it", "alt_name:ar", "alt_name:en", "alt_name:it"]}}, "required": ["localname", "official_name", "alltags"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "iso2", "admin_level", "osm_id", "countrylevel_id", "osm_data", "center_lat", "center_lon", "area_m2", "timezone"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[14.405, 35.892], [14.409, 35.891], [14.415, 35.884], [14.413, 35.883], [14.398, 35.888], [14.405, 35.892]]]}, "properties" : {"name" : "Mdina", "iso2" : "MT-29", "admin_level" : 8, "osm_id" : 7510549, "countrylevel_id" : "iso2:MT-29", "osm_data" : {"localname" : "L-Imdina", "official_name" : "", "alltags" : {"name:ar" : "\u0627\u0644\u0645\u062f\u064a\u0646\u0629", "name:en" : "Mdina", "name:it" : "Medina", "alt_name:ar" : "\u0645\u062f\u064a\u0646\u0629", "alt_name:en" : "Citt\u00e0 Notabile;Citt\u00e0 Vecchia Maleth;Melite;Melita", "alt_name:it" : "Citt\u00e0 Vecchia;Citt\u00e0 Notabile"}}, "center_lat" : 35.89, "center_lon" : 14.41, "area_m2" : 923654, "timezone" : "Europe/Malta"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:ar": {"type": "string"}, "name:en": {"type": "string"}, "name:it": {"type": "string"}, "alt_name:ar": {"type": "string"}, "alt_name:en": {"type": "string"}, "alt_name:it": {"type": "string"}}, "required": ["name:ar", "name:en", "name:it", "alt_name:ar", "alt_name:en", "alt_name:it"]}}, "required": ["localname", "official_name", "alltags"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "iso2", "admin_level", "osm_id", "countrylevel_id", "osm_data", "center_lat", "center_lon", "area_m2", "timezone"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 85791695, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "2c5bb52594ed269bd6d0fdb3d7a669ab", "wof:id" : 85791695, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [-1.57653808593992, 54.93282071184912, -1.55181884765739, 54.94607621990004], "geometry" : {"coordinates" : [[[-1.56555175780991, 54.94575320618613], [-1.56453505939299, 54.94469109336534], [-1.56450310304228, 54.94469727532304], [-1.56157351010256, 54.94396863758364], [-1.56005859374977, 54.94528742770022], [-1.55731201171977, 54.94528742770022], [-1.55456542968997, 54.94528742770022], [-1.55410530000324, 54.94528742770022], [-1.5536522624358, 54.94292111309996], [-1.55319570131809, 54.9405363942238], [-1.55275301871364, 54.93976569677518], [-1.55181884765739, 54.93895254646269], [-1.55181884765739, 54.93742249835883], [-1.55275230743194, 54.93661009469999], [-1.55433376482952, 54.93385747179668], [-1.55456542968997, 54.93377682675369], [-1.55456542968997, 54.93345430690003], [-1.5554919158582, 54.93345430690003], [-1.55731201171977, 54.93282071184912], [-1.55913210758118, 54.93345430690003], [-1.56005859374994, 54.93345430690003], [-1.56005859374994, 54.93377682675386], [-1.56367864290246, 54.93503700500914], [-1.56369175861374, 54.93503173647524], [-1.56555175780983, 54.93503173647524], [-1.56741881960096, 54.93503173647524], [-1.57104492187238, 54.93818783382521], [-1.57563170262867, 54.93818783382521], [-1.57653808593778, 54.93976569677518], [-1.57653808593841, 54.93976575870006], [-1.57653808593813, 54.94292105120023], [-1.57653808593992, 54.94292111309996], [-1.57104492187142, 54.94292111309996], [-1.57104492187142, 54.94607615800039], [-1.57104492186988, 54.94607621990004], [-1.56555175780991, 54.94607621990004], [-1.56555175780991, 54.94575320618613]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "lanifice", "definition" : "Anything made of wool. [Obs.] Bacon."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"PRODUCT_NAME": {"type": "string"}, "MANUFACTURER": {"type": "string"}, "BRANDNAME": {"type": "string"}, "WEIGHT": {"type": "string"}, "FIELD7": {"type": "string"}}, "required": ["PRODUCT_NAME", "MANUFACTURER", "BRANDNAME", "WEIGHT", "FIELD7"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PRODUCT_NAME" : "CHOCOLATE NAIRO ROLL", "MANUFACTURER" : "CALIBER FOODS LTD", "BRANDNAME" : "KENBAKE", "WEIGHT" : "POLYTHENE PAPER", "FIELD7" : "400G 1 PC"} | json_instruct | {"type": "object", "properties": {"PRODUCT_NAME": {"type": "string"}, "MANUFACTURER": {"type": "string"}, "BRANDNAME": {"type": "string"}, "WEIGHT": {"type": "string"}, "FIELD7": {"type": "string"}}, "required": ["PRODUCT_NAME", "MANUFACTURER", "BRANDNAME", "WEIGHT", "FIELD7"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vertices" : [[8, 11], [33, 15], [25, 35], [24, 33], [44, 32], [16, 13], [33, 12], [26, 35], [22, 32], [11, 17], [0, 37], [6, 17]]} | json_instruct | {"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x3485b9566097ad656c70d6ebbd1cd044e2e72d05", "tool" : "mythril", "start" : 1563541595.034266, "end" : 1563541600.6136806, "duration" : 5.57941460609436, "analysis" : {"error" : null, "issues" : [], "success" : true}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}, "s": {"type": "array", "items": {"type": "string"}}, "r": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e", "s", "r"]}}}, "required": ["d"]}}}, "required": ["t", "h"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "apek", "h" : [{"d" : [{"f" : "\u7528\u624b\u3001\u5de5\u5177\u6572\u6253\u3001\u6253\u788e\u3002", "e" : ["\ufff9`A~`p~`e~`k~`e~`n~ `ko~ `'ongcoy~.\ufffa\ufffb\u628a\u78d0\u77f3\u6572\u6253\u3002"], "s" : ["`pekpek~", "`ti'ti'~"], "r" : ["`miapek~"]}]}]} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}, "s": {"type": "array", "items": {"type": "string"}}, "r": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e", "s", "r"]}}}, "required": ["d"]}}}, "required": ["t", "h"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"revertResize": {"type": "null"}}, "required": ["revertResize"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"revertResize" : null} | json_instruct | {"type": "object", "properties": {"revertResize": {"type": "null"}}, "required": ["revertResize"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "watch": {"type": "string"}, "build": {"type": "string"}, "precommit": {"type": "string"}}, "required": ["test", "watch", "build", "precommit"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"browserify": {"type": "string"}, "git-pre-commit": {"type": "string"}, "live-server": {"type": "string"}, "solved": {"type": "string"}, "tsify": {"type": "string"}, "typescript": {"type": "string"}, "watchify": {"type": "string"}}, "required": ["browserify", "git-pre-commit", "live-server", "solved", "tsify", "typescript", "watchify"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "slitherlink-editor", "version" : "0.0.1", "description" : "Uses `solved` and some baremetal html to make it easier to author slitherlink puzzles", "main" : "dist/index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "watch" : "node build.js watch", "build" : "node build.js", "precommit" : "node build.js && git add ./dist -f"}, "repository" : {"type" : "git", "url" : "git+https://github.com/weswigham/slitherlink-editor.git"}, "keywords" : ["slitherlink"], "author" : "Wesley Wigham (weswigham)", "license" : "MIT", "bugs" : {"url" : "https://github.com/weswigham/slitherlink-editor/issues"}, "homepage" : "https://github.com/weswigham/slitherlink-editor#readme", "devDependencies" : {"browserify" : "^14.1.0", "git-pre-commit" : "^2.1.3", "live-server" : "^1.2.0", "solved" : "*", "tsify" : "^3.0.1", "typescript" : "^2.2.1", "watchify" : "^3.9.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "watch": {"type": "string"}, "build": {"type": "string"}, "precommit": {"type": "string"}}, "required": ["test", "watch", "build", "precommit"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"browserify": {"type": "string"}, "git-pre-commit": {"type": "string"}, "live-server": {"type": "string"}, "solved": {"type": "string"}, "tsify": {"type": "string"}, "typescript": {"type": "string"}, "watchify": {"type": "string"}}, "required": ["browserify", "git-pre-commit", "live-server", "solved", "tsify", "typescript", "watchify"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn01110": {"type": "string"}}, "required": ["rn01110"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"comment" : "unclear reaction incomplete reaction", "definition" : "Secologanin <=> Gentiopicrin", "orthologs" : {}, "name" : "", "product_stoichiometries" : ["1"], "enzymes" : [], "equation" : "C01852 <=> C09782", "glycans" : false, "substrate_stoichiometries" : ["1"], "rpairs" : {}, "entry_id" : "R08500", "pathways" : {"rn01110" : "Biosynthesis of secondary metabolites"}, "products" : ["C09782"], "substrates" : ["C01852"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn01110": {"type": "string"}}, "required": ["rn01110"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"values" : ["particle_creat:load"]} | json_instruct | {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["Minecraft is a game!", "URealms is a game!", "Tabletop Simulator is a game!", "You roleplay? I roleplay! We all scream for roleplay!", "Have you tried Javascript?", "Powered by Electron", "Powered by Javascript", "Powered by pixies", "Made by thepaperpilot!", "Puppet Pals is Better!", "You should also try Socks!", "No artistry required!", "Artistry Recommended!", "References Included!", "Batteries not included", "Absolutely $FOSS", "Try it with GIMP!", "Now better!", "Don't Google Yourself!", "Aw Man", "Artistic!", "WebGL!", "Haley loves Anthony!", "Textually Sublime", "Thanks for all the fish!", "Turing Incomplete!", "Woo, urealms!", "Thanks Marionette Mates", "Press B to jump!", "Buds is redundant!", "Professional!", "100% Ad-Free", "Not bug free!", "Now with more layers!", "Babble Buddies", "The Best Buddies", "Its on Github!", "Its online!", "Thank you Rawb!"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "demigroat", "definition" : "A half groat."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"csar": {"type": "string"}, "artifactVersion": {"type": "string"}}, "required": ["csar", "artifactVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"csar" : "xxxx", "artifactVersion" : "1.0"} | json_instruct | {"type": "object", "properties": {"csar": {"type": "string"}, "artifactVersion": {"type": "string"}}, "required": ["csar", "artifactVersion"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"alive": {"type": "boolean"}, "controllers": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "string"}}, "httpServers": {"type": "array", "items": {"type": "object", "properties": {"port": {"type": "integer"}}, "required": ["port"]}}, "locked": {"type": "boolean"}, "sinks": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "sources": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["alive", "controllers", "features", "httpServers", "locked", "sinks", "sources"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"alive" : false, "controllers" : ["controller-a", "controller-b"], "features" : ["feature-a", "feature-b"], "httpServers" : [{"port" : 1001}, {"port" : 1002}], "locked" : false, "sinks" : [{"name" : "sink1-topic"}, {"name" : "sink2-topic"}], "sources" : [{"name" : "source1-topic"}, {"name" : "source2-topic"}]} | json_instruct | {"type": "object", "properties": {"alive": {"type": "boolean"}, "controllers": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "string"}}, "httpServers": {"type": "array", "items": {"type": "object", "properties": {"port": {"type": "integer"}}, "required": ["port"]}}, "locked": {"type": "boolean"}, "sinks": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "sources": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["alive", "controllers", "features", "httpServers", "locked", "sinks", "sources"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3310050007", "district_id" : "3310050", "name" : "BAWAK"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "null"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ETag" : "W/\"2f946f68ccc80a03d2cf78ee7494a2b7\"", "Last-Modified" : "Sat, 28 Mar 2020 21:36:45 GMT", "base" : {"repo" : {"name" : "r-base-feedstock"}}, "closed_at" : "2020-03-28T21:36:45Z", "created_at" : "2020-02-07T12:28:33Z", "draft" : false, "head" : {"ref" : "bot-pr_arch"}, "html_url" : "https://github.com/conda-forge/r-base-feedstock/pull/116", "id" : 372388258, "labels" : [], "mergeable" : null, "mergeable_state" : "unknown", "merged" : false, "merged_at" : null, "number" : 116, "state" : "closed", "updated_at" : "2020-03-28T21:36:45Z"} | json_instruct | {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "null"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"manufacturer" : "Gasei S.A.", "market_name" : "SENSE704G", "codename" : "SENSE704G", "model" : "SENSE704G"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\uc774\ub984" : "\uae40\ubb38\uc6d0", "\ud55c\ubb38\uba85" : "\u91d1\u6587\u5143", "\uc0dd\ub144\uc6d4\uc77c" : "1941-03-05", "\uc815\ub2f9" : "\uc2e0\ubbfc\uc8fc\uacf5\ud654\ub2f9", "\uc120\uac70\uad6c" : "\uacbd\uae30 \uc758\uc815\ubd80\uc2dc", "\ub2f9\uc120\ud69f\uc218" : "\uc7ac\uc120", "\ub2f9\uc120\ub300\uc218" : "11, 13"} | json_instruct | {"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Bouhans-l\u00e8s-Lure", "dpt" : "Haute-Sa\u00f4ne", "inscrits" : 225, "abs" : 38, "votants" : 187, "blancs" : 3, "nuls" : 30, "exp" : 154, "res" : [{"panneau" : "2", "voix" : 85}, {"panneau" : "1", "voix" : 69}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "WONOGIRI", "originalFilename" : "YEKTI DEWI RETNO.B.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 94681, "noUrut" : 1, "nama" : "YEKTI DEWI RETNO BASUKI, S.I.Kom.", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "WONOGIRI", "originalFilename" : "DAHONO.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 214003, "noUrut" : 3, "nama" : "DAHONO", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "WONOGIRI", "originalFilename" : "AGUS SRIYANTO.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 214478, "noUrut" : 4, "nama" : "AGUS SRIYANTO", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "WONOGIRI", "originalFilename" : "ARIF WICAKSONO.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 153514, "noUrut" : 5, "nama" : "ARIF WICAKSONO", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "WONOGIRI", "originalFilename" : "MEGAWATI.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 68862, "noUrut" : 6, "nama" : "MEGAWATI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "WONOGIRI", "originalFilename" : "HINDUN.jpeg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 90277, "noUrut" : 7, "nama" : "HINDUN MU'ALIFAH ISLAMY", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "WONOGIRI", "originalFilename" : "SRI WAHYUNI.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 95012, "noUrut" : 8, "nama" : "SRI WAHYUNI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "WONOGIRI", "originalFilename" : "ALVIYASIN.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 153798, "noUrut" : 9, "nama" : "ALVIYASIN BAYU DICKY PRATAMA", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "WONOGIRI", "originalFilename" : "PUJIYANTO.JPG", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 158421, "noUrut" : 10, "nama" : "PUJIYANTO", "stringJenisKelamin" : "Laki-Laki"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "discord.js": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["axios", "discord.js", "underscore"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "discord-vaccine-finder-bot", "version" : "1.0.0", "description" : "Allows discord users to query the vaccine provider API", "main" : "./src/main.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Brian Li", "license" : "ISC", "dependencies" : {"axios" : "^0.21.1", "discord.js" : "^12.5.1", "underscore" : "^1.12.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "discord.js": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["axios", "discord.js", "underscore"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"class": {"type": "string"}, "id": {"type": "string"}, "kwargs": {"type": "object", "properties": {"clipped": {"type": "boolean"}}, "required": ["clipped"]}, "children": {"type": "array", "items": {"type": "object", "properties": {"class": {"type": "string"}, "kwargs": {"type": "object", "properties": {"icon": {"type": "boolean"}}, "required": ["icon"]}}, "required": ["class", "kwargs"]}}}, "required": ["class", "id", "kwargs", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"class" : "Toolbar", "id" : "", "kwargs" : {"clipped" : true}, "children" : [{"class" : "Btn", "kwargs" : {"icon" : true}}]} | json_instruct | {"type": "object", "properties": {"class": {"type": "string"}, "id": {"type": "string"}, "kwargs": {"type": "object", "properties": {"clipped": {"type": "boolean"}}, "required": ["clipped"]}, "children": {"type": "array", "items": {"type": "object", "properties": {"class": {"type": "string"}, "kwargs": {"type": "object", "properties": {"icon": {"type": "boolean"}}, "required": ["icon"]}}, "required": ["class", "kwargs"]}}}, "required": ["class", "id", "kwargs", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {}}}, "required": ["name", "email", "designation", "mobile"]}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contacts" : [{"name" : "Vasanthi Krishnan (Dr)", "email" : "", "designation" : "Chief Executive Officer (CEO)", "mobile" : []}], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=844", "name" : "Hindustan Latex Family Planning Promotion Trust", "primaryEmail" : "rshivi@hlfppt.com", "website" : "www.hlfppt.org", "organisationType" : ["Advocacy & Campaigning", "Direct Service", "Intermediary", "Network", "Support"], "telephone" : ["911204231065", "911204673673", "911204231060", "911204673673"], "mainAddrress" : {"state" : "Uttar Pradesh", "address" : ["B-14A, Second Floor", "Sector 62,", "Noida", "Gautam Buddha Nagar", "Uttar Pradesh", "201301"]}} | json_instruct | {"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {}}}, "required": ["name", "email", "designation", "mobile"]}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-117.976569, 33.859662], [-117.97634, 33.87], [-117.96822, 33.87005], [-117.96794, 33.854523], [-117.976239, 33.857487], [-117.976569, 33.859662]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 6510}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localities" : ["Kingsley, IA"], "state" : "IA", "postal_code" : "51028", "locality" : "Kingsley, IA", "lat" : 42.596655, "region" : {"fips" : "19", "abbr" : "IA", "name" : "Iowa"}, "city" : "Kingsley", "type" : "STANDARD", "lng" : -95.98764, "counties" : [{"fips" : "149", "name" : "Plymouth County"}, {"fips" : "193", "name" : "Woodbury County"}]} | json_instruct | {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "docFormat": {"type": "string"}, "triples": {"type": "array", "items": {"type": "object", "properties": {"triple": {"type": "object", "properties": {"subject": {"type": "string"}, "predicate": {"type": "string"}, "object": {"type": "string"}}, "required": ["subject", "predicate", "object"]}}, "required": ["triple"]}}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "tags", "friends", "greeting", "favoriteFruit", "location", "docFormat", "triples"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "55ee5e441432201b6ec597f3", "index" : 675, "guid" : "5bde8d5e-3c9c-4985-8f9f-1935a27876ab", "isActive" : false, "balance" : "$62,102.16", "picture" : "http://placehold.it/32x32", "age" : 68, "eyeColor" : "brown", "name" : "Gates Maxwell", "gender" : "male", "company" : "ACCRUEX", "email" : "gatesmaxwell@accruex.com", "phone" : "+1 (800) 561-2525", "address" : "789 Hale Avenue, Gordon, New York, 1037", "about" : "Tempor in est ipsum minim. Non irure aliqua dolore cillum est voluptate laboris amet esse est reprehenderit aliquip. Do excepteur nulla eiusmod dolor.\r\n", "registered" : "2015-01-12T01:12:57 -07:00", "tags" : ["laboris", "non", "in", "tempor", "consequat", "laboris", "culpa"], "friends" : [{"id" : 0, "name" : "Elnora Carr"}, {"id" : 1, "name" : "Marjorie Koch"}, {"id" : 2, "name" : "Cook Trujillo"}], "greeting" : "Hello, Gates Maxwell! You have 1 unread messages.", "favoriteFruit" : "orange", "location" : {"latitude" : -42.63083, "longitude" : 114.500665}, "docFormat" : "json", "triples" : [{"triple" : {"subject" : "/sample-data/data-675.json", "predicate" : "http://www.w3.org/2000/01/rdf-schema#label", "object" : "Gates Maxwell"}}, {"triple" : {"subject" : "/sample-data/data-675.json", "predicate" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "object" : "http://xmlns.com/foaf/0.1/Person"}}, {"triple" : {"subject" : "/sample-data/data-675.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-561.json"}}, {"triple" : {"subject" : "/sample-data/data-675.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-2260.json"}}, {"triple" : {"subject" : "/sample-data/data-675.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-1820.json"}}]} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "docFormat": {"type": "string"}, "triples": {"type": "array", "items": {"type": "object", "properties": {"triple": {"type": "object", "properties": {"subject": {"type": "string"}, "predicate": {"type": "string"}, "object": {"type": "string"}}, "required": ["subject", "predicate", "object"]}}, "required": ["triple"]}}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "tags", "friends", "greeting", "favoriteFruit", "location", "docFormat", "triples"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "icon": {"type": "string"}, "homepage": {"type": "string"}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "categories": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "contributes": {"type": "object", "properties": {"snippets": {"type": "array", "items": {"type": "object", "properties": {"language": {"type": "string"}, "path": {"type": "string"}}, "required": ["language", "path"]}}}, "required": ["snippets"]}}, "required": ["name", "displayName", "description", "version", "publisher", "icon", "homepage", "engines", "keywords", "categories", "repository", "contributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ios-snippets", "displayName" : "iOS Snippets", "description" : "Snippets for iOS/macOS Development", "version" : "1.0.0-custom", "publisher" : "ornithologist", "icon" : "icon.png", "homepage" : "https://github.com/ornithocoder/vscode-ios-snippets", "engines" : {"vscode" : "^0.10.6"}, "keywords" : ["ios", "objective-c", "swift", "completion", "snippets"], "categories" : ["Snippets"], "repository" : {"type" : "git", "url" : "https://github.com/ornithocoder/vscode-ios-snippets.git"}, "contributes" : {"snippets" : [{"language" : "objective-c", "path" : "./snippets/objc-header.json"}, {"language" : "objective-c", "path" : "./snippets/objc-misc.json"}, {"language" : "objective-c", "path" : "./snippets/objc-testing.json"}, {"language" : "objective-c", "path" : "./snippets/objc-fblocks.json"}, {"language" : "objective-c", "path" : "./snippets/objc-classes.json"}, {"language" : "swift", "path" : "./snippets/swift-testing.json"}, {"language" : "swift", "path" : "./snippets/swift-classes.json"}, {"language" : "swift", "path" : "./snippets/swift-misc.json"}, {"language" : "ruby", "path" : "./snippets/ruby-cocoapods.json"}]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "icon": {"type": "string"}, "homepage": {"type": "string"}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "categories": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "contributes": {"type": "object", "properties": {"snippets": {"type": "array", "items": {"type": "object", "properties": {"language": {"type": "string"}, "path": {"type": "string"}}, "required": ["language", "path"]}}}, "required": ["snippets"]}}, "required": ["name", "displayName", "description", "version", "publisher", "icon", "homepage", "engines", "keywords", "categories", "repository", "contributes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"track" : "typescript", "exercise" : "rna-transcription", "id" : "14b7ff38c54d40f8b8fe85b56ec9152a", "url" : "https://exercism.org/tracks/typescript/exercises/rna-transcription", "handle" : "juniorleaoo", "is_requester" : true, "auto_approve" : false} | json_instruct | {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"resourceFields": {"type": "object", "properties": {"name": {"type": "object", "properties": {"type": {"type": "string"}, "nullable": {"type": "boolean"}, "minLength": {"type": "integer"}, "required": {"type": "boolean"}}, "required": ["type", "nullable", "minLength", "required"]}, "authCertificateAuthority": {"type": "object", "properties": {"type": {"type": "string"}, "nullable": {"type": "boolean"}}, "required": ["type", "nullable"]}, "authKey": {"type": "object", "properties": {"type": {"type": "string"}, "nullable": {"type": "boolean"}}, "required": ["type", "nullable"]}, "driver": {"type": "object", "properties": {"type": {"type": "string"}, "nullable": {"type": "boolean"}}, "required": ["type", "nullable"]}, "extractedConfig": {"type": "object", "properties": {"type": {"type": "string"}, "nullable": {"type": "boolean"}}, "required": ["type", "nullable"]}, "labels": {"type": "object", "properties": {"type": {"type": "string"}, "nullable": {"type": "boolean"}}, "required": ["type", "nullable"]}}, "required": ["name", "authCertificateAuthority", "authKey", "driver", "extractedConfig", "labels"]}}, "required": ["resourceFields"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resourceFields" : {"name" : {"type" : "string", "nullable" : false, "minLength" : 1, "required" : true}, "authCertificateAuthority" : {"type" : "string", "nullable" : true}, "authKey" : {"type" : "string", "nullable" : true}, "driver" : {"type" : "string", "nullable" : true}, "extractedConfig" : {"type" : "string", "nullable" : true}, "labels" : {"type" : "map[string]", "nullable" : true}}} | json_instruct | {"type": "object", "properties": {"resourceFields": {"type": "object", "properties": {"name": {"type": "object", "properties": {"type": {"type": "string"}, "nullable": {"type": "boolean"}, "minLength": {"type": "integer"}, "required": {"type": "boolean"}}, "required": ["type", "nullable", "minLength", "required"]}, "authCertificateAuthority": {"type": "object", "properties": {"type": {"type": "string"}, "nullable": {"type": "boolean"}}, "required": ["type", "nullable"]}, "authKey": {"type": "object", "properties": {"type": {"type": "string"}, "nullable": {"type": "boolean"}}, "required": ["type", "nullable"]}, "driver": {"type": "object", "properties": {"type": {"type": "string"}, "nullable": {"type": "boolean"}}, "required": ["type", "nullable"]}, "extractedConfig": {"type": "object", "properties": {"type": {"type": "string"}, "nullable": {"type": "boolean"}}, "required": ["type", "nullable"]}, "labels": {"type": "object", "properties": {"type": {"type": "string"}, "nullable": {"type": "boolean"}}, "required": ["type", "nullable"]}}, "required": ["name", "authCertificateAuthority", "authKey", "driver", "extractedConfig", "labels"]}}, "required": ["resourceFields"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"app_name": {"type": "string"}, "author": {"type": "string"}, "main_module": {"type": "string"}, "version": {"type": "string"}}, "required": ["app_name", "author", "main_module", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"app_name" : "RetCom", "author" : "imifume", "main_module" : "src/main/python/main.py", "version" : "0.0.4"} | json_instruct | {"type": "object", "properties": {"app_name": {"type": "string"}, "author": {"type": "string"}, "main_module": {"type": "string"}, "version": {"type": "string"}}, "required": ["app_name", "author", "main_module", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"commandString": {"type": "string"}, "queryStart": {"type": "string"}, "queryEnd": {"type": "string"}, "iteration": {"type": "integer"}, "startTime": {"type": "string"}, "endTime": {"type": "string"}, "result": {"type": "object", "properties": {"params": {"type": "string"}, "endBalance": {"type": "integer"}, "buyHold": {"type": "integer"}, "vsBuyHold": {"type": "integer"}, "lastAssestValue": {"type": "integer"}, "assetPriceLastBuy": {"type": "integer"}, "wins": {"type": "integer"}, "losses": {"type": "integer"}, "errorRate": {"type": "integer"}, "days": {"type": "integer"}, "period_length": {"type": "integer"}, "min_periods": {"type": "integer"}, "markdown_buy_pct": {"type": "integer"}, "markup_sell_pct": {"type": "integer"}, "order_type": {"type": "string"}, "wlRatio": {"type": "string"}, "roi": {"type": "integer"}, "selector": {"type": "string"}, "strategy": {"type": "string"}, "frequency": {"type": "integer"}, "assetCapital": {"type": "integer"}, "startCapital": {"type": "integer"}, "profit": {"type": "integer"}}, "required": ["params", "endBalance", "buyHold", "vsBuyHold", "lastAssestValue", "assetPriceLastBuy", "wins", "losses", "errorRate", "days", "period_length", "min_periods", "markdown_buy_pct", "markup_sell_pct", "order_type", "wlRatio", "roi", "selector", "strategy", "frequency", "assetCapital", "startCapital", "profit"]}}, "required": ["commandString", "queryStart", "queryEnd", "iteration", "startTime", "endTime", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"commandString" : "zenbot.bat sim binanceus.BTC-USD --period_length=87m --min_periods=52 --markdown_buy_pct=-0.07500619195429659 --markup_sell_pct=1.610099645660037 --order_type=taker --sell_stop_pct=0 --buy_stop_pct=35 --profit_stop_enable_pct=12 --profit_stop_pct=6 --trend_ema=39 --oversold_rsi_periods=49 --oversold_rsi=64 --backtester_generation=43 --strategy=trend_ema --days=14 --runGenerations=2 --maxCores=66 --filename=none", "queryStart" : "2020-10-15T22:30:00.000Z", "queryEnd" : "2020-11-02T06:48:46.732Z", "iteration" : 43, "startTime" : "2020-11-02T06:48:46.743Z", "endTime" : "2020-11-02T06:49:29.421Z", "result" : {"params" : "module.exports = {}", "endBalance" : 0, "buyHold" : 0, "vsBuyHold" : 0, "lastAssestValue" : 0, "assetPriceLastBuy" : 0, "wins" : 0, "losses" : -1, "errorRate" : 100, "days" : 0, "period_length" : 0, "min_periods" : 0, "markdown_buy_pct" : 0, "markup_sell_pct" : 0, "order_type" : "maker", "wlRatio" : "Infinity", "roi" : -1000, "selector" : "binanceus.BTC-USD", "strategy" : "trend_ema", "frequency" : 0, "assetCapital" : 0, "startCapital" : 0, "profit" : 0}} | json_instruct | {"type": "object", "properties": {"commandString": {"type": "string"}, "queryStart": {"type": "string"}, "queryEnd": {"type": "string"}, "iteration": {"type": "integer"}, "startTime": {"type": "string"}, "endTime": {"type": "string"}, "result": {"type": "object", "properties": {"params": {"type": "string"}, "endBalance": {"type": "integer"}, "buyHold": {"type": "integer"}, "vsBuyHold": {"type": "integer"}, "lastAssestValue": {"type": "integer"}, "assetPriceLastBuy": {"type": "integer"}, "wins": {"type": "integer"}, "losses": {"type": "integer"}, "errorRate": {"type": "integer"}, "days": {"type": "integer"}, "period_length": {"type": "integer"}, "min_periods": {"type": "integer"}, "markdown_buy_pct": {"type": "integer"}, "markup_sell_pct": {"type": "integer"}, "order_type": {"type": "string"}, "wlRatio": {"type": "string"}, "roi": {"type": "integer"}, "selector": {"type": "string"}, "strategy": {"type": "string"}, "frequency": {"type": "integer"}, "assetCapital": {"type": "integer"}, "startCapital": {"type": "integer"}, "profit": {"type": "integer"}}, "required": ["params", "endBalance", "buyHold", "vsBuyHold", "lastAssestValue", "assetPriceLastBuy", "wins", "losses", "errorRate", "days", "period_length", "min_periods", "markdown_buy_pct", "markup_sell_pct", "order_type", "wlRatio", "roi", "selector", "strategy", "frequency", "assetCapital", "startCapital", "profit"]}}, "required": ["commandString", "queryStart", "queryEnd", "iteration", "startTime", "endTime", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x960b236a07cf122663c4303350609a66a7b288c0", "tool" : "osiris", "start" : 1564570815.5281394, "end" : 1564570923.4822524, "duration" : 107.9541130065918, "analysis" : [{"errors" : [], "file" : "/unique_chucks/1/0x960b236a07cf122663c4303350609a66a7b288c0.sol", "name" : "ANPlaceholder"}, {"errors" : [{"line" : 18, "column" : 14, "message" : "overflow_bugs"}, {"line" : 897, "column" : 38, "message" : "truncation_bugs"}, {"line" : 622, "column" : 19, "message" : "reentrancy_bug"}], "file" : "/unique_chucks/1/0x960b236a07cf122663c4303350609a66a7b288c0.sol", "name" : "ANT"}, {"errors" : [], "file" : "/unique_chucks/1/0x960b236a07cf122663c4303350609a66a7b288c0.sol", "name" : "Controlled"}, {"errors" : [{"line" : 18, "column" : 14, "message" : "overflow_bugs"}, {"line" : 897, "column" : 38, "message" : "truncation_bugs"}, {"line" : 622, "column" : 19, "message" : "reentrancy_bug"}], "file" : "/unique_chucks/1/0x960b236a07cf122663c4303350609a66a7b288c0.sol", "name" : "MiniMeIrrevocableVestedToken"}, {"errors" : [], "file" : "/unique_chucks/1/0x960b236a07cf122663c4303350609a66a7b288c0.sol", "name" : "MiniMeToken"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "integer"}, "userName": {"type": "string"}, "password": {"type": "string"}}, "required": ["host", "port", "userName", "password"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"host" : "0.0.0.0", "port" : 6969, "userName" : "healthcheck", "password" : "zb!XztG34"} | json_instruct | {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "integer"}, "userName": {"type": "string"}, "password": {"type": "string"}}, "required": ["host", "port", "userName", "password"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"activePlaceCount": {"type": "integer"}, "date": {"type": "string"}, "fc": {"type": "string"}, "gender": {"type": "string"}, "id": {"type": "integer"}, "mda": {"type": "string"}, "movements": {"type": "array", "items": {}}, "startLetter": {"type": "string"}, "totalWorks": {"type": "integer"}, "url": {"type": "string"}}, "required": ["activePlaceCount", "date", "fc", "gender", "id", "mda", "movements", "startLetter", "totalWorks", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"activePlaceCount" : 0, "date" : "dates not known", "fc" : "Valerie Parkinson", "gender" : "Female", "id" : 2199, "mda" : "Parkinson, Valerie", "movements" : [], "startLetter" : "P", "totalWorks" : 2, "url" : "http://www.tate.org.uk/art/artists/valerie-parkinson-2199"} | json_instruct | {"type": "object", "properties": {"activePlaceCount": {"type": "integer"}, "date": {"type": "string"}, "fc": {"type": "string"}, "gender": {"type": "string"}, "id": {"type": "integer"}, "mda": {"type": "string"}, "movements": {"type": "array", "items": {}}, "startLetter": {"type": "string"}, "totalWorks": {"type": "integer"}, "url": {"type": "string"}}, "required": ["activePlaceCount", "date", "fc", "gender", "id", "mda", "movements", "startLetter", "totalWorks", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "full_name": {"type": "string"}, "owner": {"type": "object", "properties": {"login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "html_url": {"type": "string"}}, "required": ["login", "id", "avatar_url", "html_url"]}, "html_url": {"type": "string"}, "description": {"type": "string"}, "fork": {"type": "boolean"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "pushed_at": {"type": "string"}, "stargazers_count": {"type": "integer"}, "watchers_count": {"type": "integer"}, "forks_count": {"type": "integer"}, "allow_forking": {"type": "boolean"}, "forks": {"type": "integer"}, "watchers": {"type": "integer"}, "score": {"type": "integer"}}, "required": ["id", "name", "full_name", "owner", "html_url", "description", "fork", "created_at", "updated_at", "pushed_at", "stargazers_count", "watchers_count", "forks_count", "allow_forking", "forks", "watchers", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 363765446, "name" : "CVE-2018-17463", "full_name" : "kdmarti2/CVE-2018-17463", "owner" : {"login" : "kdmarti2", "id" : 2709377, "avatar_url" : "https://avatars.githubusercontent.com/u/2709377?v=4", "html_url" : "https://github.com/kdmarti2"}, "html_url" : "https://github.com/kdmarti2/CVE-2018-17463", "description" : "Completed a working exploit for CVE-2018-17463 for fun.", "fork" : false, "created_at" : "2021-05-02T22:44:33Z", "updated_at" : "2021-05-02T22:53:44Z", "pushed_at" : "2021-05-02T22:53:42Z", "stargazers_count" : 0, "watchers_count" : 0, "forks_count" : 0, "allow_forking" : true, "forks" : 0, "watchers" : 0, "score" : 0}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "full_name": {"type": "string"}, "owner": {"type": "object", "properties": {"login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "html_url": {"type": "string"}}, "required": ["login", "id", "avatar_url", "html_url"]}, "html_url": {"type": "string"}, "description": {"type": "string"}, "fork": {"type": "boolean"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "pushed_at": {"type": "string"}, "stargazers_count": {"type": "integer"}, "watchers_count": {"type": "integer"}, "forks_count": {"type": "integer"}, "allow_forking": {"type": "boolean"}, "forks": {"type": "integer"}, "watchers": {"type": "integer"}, "score": {"type": "integer"}}, "required": ["id", "name", "full_name", "owner", "html_url", "description", "fork", "created_at", "updated_at", "pushed_at", "stargazers_count", "watchers_count", "forks_count", "allow_forking", "forks", "watchers", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"main": {"type": "string"}}, "required": ["main"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"main" : "Cancelable.js"} | json_instruct | {"type": "object", "properties": {"main": {"type": "string"}}, "required": ["main"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"videojs.wavesurfer.js": {"type": "string"}, "videojs.wavesurfer.min.js": {"type": "string"}}, "required": ["videojs.wavesurfer.js", "videojs.wavesurfer.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"videojs.wavesurfer.js" : "sha256-BJDvYsO5nRjAQr4g8JpjLFxbYXkyzB45huVAuBLLVgM=", "videojs.wavesurfer.min.js" : "sha256-r8j5jtpHQ1bm3wQjCPs6U1o29E1Ql6h0DRffcYRYHdg="} | json_instruct | {"type": "object", "properties": {"videojs.wavesurfer.js": {"type": "string"}, "videojs.wavesurfer.min.js": {"type": "string"}}, "required": ["videojs.wavesurfer.js", "videojs.wavesurfer.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"parent": {"type": "string"}, "loader": {"type": "string"}, "flower": {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"]}}, "required": ["parent", "loader", "flower"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "block/block", "loader" : "botania:floating_flower", "flower" : {"parent" : "metabotany:block/flower_bouganvillea"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "loader": {"type": "string"}, "flower": {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"]}}, "required": ["parent", "loader", "flower"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "latitude", "longitude", "tags", "friends", "greeting", "favoriteFruit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "55ee5e44007a75f327ecedc1", "index" : 228, "guid" : "f6bffe21-c023-4078-95b7-8b923cf816c6", "isActive" : false, "balance" : "$54,558.84", "picture" : "http://placehold.it/32x32", "age" : 69, "eyeColor" : "brown", "name" : "Ochoa Roman", "gender" : "male", "company" : "MALATHION", "email" : "ochoaroman@malathion.com", "phone" : "+1 (814) 569-2354", "address" : "552 Moffat Street, Darlington, Maryland, 4270", "about" : "Dolore dolor sint ea magna pariatur officia fugiat ea fugiat consectetur mollit anim duis. Non quis ipsum pariatur sunt occaecat ex ullamco labore sit dolore nostrud est. Velit culpa deserunt deserunt consequat ad minim quis. Non dolor labore enim incididunt reprehenderit aliqua amet id enim duis eu voluptate. Ad eu est esse exercitation sint elit consectetur anim. Consectetur duis sint nostrud eu aliqua elit.\r\n", "registered" : "2014-01-31T08:11:42 -07:00", "latitude" : 39.114458, "longitude" : 158.416427, "tags" : ["voluptate", "et", "officia", "quis", "cillum", "tempor", "veniam"], "friends" : [{"id" : 0, "name" : "Gillespie Solomon"}, {"id" : 1, "name" : "Nielsen Klein"}, {"id" : 2, "name" : "Isabel Chambers"}], "greeting" : "Hello, Ochoa Roman! You have 7 unread messages.", "favoriteFruit" : "banana"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "latitude", "longitude", "tags", "friends", "greeting", "favoriteFruit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "string"}, "death_date": {"type": "null"}, "birth_place": {"type": "null"}, "death_place": {"type": "null"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Sugar Cane Factory, Grosse Tete, Louisiana", "creation_date" : "1983", "creation_date_earliest" : "1983-01-01", "creation_date_latest" : "1983-01-01", "medium" : "platinum/palladium print", "accession_number" : "2007.51.26", "id" : "cmoa:things/75dca45d-4ba3-43a9-b35a-964d2aef44fd", "credit_line" : "Gift of the George H. Ebbs Family", "date_acquired" : "2007-10-04", "department" : "Photography", "physical_location" : "Not on View", "item_width" : 18.875, "item_height" : 8.438, "item_depth" : 0.0, "item_diameter" : 0.0, "web_url" : "http://collection.cmoa.org/CollectionDetail.aspx?item=48871", "provenance_text" : "Acquried by Mr. George Ebbs from Halsted Gallery, Inc., on 05/08/1989 (Source: Donor's checklist)", "classification" : "photographs", "images" : [{"image_url" : "http://collection.cmoa.org/CollectionImage.aspx?irn=56022&size=Medium"}], "creator" : [{"artist_id" : "cmoa:parties/97efefcc-3324-4945-b4ab-0a99b119b89e", "party_type" : "Person", "full_name" : "Lois Conner", "cited_name" : "Conner, Lois", "role" : null, "nationality" : "American", "birth_date" : "1951-01-01", "death_date" : null, "birth_place" : null, "death_place" : null}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "string"}, "death_date": {"type": "null"}, "birth_place": {"type": "null"}, "death_place": {"type": "null"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "BABYGIRL", "frequency" : 1708, "males" : "0.351288056206089 %", "females" : "99.64871194379391 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.