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": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"python.pythonPath" : "/home/hyan/.virtualenvs/py3cv4/bin/python"} | json_instruct | {"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "iterable", "definition" : "Capable of being iterated or repeated. [Obs.]"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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": {"ownership-status": {"type": "string"}, "planning-permission-date": {"type": "string"}, "site-plan-url": {"type": "string"}, "notes": {"type": "string"}, "planning-permission-status": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "deliverable": {"type": "string"}, "site-address": {"type": "string"}, "organisation": {"type": "string"}, "hectares": {"type": "string"}, "planning-permission-history": {"type": "string"}, "planning-permission-type": {"type": "string"}, "site": {"type": "string"}, "point": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "name": {"type": "string"}, "start-date": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}, "end-date": {"type": "string"}}, "required": ["ownership-status", "planning-permission-date", "site-plan-url", "notes", "planning-permission-status", "maximum-net-dwellings", "deliverable", "site-address", "organisation", "hectares", "planning-permission-history", "planning-permission-type", "site", "point", "minimum-net-dwellings", "name", "start-date", "slug", "entity", "entry-date", "end-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.821444, 52.701238]}, "properties" : {"ownership-status" : "not owned by a public authority", "planning-permission-date" : "2016-12-16", "site-plan-url" : "http://lichfielddc.maps.arcgis.com/home/webmap/viewer.html?webmap=f95b5e5ecb4d4a938a89f64a5344eaef", "notes" : "Site currently under construction. Proposed for allocation in LPA. Derelict land, former site of large industrial unit. Redevelopment currently under construction", "planning-permission-status" : "permissioned", "maximum-net-dwellings" : "99", "deliverable" : "yes", "site-address" : "Former Integra Works, Eastern Avenue, Lichfield", "organisation" : "local-authority-eng:LIF", "hectares" : "2.8", "planning-permission-history" : "https://planning.lichfielddc.gov.uk/online-applications/caseDetails.do?caseType=Application&keyVal=O7UCICJEFNJ00", "planning-permission-type" : "full planning permission", "site" : "LDC-BLR-8", "point" : "POINT(-1.821444 52.701238)", "minimum-net-dwellings" : "99", "name" : "LDC-BLR-8", "start-date" : "2017-07-17", "slug" : "/brownfield-land/local-authority-eng/LIF/LDC-BLR-8", "entity" : 486233, "entry-date" : "2019-11-18", "end-date" : "2020-03-31"}} | 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": {"ownership-status": {"type": "string"}, "planning-permission-date": {"type": "string"}, "site-plan-url": {"type": "string"}, "notes": {"type": "string"}, "planning-permission-status": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "deliverable": {"type": "string"}, "site-address": {"type": "string"}, "organisation": {"type": "string"}, "hectares": {"type": "string"}, "planning-permission-history": {"type": "string"}, "planning-permission-type": {"type": "string"}, "site": {"type": "string"}, "point": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "name": {"type": "string"}, "start-date": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}, "end-date": {"type": "string"}}, "required": ["ownership-status", "planning-permission-date", "site-plan-url", "notes", "planning-permission-status", "maximum-net-dwellings", "deliverable", "site-address", "organisation", "hectares", "planning-permission-history", "planning-permission-type", "site", "point", "minimum-net-dwellings", "name", "start-date", "slug", "entity", "entry-date", "end-date"]}}, "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": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "exception": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "exception"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"elapsed" : "0.291", "endpoint-url" : "https://www.staffsmoorlands.gov.uk/media/3861/SM-2019-Brownfield-Register-CSV/Excel/BLR_SMDC_19_CSV.csv", "entry-date" : "2020-08-02T00:19:25.243831", "exception" : "SSLError"} | json_instruct | {"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "exception": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "exception"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"friends": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "img": {"type": "string"}}, "required": ["name", "url", "img"]}}}, "required": ["friends"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"friends" : [{"name" : "addy", "url" : "https://addy-dclxvi.github.io", "img" : "https://github.com/addy-dclxvi.png?size=128"}, {"name" : "myugan", "url" : "https://github.com/myugan", "img" : "https://github.com/myugan.png?size=128"}, {"name" : "epsi-rns", "url" : "https://epsi-rns.gitlab.io", "img" : "https://github.com/epsi-rns.png?size=128"}, {"name" : "reorr", "url" : "https://chamelemon.site", "img" : "https://github.com/reorr.png?size=128"}, {"name" : "fikriomar16", "url" : "https://github.com/fikriomar16", "img" : "https://github.com/fikriomar16.png?size=128"}, {"name" : "bandithijo", "url" : "https://bandithijo.com", "img" : "https://github.com/bandithijo.png?size=128"}, {"name" : "aflasio", "url" : "https://aflasio.art", "img" : "https://a.deviantart.net/avatars-big/a/f/aflasio.jpg"}, {"name" : "mustofa-id", "url" : "https://mustofa.id", "img" : "https://github.com/mustofa-id.png?size=128"}, {"name" : "ypraw", "url" : "https://ypraw.github.io", "img" : "https://github.com/ypraw.png?size=128"}, {"name" : "drzaln", "url" : "https://drzaln.github.io", "img" : "https://github.com/drzaln.png?size=128"}, {"name" : "galihx11", "url" : "https://linuxisekai.site", "img" : "https://github.com/galihx11.png?size=128"}, {"name" : "illvart", "url" : "https://illvart.com", "img" : "https://github.com/illvart.png?size=128"}]} | json_instruct | {"type": "object", "properties": {"friends": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "img": {"type": "string"}}, "required": ["name", "url", "img"]}}}, "required": ["friends"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "string"}}, "data": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["columns", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"columns" : ["goal", "guesses"], "data" : [["ADMIX", "0: ABIES 1: ACTIN 2: ADDIO 3: ADMIX "]]} | json_instruct | {"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "string"}}, "data": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["columns", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lastUpdated" : 1655019279666, "username" : "NEtyman", "scores" : [{"xp" : 6544, "rank" : 311, "cardId" : 582}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"serverUrl": {"type": "string"}, "webhookUrl": {"type": "string"}, "port": {"type": "string"}}, "required": ["serverUrl", "webhookUrl", "port"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"serverUrl" : "PREENCHA AQUI A URL DO SERVIDOR SONAR", "webhookUrl" : "PREENCHA AQUI A URL DO WEBHOOK DISCORD", "port" : "PREENCHA AQUI A PORTA DE EXECU\u00c7\u00c3O DA APLICA\u00c7\u00c3O"} | json_instruct | {"type": "object", "properties": {"serverUrl": {"type": "string"}, "webhookUrl": {"type": "string"}, "port": {"type": "string"}}, "required": ["serverUrl", "webhookUrl", "port"], "$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": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "2001", "provinceId" : "91", "regencyId" : "16", "districtId" : "03", "name" : "Woropko"}, {"id" : "2002", "provinceId" : "91", "regencyId" : "16", "districtId" : "03", "name" : "Winiktit"}, {"id" : "2003", "provinceId" : "91", "regencyId" : "16", "districtId" : "03", "name" : "Kanggewot"}, {"id" : "2004", "provinceId" : "91", "regencyId" : "16", "districtId" : "03", "name" : "Jetetkun"}, {"id" : "2005", "provinceId" : "91", "regencyId" : "16", "districtId" : "03", "name" : "Inggembit"}, {"id" : "2006", "provinceId" : "91", "regencyId" : "16", "districtId" : "03", "name" : "Wametkapa"}, {"id" : "2009", "provinceId" : "91", "regencyId" : "16", "districtId" : "03", "name" : "Wombon"}, {"id" : "2013", "provinceId" : "91", "regencyId" : "16", "districtId" : "03", "name" : "Upkim"}, {"id" : "2014", "provinceId" : "91", "regencyId" : "16", "districtId" : "03", "name" : "Ikcan"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"no": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}, "classification": {"type": "string"}, "tribeValue": {"type": "array", "items": {"type": "string"}}, "height": {"type": "string"}, "weight": {"type": "string"}}, "required": ["no", "name", "type", "classification", "tribeValue", "height", "weight"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"no" : "190", "name" : "\u30a8\u30a4\u30d1\u30e0", "type" : ["\u30ce\u30fc\u30de\u30eb"], "classification" : "\u304a\u306a\u304c\u30dd\u30b1\u30e2\u30f3", "tribeValue" : ["55", "70", "55", "40", "55", "85"], "height" : "0.8", "weight" : "11.5"} | json_instruct | {"type": "object", "properties": {"no": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "array", "items": {"type": "string"}}, "classification": {"type": "string"}, "tribeValue": {"type": "array", "items": {"type": "string"}}, "height": {"type": "string"}, "weight": {"type": "string"}}, "required": ["no", "name", "type", "classification", "tribeValue", "height", "weight"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "rechiseled_compat:block/genericeco_japanese_maple_planks_crate"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@polkadot/keyring": {"type": "string"}, "@polkadot/util": {"type": "string"}, "@polkadot/util-crypto": {"type": "string"}, "@redspot/chai": {"type": "string"}, "@redspot/gas-reporter": {"type": "string"}, "@redspot/jupiter": {"type": "string"}, "@redspot/patract": {"type": "string"}, "@types/chai": {"type": "string"}, "@types/mocha": {"type": "string"}, "body-parser": {"type": "string"}, "chai": {"type": "string"}, "cids": {"type": "string"}, "eth-crypto": {"type": "string"}, "express": {"type": "string"}, "ipfs-http-client": {"type": "string"}, "lowdb": {"type": "string"}, "redspot": {"type": "string"}, "secrets.js-grempe": {"type": "string"}, "typescript": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["@polkadot/keyring", "@polkadot/util", "@polkadot/util-crypto", "@redspot/chai", "@redspot/gas-reporter", "@redspot/jupiter", "@redspot/patract", "@types/chai", "@types/mocha", "body-parser", "chai", "cids", "eth-crypto", "express", "ipfs-http-client", "lowdb", "redspot", "secrets.js-grempe", "typescript", "uuid"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "deploy": {"type": "string"}, "server": {"type": "string"}}, "required": ["build", "test", "deploy", "server"]}}, "required": ["name", "version", "private", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "skyekiwivault", "version" : "0.1.0", "private" : true, "dependencies" : {"@polkadot/keyring" : "^5.9.2", "@polkadot/util" : "^5.9.2", "@polkadot/util-crypto" : "^5.9.2", "@redspot/chai" : "^0.10.2-7", "@redspot/gas-reporter" : "^0.10.2-7", "@redspot/jupiter" : "^0.10.2-7", "@redspot/patract" : "^0.10.2-7", "@types/chai" : "^4.2.14", "@types/mocha" : "^8.0.3", "body-parser" : "^1.19.0", "chai" : "^4.2.0", "cids" : "^1.1.6", "eth-crypto" : "^1.8.0", "express" : "^4.17.1", "ipfs-http-client" : "^49.0.2", "lowdb" : "^1.0.0", "redspot" : "^0.10.2-7", "secrets.js-grempe" : "^2.0.0", "typescript" : "^4.0.2", "uuid" : "^8.3.2"}, "scripts" : {"build" : "npx redspot compile", "test" : "npx redspot test", "deploy" : "npx redspot run scripts/deploy.ts", "server" : "npx redspot run scripts/server.ts"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@polkadot/keyring": {"type": "string"}, "@polkadot/util": {"type": "string"}, "@polkadot/util-crypto": {"type": "string"}, "@redspot/chai": {"type": "string"}, "@redspot/gas-reporter": {"type": "string"}, "@redspot/jupiter": {"type": "string"}, "@redspot/patract": {"type": "string"}, "@types/chai": {"type": "string"}, "@types/mocha": {"type": "string"}, "body-parser": {"type": "string"}, "chai": {"type": "string"}, "cids": {"type": "string"}, "eth-crypto": {"type": "string"}, "express": {"type": "string"}, "ipfs-http-client": {"type": "string"}, "lowdb": {"type": "string"}, "redspot": {"type": "string"}, "secrets.js-grempe": {"type": "string"}, "typescript": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["@polkadot/keyring", "@polkadot/util", "@polkadot/util-crypto", "@redspot/chai", "@redspot/gas-reporter", "@redspot/jupiter", "@redspot/patract", "@types/chai", "@types/mocha", "body-parser", "chai", "cids", "eth-crypto", "express", "ipfs-http-client", "lowdb", "redspot", "secrets.js-grempe", "typescript", "uuid"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "deploy": {"type": "string"}, "server": {"type": "string"}}, "required": ["build", "test", "deploy", "server"]}}, "required": ["name", "version", "private", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "no_of_wards": {"type": "integer"}, "wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "string"}, "ward_name": {"type": "string"}, "ward_id": {"type": "string"}}, "required": ["ward_no", "ward_name", "ward_id"]}}}, "required": ["name", "lsg_code", "district", "state", "no_of_wards", "wards"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Ananthapuram", "lsg_code" : "252437", "district" : "Villupuram", "state" : "Tamil Nadu", "no_of_wards" : 15, "wards" : [{"ward_no" : "9", "ward_name" : "Ananthapuram (TP) - Ward No.9", "ward_id" : "41899"}, {"ward_no" : "14", "ward_name" : "Ananthapuram (TP) - Ward No.14", "ward_id" : "41904"}, {"ward_no" : "12", "ward_name" : "Ananthapuram (TP) - Ward No.12", "ward_id" : "41902"}, {"ward_no" : "11", "ward_name" : "Ananthapuram (TP) - Ward No.11", "ward_id" : "41901"}, {"ward_no" : "8", "ward_name" : "Ananthapuram (TP) - Ward No.8", "ward_id" : "41898"}, {"ward_no" : "3", "ward_name" : "Ananthapuram (TP) - Ward No.3", "ward_id" : "41893"}, {"ward_no" : "10", "ward_name" : "Ananthapuram (TP) - Ward No.10", "ward_id" : "41900"}, {"ward_no" : "6", "ward_name" : "Ananthapuram (TP) - Ward No.6", "ward_id" : "41896"}, {"ward_no" : "1", "ward_name" : "Ananthapuram (TP) - Ward No.1", "ward_id" : "41891"}, {"ward_no" : "2", "ward_name" : "Ananthapuram (TP) - Ward No.2", "ward_id" : "41892"}, {"ward_no" : "4", "ward_name" : "Ananthapuram (TP) - Ward No.4", "ward_id" : "41894"}, {"ward_no" : "13", "ward_name" : "Ananthapuram (TP) - Ward No.13", "ward_id" : "41903"}, {"ward_no" : "15", "ward_name" : "Ananthapuram (TP) - Ward No.15", "ward_id" : "41905"}, {"ward_no" : "5", "ward_name" : "Ananthapuram (TP) - Ward No.5", "ward_id" : "41895"}, {"ward_no" : "7", "ward_name" : "Ananthapuram (TP) - Ward No.7", "ward_id" : "41897"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "no_of_wards": {"type": "integer"}, "wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "string"}, "ward_name": {"type": "string"}, "ward_id": {"type": "string"}}, "required": ["ward_no", "ward_name", "ward_id"]}}}, "required": ["name", "lsg_code", "district", "state", "no_of_wards", "wards"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "170402190106", "variable1" : 0.8802, "variable2" : 0.1418, "variable3" : "A"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"alice-cai": {"type": "string"}}, "required": ["alice-cai"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "swift_versions": {"type": "string"}, "source_files": {"type": "string"}, "swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "swift_versions", "source_files", "swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "NdefLibrary", "version" : "0.0.0.1", "summary" : "Parse and compose NDEF messages on iOS without CoreNFC.", "description" : "This library is intended for use in applications that use external NFC readers (such as TapTrack Tappy \nreaders) from which NDEF messages must be validated, parsed, and composed.", "homepage" : "https://github.com/TapTrack/NdefLibrary", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"alice-cai" : "info@taptrack.com"}, "source" : {"git" : "https://github.com/TapTrack/NdefLibrary.git", "tag" : "0.0.0.1"}, "platforms" : {"ios" : "8.0"}, "swift_versions" : "4.2", "source_files" : "NdefLibrary/Classes/**/*", "swift_version" : "4.2"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"alice-cai": {"type": "string"}}, "required": ["alice-cai"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "swift_versions": {"type": "string"}, "source_files": {"type": "string"}, "swift_version": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "swift_versions", "source_files", "swift_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"webModulesUrl": {"type": "string"}}, "required": ["webModulesUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"webModulesUrl" : "https://static.SOME_DOMAIN.com/web_modules"} | json_instruct | {"type": "object", "properties": {"webModulesUrl": {"type": "string"}}, "required": ["webModulesUrl"], "$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"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jshint": {"type": "string"}}, "required": ["jshint"]}}, "required": ["name", "version", "private", "description", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "iapplx-project-template", "version" : "0.0.1", "private" : true, "description" : "iAppLX Project Template", "author" : "cstubbs+spam@gmail.com", "license" : "Apache 2.0", "devDependencies" : {"jshint" : "^2.9.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jshint": {"type": "string"}}, "required": ["jshint"]}}, "required": ["name", "version", "private", "description", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "cites": {"type": "integer"}, "cited_by": {"type": "integer"}, "reference": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "cites", "cited_by", "reference"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 14725, "cites" : 5, "cited_by" : 28, "reference" : ["Auerbach, Alan J. 2002. Is There a Role for Discretionary Fiscal Policy? In Rethinking Stabilization Policy, i09-50. Kansas City, MO: Federal Reserve Bank of Kansas City.", "Auerbach, Alan J. 2003. Fiscal Policy, Past and Present. Brookings Papers on Economic Activity, 34(2), 75-i38.", "Auerbach, Alan J. 2008. Federal Budget Rules: The U.S. Experience. Swedish Economic Policy Review, i5(i): 57-82.", "Auerbach, Alan J., and Daniel Feenberg. 2000. The Significance of Federal Taxes as Automatic Stabilizers. Journal of Economic Perspectives, i 4(3): 37-56.", "Congressional Budget Office. i983. Baseline Budget Projections for Fiscal Years 1984-1988. Lucas, Robert E., Jr. i976. Econometric Policy Evaluation: A Critique. In The Phillips Curve and Labor Markets, ed. Karl Brunner and Allan Meltzer. i9-46. Amsterdam: North-Holland. Warren, Alvin C., Jr., and Alan J. Auerbach. i982. Transferability of Tax Losses and the Fiction of Safe-Harbor Leasing. Harvard Law Review 95(8): i752-i786. i2 Endnotes 1 This paper provides further detail regarding the construction of variables used in the estimation. 2 I am grateful to Dan Feenberg for providing these updated estimates using the NBER s TAXSIM model."]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "cites": {"type": "integer"}, "cited_by": {"type": "integer"}, "reference": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "cites", "cited_by", "reference"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"station" : [{"pref_cd" : 37, "line_cd" : 99803, "line_name" : "\u7434\u96fb\u9577\u5c3e\u7dda", "station_cd" : 9980302, "station_g_cd" : 9980202, "station_name" : "\u7247\u539f\u753a", "lon" : 134.054368, "lat" : 34.346138}]} | json_instruct | {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$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"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "main": {"type": "string"}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"standard": {"type": "string"}, "jsdoc-to-markdown": {"type": "string"}}, "required": ["standard", "jsdoc-to-markdown"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {"xml2js": {"type": "string"}, "request": {"type": "string"}}, "required": ["xml2js", "request"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "author", "contributors", "main", "homepage", "devDependencies", "scripts", "dependencies", "engines", "repository", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "node-notifymyandroid", "version" : "1.0.1", "description" : "Library to send notifications to Android using the Notify My Android service.", "author" : {"name" : "Michiel van der Velde", "email" : "michiel@michielvdvelde.nl", "url" : "http://michielvdvelde.nl"}, "contributors" : [{"name" : "Ronald Barendse", "email" : "ronald@barend.se"}], "main" : "lib/NotifyMyAndroid.js", "homepage" : "https://github.com/MichielvdVelde/node-notifymyandroid", "devDependencies" : {"standard" : "*", "jsdoc-to-markdown" : "*"}, "scripts" : {"start" : "jsdoc2md lib/NotifyMyAndroid.js > DOCUMENTATION.md", "test" : "standard"}, "dependencies" : {"xml2js" : "0.4.x", "request" : "2.x.x"}, "engines" : {"node" : ">=0.8.0"}, "repository" : {"type" : "git", "url" : "https://github.com/MichielvdVelde/node-notifymyandroid.git"}, "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "main": {"type": "string"}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"standard": {"type": "string"}, "jsdoc-to-markdown": {"type": "string"}}, "required": ["standard", "jsdoc-to-markdown"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {"xml2js": {"type": "string"}, "request": {"type": "string"}}, "required": ["xml2js", "request"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "author", "contributors", "main", "homepage", "devDependencies", "scripts", "dependencies", "engines", "repository", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"applications": {"type": "object", "properties": {"gecko": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["gecko"]}, "browser_action": {"type": "object", "properties": {"browser_style": {"type": "boolean"}}, "required": ["browser_style"]}, "options_ui": {"type": "object", "properties": {"browser_style": {"type": "boolean"}}, "required": ["browser_style"]}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["applications", "browser_action", "options_ui", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"applications" : {"gecko" : {"id" : "tempid@2ch.helper"}}, "browser_action" : {"browser_style" : true}, "options_ui" : {"browser_style" : true}, "permissions" : ["tabs", "<all_urls>"]} | json_instruct | {"type": "object", "properties": {"applications": {"type": "object", "properties": {"gecko": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["gecko"]}, "browser_action": {"type": "object", "properties": {"browser_style": {"type": "boolean"}}, "required": ["browser_style"]}, "options_ui": {"type": "object", "properties": {"browser_style": {"type": "boolean"}}, "required": ["browser_style"]}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["applications", "browser_action", "options_ui", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["set"]}}, "front": {"type": "object", "properties": {"title": {"type": "string"}, "imageUrl": {"type": "string"}, "type": {"type": "string"}, "subType": {"type": "string"}, "destiny": {"type": "string"}, "icons": {"type": "array", "items": {"type": "string"}}, "gametext": {"type": "string"}, "lore": {"type": "string"}}, "required": ["title", "imageUrl", "type", "subType", "destiny", "icons", "gametext", "lore"]}, "legacy": {"type": "boolean"}}, "required": ["id", "gempId", "side", "rarity", "set", "printings", "front", "legacy"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 4105, "gempId" : "201_37", "side" : "Dark", "rarity" : "C1", "set" : "201", "printings" : [{"set" : "201"}], "front" : {"title" : "Turn It Off! Turn It Off! (V)", "imageUrl" : "https://res.starwarsccg.org/cards/Virtual1-Dark/large/turnitoffturnitoff.gif", "type" : "Interrupt", "subType" : "Used", "destiny" : "5", "icons" : ["Hoth"], "gametext" : "Play a Defensive Shield from under your Starting Effect. OR If opponent just deployed a [Maintenance] card, it may not battle for remainder of turn. OR Cancel Out Of Commission (if attempting to place a card out of play). (Immune to Sense.)", "lore" : "'Turn it off! Turn it off! Off! TURN IT OFF!'"}, "legacy" : false}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["set"]}}, "front": {"type": "object", "properties": {"title": {"type": "string"}, "imageUrl": {"type": "string"}, "type": {"type": "string"}, "subType": {"type": "string"}, "destiny": {"type": "string"}, "icons": {"type": "array", "items": {"type": "string"}}, "gametext": {"type": "string"}, "lore": {"type": "string"}}, "required": ["title", "imageUrl", "type", "subType", "destiny", "icons", "gametext", "lore"]}, "legacy": {"type": "boolean"}}, "required": ["id", "gempId", "side", "rarity", "set", "printings", "front", "legacy"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : 404407955, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "86c5b0031ca845b27261c6a2bc12a6c6", "wof:id" : 404407955, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.29063498397692, 43.54997344849568, 2.32906408973569, 43.58655964027466], "geometry" : {"coordinates" : [[[2.32351580640574, 43.54997344849568], [2.30485610956056, 43.56467481310847], [2.29709223040065, 43.56107971494045], [2.29063498397692, 43.56997252275438], [2.30104510304192, 43.58092740762068], [2.31939578548356, 43.58655964027466], [2.32906408973569, 43.575912349528], [2.32388222928551, 43.57033756936086], [2.31919500126168, 43.57009233913142], [2.32351580640574, 43.54997344849568]]], "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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"externalId": {"type": "integer"}, "food": {"type": "string"}}, "required": ["externalId", "food"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"externalId" : 1, "food" : "Burger"}, {"externalId" : 1, "food" : "Pizza"}, {"externalId" : 1, "food" : "Nachos"}, {"externalId" : 2, "food" : "Burger"}, {"externalId" : 2, "food" : "Pasta"}, {"externalId" : 3, "food" : "Tortilla"}, {"externalId" : 3, "food" : "Pasta"}, {"externalId" : 3, "food" : "Burger"}, {"externalId" : 4, "food" : "Burger"}, {"externalId" : 6, "food" : "Pasta"}, {"externalId" : 6, "food" : "Tortilla"}, {"externalId" : 6, "food" : "Nachos"}, {"externalId" : 6, "food" : "Burger"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"externalId": {"type": "integer"}, "food": {"type": "string"}}, "required": ["externalId", "food"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "1403020001", "nama" : "SANGLAR"}, {"id" : "1403020002", "nama" : "PULAU KECIL"}, {"id" : "1403020003", "nama" : "PULAU KIJANG"}, {"id" : "1403020004", "nama" : "SUNGAI UNDAN"}, {"id" : "1403020005", "nama" : "SUNGAI TERAB"}, {"id" : "1403020010", "nama" : "SEBERANG SANGLAR"}, {"id" : "1403020011", "nama" : "MEKAR SARI"}, {"id" : "1403020012", "nama" : "SEBERANG PULAU KIJANG"}, {"id" : "1403020013", "nama" : "SUNGAI ASAM"}, {"id" : "1403020014", "nama" : "PULAU RUKU"}, {"id" : "1403020015", "nama" : "METRO"}, {"id" : "1403020016", "nama" : "MADANI"}, {"id" : "1403020017", "nama" : "TANJUNG LABUH"}, {"id" : "1403020018", "nama" : "SUNGAI MAHANG"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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" : 1972, "sex" : "F", "n" : 6, "prop" : 3.72e-06}, {"year" : 1983, "sex" : "F", "n" : 6, "prop" : 3.35e-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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/vanity/cute/cutecabinet/cutecabinet1.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/vanity/cute/cutecabinet/cutecabinet1.object"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"DeniedAlternatives" : [], "Files" : {"objects/vanity/cute/cutecabinet/cutecabinet1.object" : ["/description"]}, "Texts" : {"Chs" : "\u4e00\u4e2a\u575a\u56fa\u7684\u3001\u53ef\u7231\u7684\u67dc\u5b50\u3002", "Eng" : "A sturdy cute cabinet."}}, {"DeniedAlternatives" : [], "Files" : {"objects/vanity/cute/cutecabinet/cutecabinet1.object" : ["/shortdescription"]}, "Texts" : {"Chs" : "\u53ef\u7231\u7684\u67dc\u5b50", "Eng" : "Cute Cabinet"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/vanity/cute/cutecabinet/cutecabinet1.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/vanity/cute/cutecabinet/cutecabinet1.object"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 4724, "surahNumber" : "051", "ayatNumber" : "049", "arabic" : "\u0648\u064e\u0645\u0650\u0646\u0652 \u0643\u064f\u0644\u0651\u0650 \u0634\u064e\u064a\u0652\u0621\u064d \u062e\u064e\u0644\u064e\u0642\u0652\u0646\u064e\u0627 \u0632\u064e\u0648\u0652\u062c\u064e\u064a\u0652\u0646\u0650 \u0644\u064e\u0639\u064e\u0644\u0651\u064e\u0643\u064f\u0645\u0652 \u062a\u064e\u0630\u064e\u0643\u0651\u064e\u0631\u064f\u0648\u0646\u064e", "english" : "And of everything We have created pairs, that you may remember (the Grace of Allah).", "bengali" : "\u0986\u09ae\u09bf \u09aa\u09cd\u09b0\u09a4\u09cd\u09af\u09c7\u0995 \u09ac\u09b8\u09cd\u09a4\u09c1 \u099c\u09c7\u09be\u09dc\u09be\u09df \u099c\u09c7\u09be\u09dc\u09be\u09df \u09b8\u09c3\u09b7\u09cd\u099f\u09bf \u0995\u09b0\u09c7\u099b\u09bf, \u09af\u09be\u09a4\u09c7 \u09a4\u09c7\u09be\u09ae\u09b0\u09be \u09b9\u09c3\u09a6\u09df\u0999\u09cd\u0997\u09ae \u0995\u09b0\u0964"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"apireq": {"type": "object", "properties": {"version": {"type": "string"}, "from": {"type": "string"}, "requires": {"type": "object", "properties": {"content-type": {"type": "string"}}, "required": ["content-type"]}}, "required": ["version", "from", "requires"]}, "content-type": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["apireq", "content-type"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "bnet", "version" : "1.0.0", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"apireq" : {"version" : "git+https://github.com/Dashron/apireq.git#c7877820c687c887126aab7adad4c8aa171d5f45", "from" : "git+https://github.com/Dashron/apireq.git", "requires" : {"content-type" : "^1.0.4"}}, "content-type" : {"version" : "1.0.4", "resolved" : "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", "integrity" : "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"apireq": {"type": "object", "properties": {"version": {"type": "string"}, "from": {"type": "string"}, "requires": {"type": "object", "properties": {"content-type": {"type": "string"}}, "required": ["content-type"]}}, "required": ["version", "from", "requires"]}, "content-type": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["apireq", "content-type"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"submissionId": {"type": "string"}}, "required": ["submissionId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"submissionId" : "a386e91a0662267f004facc2cce7b7e3b9ff7dbf5568037257deb36c3ac42661"} | json_instruct | {"type": "object", "properties": {"submissionId": {"type": "string"}}, "required": ["submissionId"], "$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": {"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" : "KOTA TANGERANG SELATAN", "originalFilename" : "Image (81).jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 103220, "noUrut" : 1, "nama" : "Drs. WENNY WAROUW", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA BEKASI", "originalFilename" : "STEVANUS.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 212082, "noUrut" : 2, "nama" : "STEVANUS J. MANAHAMPI, ST", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "BOGOR", "originalFilename" : "GLORI N PAPUTUNGAN - PAS PHOTO.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 103634, "noUrut" : 3, "nama" : "GLORI NOVITA PAPUTUNGAN", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "BANDUNG", "originalFilename" : "foto viktor.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 106131, "noUrut" : 4, "nama" : "VICTOR OKTIVIAN PATTYRANIE, S.Pd.K., M.Pd", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "JAKARTA PUSAT", "originalFilename" : "foto lieke.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 141021, "noUrut" : 5, "nama" : "LIEKE TIELUNG, ST., MPA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA BEKASI", "originalFilename" : "IMG20180716153350.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 273019, "noUrut" : 6, "nama" : "Dr. H. ADHY FIRDAUS SAADY, S.E., M.M", "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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "2": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1", "2"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : {"0" : {"m1" : "\u0628\u0647\u0627\u0631 \u0628\u0627\u063a \u0648 \u06af\u0644 \u0627\u0645\u0631\u0648\u0632\u060c \u06af\u0648\u06cc\u06cc\u0627 \u062e\u0648\u0634 \u0646\u06cc\u0633\u062a", "m2" : "\u0646\u062f\u0627\u0646\u0645 \u0627\u06cc\u0646 \u0632 \u0628\u0647\u0627\u0631\u0633\u062a\u060c \u06cc\u0627 \u0645\u0631\u0627 \u062e\u0648\u0634 \u0646\u06cc\u0633\u062a"}, "1" : {"m1" : "\u062f\u0644\u0627 \u0628\u0647 \u0639\u0632 \u0642\u0646\u0627\u0639\u062a \u0628\u0633\u0627\u0632 \u0648 \u0639\u0632\u062a \u0646\u0641\u0633", "m2" : "\u06a9\u0647 \u0628\u0627\u0631 \u0645\u0646\u062a \u0627\u062d\u0633\u0627\u0646 \u0647\u0631 \u06af\u062f\u0627\u060c \u062e\u0648\u0634 \u0646\u06cc\u0633\u062a"}, "2" : {"m1" : "\u0628\u0631\u0648\u0646 \u0632 \u06af\u0646\u062c \u0642\u0646\u0627\u0639\u062a\u060c \u0628\u0633\u06cc\u0637 \u0631\u0648\u06cc \u0632\u0645\u06cc\u0646", "m2" : "\u0628\u0647 \u067e\u0627\u06cc \u062d\u0631\u0635 \u0628\u06af\u0634\u062a\u06cc\u0645 \u0648 \u0647\u06cc\u0686 \u062c\u0627\u060c \u062e\u0648\u0634 \u0646\u06cc\u0633\u062a"}}} | json_instruct | {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "2": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1", "2"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"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=114m --min_periods=98 --markdown_buy_pct=3.890576023127702 --markup_sell_pct=2.006643772248986 --order_type=maker --sell_stop_pct=0 --buy_stop_pct=6 --profit_stop_enable_pct=13 --profit_stop_pct=10 --trend_ema=27 --oversold_rsi_periods=11 --oversold_rsi=70 --backtester_generation=21 --strategy=trend_ema --days=14 --runGenerations=2 --maxCores=66 --currency_capital=500 --filename=none", "queryStart" : "2020-10-11T07:06:00.000Z", "queryEnd" : "2020-11-02T06:52:43.306Z", "iteration" : 21, "startTime" : "2020-11-02T06:52:43.327Z", "endTime" : "2020-11-02T06:53:21.952Z", "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": {"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": {"airtable": {"type": "string"}, "ask-sdk-core": {"type": "string"}, "ask-sdk-local-debug": {"type": "string"}, "ask-sdk-model": {"type": "string"}, "aws-sdk": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["airtable", "ask-sdk-core", "ask-sdk-local-debug", "ask-sdk-model", "aws-sdk", "node-fetch"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "hello-world", "version" : "1.1.0", "description" : "alexa utility for quickly building skills", "main" : "index.js", "scripts" : {"test" : "cd tests && jest"}, "author" : "Amazon Alexa", "license" : "ISC", "dependencies" : {"airtable" : "^0.10.1", "ask-sdk-core" : "^2.6.0", "ask-sdk-local-debug" : "^1.1.0", "ask-sdk-model" : "^1.18.0", "aws-sdk" : "^2.326.0", "node-fetch" : "^2.6.1"}} | 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": {"airtable": {"type": "string"}, "ask-sdk-core": {"type": "string"}, "ask-sdk-local-debug": {"type": "string"}, "ask-sdk-model": {"type": "string"}, "aws-sdk": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["airtable", "ask-sdk-core", "ask-sdk-local-debug", "ask-sdk-model", "aws-sdk", "node-fetch"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"pl_cbflag": {"type": "string"}, "pl_disc": {"type": "string"}, "pl_pelink": {"type": "string"}, "st_rad": {"type": "string"}, "pl_imgflag": {"type": "string"}, "pl_massj": {"type": "string"}, "pl_masse": {"type": "string"}, "pl_facility": {"type": "string"}, "st_teff": {"type": "string"}, "pl_astflag": {"type": "string"}, "hip_name": {"type": "string"}, "pl_pnum": {"type": "string"}, "st_optmag": {"type": "string"}, "ra": {"type": "string"}, "pl_discmethod": {"type": "string"}, "st_age": {"type": "string"}, "hd_name": {"type": "string"}, "pl_hostname": {"type": "string"}, "st_mass": {"type": "string"}, "pl_tranflag": {"type": "string"}, "pl_name": {"type": "string"}, "pl_rvflag": {"type": "string"}, "pl_orbeccen": {"type": "string"}, "rowupdate": {"type": "string"}, "st_dist": {"type": "string"}, "pl_telescope": {"type": "string"}, "pl_edelink": {"type": "string"}, "pl_omflag": {"type": "string"}, "pl_orbper": {"type": "string"}, "dec": {"type": "string"}}, "required": ["pl_cbflag", "pl_disc", "pl_pelink", "st_rad", "pl_imgflag", "pl_massj", "pl_masse", "pl_facility", "st_teff", "pl_astflag", "hip_name", "pl_pnum", "st_optmag", "ra", "pl_discmethod", "st_age", "hd_name", "pl_hostname", "st_mass", "pl_tranflag", "pl_name", "pl_rvflag", "pl_orbeccen", "rowupdate", "st_dist", "pl_telescope", "pl_edelink", "pl_omflag", "pl_orbper", "dec"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pl_cbflag" : "0", "pl_disc" : "2004", "pl_pelink" : "http://exoplanet.eu/catalog/55_cnc_c/", "st_rad" : "0.94", "pl_imgflag" : "0", "pl_massj" : "0.17140", "pl_masse" : "54.47380", "pl_facility" : "McDonald Observatory", "st_teff" : "5196.00", "pl_astflag" : "0", "hip_name" : "HIP 43587", "pl_pnum" : "5", "st_optmag" : "5.960", "ra" : "133.149216", "pl_discmethod" : "Radial Velocity", "st_age" : "10.200", "hd_name" : "HD 75732", "pl_hostname" : "55 Cnc", "st_mass" : "0.91", "pl_tranflag" : "0", "pl_name" : "55 Cnc c", "pl_rvflag" : "1", "pl_orbeccen" : "0.020000", "rowupdate" : "2014-10-29", "st_dist" : "12.53", "pl_telescope" : "9.2 m Hobby-Eberly Telescope", "pl_edelink" : "http://exoplanets.org/detail/55_Cnc_c", "pl_omflag" : "0", "pl_orbper" : "44.41750000", "dec" : "28.330818"} | json_instruct | {"type": "object", "properties": {"pl_cbflag": {"type": "string"}, "pl_disc": {"type": "string"}, "pl_pelink": {"type": "string"}, "st_rad": {"type": "string"}, "pl_imgflag": {"type": "string"}, "pl_massj": {"type": "string"}, "pl_masse": {"type": "string"}, "pl_facility": {"type": "string"}, "st_teff": {"type": "string"}, "pl_astflag": {"type": "string"}, "hip_name": {"type": "string"}, "pl_pnum": {"type": "string"}, "st_optmag": {"type": "string"}, "ra": {"type": "string"}, "pl_discmethod": {"type": "string"}, "st_age": {"type": "string"}, "hd_name": {"type": "string"}, "pl_hostname": {"type": "string"}, "st_mass": {"type": "string"}, "pl_tranflag": {"type": "string"}, "pl_name": {"type": "string"}, "pl_rvflag": {"type": "string"}, "pl_orbeccen": {"type": "string"}, "rowupdate": {"type": "string"}, "st_dist": {"type": "string"}, "pl_telescope": {"type": "string"}, "pl_edelink": {"type": "string"}, "pl_omflag": {"type": "string"}, "pl_orbper": {"type": "string"}, "dec": {"type": "string"}}, "required": ["pl_cbflag", "pl_disc", "pl_pelink", "st_rad", "pl_imgflag", "pl_massj", "pl_masse", "pl_facility", "st_teff", "pl_astflag", "hip_name", "pl_pnum", "st_optmag", "ra", "pl_discmethod", "st_age", "hd_name", "pl_hostname", "st_mass", "pl_tranflag", "pl_name", "pl_rvflag", "pl_orbeccen", "rowupdate", "st_dist", "pl_telescope", "pl_edelink", "pl_omflag", "pl_orbper", "dec"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "e", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"s" : ["`fangad~"], "e" : ["\ufff9`Tapakad~ `han~ `no~ `fali~ `ko~ `kilang~.\ufffa\ufffb\u98a8\u628a\u6a39\u9023\u6839\u62d4\u8d77\u4f86\u3002"], "f" : "\u9023\u6839\u7ffb\u5012\u3001\u62d4\u8d77\uff0c\u5718\u9ad4\u6027\u5730\u51fa\u52d5\uff0c\u50be\u5de2\u800c\u51fa\u3002"}]}], "t" : "tapakad"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "e", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Barangay 858, Manila, Metropolitan Manila, National Capital Region, PH", "locale" : "ph.national-capital-region.metropolitan-manila.manila.barangay-858", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "12", "region_reference" : "141", "region_name" : "National Capital Region", "province_id" : "47", "province_reference" : "47", "province_name" : "Metropolitan Manila", "city_id" : "814", "city_reference" : "955", "city_name" : "Manila", "barangay_id" : "23637", "barangay_reference" : "25263", "barangay_name" : "Barangay 858"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[121.00119, 14.590261], [121.00103, 14.589901], [121.000999, 14.589761], [121.001053, 14.589571], [121.001152, 14.589181], [121.001198, 14.588961], [121.001259, 14.58864], [121.001297, 14.58838], [121.000977, 14.58845], [121.000717, 14.58845], [121.00032, 14.590581], [121.000656, 14.59051], [121.000908, 14.59043], [121.00119, 14.590261]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["test", "lint", "coverage"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/polyfill": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/register": {"type": "string"}, "flow-platform-sdk": {"type": "string"}}, "required": ["@babel/core", "@babel/polyfill", "@babel/preset-env", "@babel/register", "flow-platform-sdk"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/polyfill": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/register": {"type": "string"}, "babel-eslint": {"type": "string"}, "chai": {"type": "string"}, "eslint": {"type": "string"}, "mocha": {"type": "string"}, "nyc": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["@babel/core", "@babel/polyfill", "@babel/preset-env", "@babel/register", "babel-eslint", "chai", "eslint", "mocha", "nyc", "uuid"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "flow-change-property-component", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "mocha", "lint" : "eslint --fix --ignore-path .gitignore .", "coverage" : "nyc mocha"}, "author" : "", "license" : "Apache-2.0", "dependencies" : {"@babel/core" : "^7.4.4", "@babel/polyfill" : "^7.4.4", "@babel/preset-env" : "^7.4.4", "@babel/register" : "^7.4.4", "flow-platform-sdk" : "^1.2.0"}, "devDependencies" : {"@babel/core" : "^7.2.2", "@babel/polyfill" : "^7.2.3", "@babel/preset-env" : "^7.2.3", "@babel/register" : "^7.0.0", "babel-eslint" : "^10.0.3", "chai" : "^4.2.0", "eslint" : "^6.5.1", "mocha" : "^5.2.0", "nyc" : "^14.1.1", "uuid" : "^3.3.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["test", "lint", "coverage"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/polyfill": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/register": {"type": "string"}, "flow-platform-sdk": {"type": "string"}}, "required": ["@babel/core", "@babel/polyfill", "@babel/preset-env", "@babel/register", "flow-platform-sdk"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/polyfill": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/register": {"type": "string"}, "babel-eslint": {"type": "string"}, "chai": {"type": "string"}, "eslint": {"type": "string"}, "mocha": {"type": "string"}, "nyc": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["@babel/core", "@babel/polyfill", "@babel/preset-env", "@babel/register", "babel-eslint", "chai", "eslint", "mocha", "nyc", "uuid"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"CONTOUR INTEGRAL(CONTOURS)": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "scope": {"type": "string"}}, "required": ["prefix", "body", "description", "scope"]}, "CONTOUR INTEGRAL(CONTOURS, CRACK NAME, CRACK TIP NODES, DIRECTION, FREQUENCY, NORMAL, OUTPUT, RESIDUAL STRESS STEP, SYMM, TYPE, XFEM)": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "scope": {"type": "string"}}, "required": ["prefix", "body", "description", "scope"]}}, "required": ["CONTOUR INTEGRAL(CONTOURS)", "CONTOUR INTEGRAL(CONTOURS, CRACK NAME, CRACK TIP NODES, DIRECTION, FREQUENCY, NORMAL, OUTPUT, RESIDUAL STRESS STEP, SYMM, TYPE, XFEM)"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"CONTOUR INTEGRAL(CONTOURS)" : {"prefix" : "*CONTOUR INTEGRAL", "body" : ["*CONTOUR INTEGRAL, CONTOURS=${1}"], "description" : "CONTOUR INTEGRAL with parameter(s) CONTOURS.", "scope" : "source.inp"}, "CONTOUR INTEGRAL(CONTOURS, CRACK NAME, CRACK TIP NODES, DIRECTION, FREQUENCY, NORMAL, OUTPUT, RESIDUAL STRESS STEP, SYMM, TYPE, XFEM)" : {"prefix" : "*CONTOUR INTEGRAL", "body" : ["*CONTOUR INTEGRAL, CONTOURS=${1}, CRACK NAME=${2}, CRACK TIP NODES=${3}, DIRECTION=${4}, FREQUENCY=${5}, NORMAL=${6}, OUTPUT=${7}, RESIDUAL STRESS STEP=${8}, SYMM=${9}, TYPE=${10}, XFEM=${11}"], "description" : "CONTOUR INTEGRAL with parameter(s) CONTOURS, CRACK NAME, CRACK TIP NODES, DIRECTION, FREQUENCY, NORMAL, OUTPUT, RESIDUAL STRESS STEP, SYMM, TYPE, XFEM.", "scope" : "source.inp"}} | json_instruct | {"type": "object", "properties": {"CONTOUR INTEGRAL(CONTOURS)": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "scope": {"type": "string"}}, "required": ["prefix", "body", "description", "scope"]}, "CONTOUR INTEGRAL(CONTOURS, CRACK NAME, CRACK TIP NODES, DIRECTION, FREQUENCY, NORMAL, OUTPUT, RESIDUAL STRESS STEP, SYMM, TYPE, XFEM)": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "scope": {"type": "string"}}, "required": ["prefix", "body", "description", "scope"]}}, "required": ["CONTOUR INTEGRAL(CONTOURS)", "CONTOUR INTEGRAL(CONTOURS, CRACK NAME, CRACK TIP NODES, DIRECTION, FREQUENCY, NORMAL, OUTPUT, RESIDUAL STRESS STEP, SYMM, TYPE, XFEM)"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"currency:XLT": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "payment:cash:XLT-FLOR": {"type": "string"}, "phone": {"type": "string"}, "shop": {"type": "string"}, "website": {"type": "string"}, "id": {"type": "string"}}, "required": ["currency:XLT", "name", "opening_hours", "payment:cash:XLT-FLOR", "phone", "shop", "website", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "id" : "node/1792842252", "properties" : {"currency:XLT" : "FLOR", "name" : "AMAP du Pichou", "opening_hours" : "Fr 18:00-19:30", "payment:cash:XLT-FLOR" : "yes", "phone" : "+33 6 61 43 55 29", "shop" : "farm", "website" : "https://amapdupichou.wordpress.com/", "id" : "node/1792842252"}, "geometry" : {"type" : "Point", "coordinates" : [6.2802712, 48.7542403]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"currency:XLT": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "payment:cash:XLT-FLOR": {"type": "string"}, "phone": {"type": "string"}, "shop": {"type": "string"}, "website": {"type": "string"}, "id": {"type": "string"}}, "required": ["currency:XLT", "name", "opening_hours", "payment:cash:XLT-FLOR", "phone", "shop", "website", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"title" : "Tutorial Einf\u00fchrung", "description" : "Hier entsteht das Tutorial. Hier wirst du lernen, wie du in der Cryptowelt erfolgreich wirst. Nicht nur das, sondern du wirst die Grundf\u00e4higkeit erlenern, zu handeln XXX. Aber auch was du alles auf der Talkaboat Webseite finden kannst. Es ist f\u00fcr alle etwas dabei, Anf\u00e4nger und Profis. Du kannst alles schaffen, wenn du es nur willst!"}, {"title" : "Chapter 1", "description" : "Was ist eine Kryptow\u00e4hrung?"}, {"title" : "Chapter 2", "description" : "Ein sinnvolles zweites?"}, {"title" : "Chapter 3", "description" : "Was ist eine Kryptow\u00e4hrung?"}, {"title" : "Chapter 4", "description" : "Ein sinnvolles zweites?"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"live-server": {"type": "string"}}, "required": ["live-server"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "playgame", "version" : "0.1.0", "description" : "Playgame of rock, papel and scissors", "main" : "src/index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "live-server"}, "keywords" : ["game"], "author" : "Juan Gonzalez", "license" : "MIT", "devDependencies" : {"live-server" : "^1.2.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"live-server": {"type": "string"}}, "required": ["live-server"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1415.4970829274494, 569.6419994917621], [1402.7911407818392, 601.4068548557875], [1377.379256490619, 1509.8817182669095], [1360.4380002964722, 1524.705317436788]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid 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": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 85863939, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "6c7bb44385a71d296e267b40be5feec0", "wof:id" : 85863939, "wof:repo" : "whosonfirst-data-admin-es"}, "bbox" : [-2.962703, 43.282699, -2.962703, 43.282699], "geometry" : {"coordinates" : [-2.962703, 43.282699], "type" : "Point"}} | 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": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes", "objectiveValue", "solverRuntimeInMilliseconds", "optional"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : 3, "startTimes" : [11, 54, 33, 45, 72, 85, 100, 115, 138, 164], "objectiveValue" : 29.0, "solverRuntimeInMilliseconds" : 162, "optional" : {}} | json_instruct | {"type": "object", "properties": {"status": {"type": "integer"}, "startTimes": {"type": "array", "items": {"type": "integer"}}, "objectiveValue": {"type": "number"}, "solverRuntimeInMilliseconds": {"type": "integer"}, "optional": {"type": "object", "properties": {}, "required": []}}, "required": ["status", "startTimes", "objectiveValue", "solverRuntimeInMilliseconds", "optional"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"problemId": {"type": "integer"}, "seed": {"type": "integer"}, "solution": {"type": "string"}}, "required": ["problemId", "seed", "solution"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"problemId" : 8, "seed" : 28581, "solution" : "444444222222x2x333333x22222x444444425444444252544444422252544444222222254354444442x444422222x2x4422225555442244444345342222555544344212x444445334452121131213344442243344442225225555434555422545554353344445434222212x42544455344443542522254444342544452244433454342544453425222544434252225425434443442544434252544342522254434252225425343344453443455453444544534444222522552244442225254444455344444345344442555344442225553444422222555344444424444422222444444222444444244444434534444254434444222544344442222254434444222225425344444424444422222552244444222x4444454444555344442222254534444344534444222222544443544442544422222x333x22x2x44445534422x3333x25452x334333444343"} | json_instruct | {"type": "object", "properties": {"problemId": {"type": "integer"}, "seed": {"type": "integer"}, "solution": {"type": "string"}}, "required": ["problemId", "seed", "solution"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : "9414024012", "district_id" : "9414024", "name" : "OGORITO"} | 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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"7728": {"type": "string"}, "7731": {"type": "string"}}, "required": ["7728", "7731"]}, "timeto": {"type": "object", "properties": {"7728": {"type": "number"}, "7731": {"type": "number"}}, "required": ["7728", "7731"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 7730, "title" : ["[Caverns, Low Tunnel]"], "description" : ["Phosphorescent moss grows profusely in streaks down the undulating stone walls and in saucer-shaped hollows along the rough cave floor, its pale glow almost making it appear as if the walls were melting. The floor of the tunnel meanders downward to the northwest, where the darkness emits a faint scent of distant salt air."], "paths" : ["Obvious exits: northwest"], "location" : "the Coastal Cliffs", "wayto" : {"7728" : "go opening", "7731" : "northwest"}, "timeto" : {"7728" : 0.2, "7731" : 0.2}, "image" : "wl-coastal_cliffs-1264234799.png", "image_coords" : [182, 1281, 192, 1291]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"7728": {"type": "string"}, "7731": {"type": "string"}}, "required": ["7728", "7731"]}, "timeto": {"type": "object", "properties": {"7728": {"type": "number"}, "7731": {"type": "number"}}, "required": ["7728", "7731"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "\u87f2\u59e6/INSECT\uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "o-dio", "description" : "\u30d5\u30eb\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u52d5\u753b\u6642\u9593\u306f8\u520641\u79d2\u3067\u3059undefinedundefined<aundefinedhref='https://fantia.jp/posts/1051564'>https://fantia.jp/posts/1051564</a>", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/2287676/thumbnail-2287676_0009.jpg?itok=JaKrA_Nh", "download" : "https://ecchi.iwara.tv/api/video/zd5nlhqvrjhgv4rgr", "origin" : "https://ecchi.iwara.tv/videos/zd5nlhqvrjhgv4rgr"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$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"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "dist": {"type": "string"}}, "required": ["test", "start", "dist"]}, "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": {"babel-preset-es2015": {"type": "string"}, "babelify": {"type": "string"}, "browserify": {"type": "string"}, "gulp": {"type": "string"}, "gulp-clean": {"type": "string"}, "gulp-connect": {"type": "string"}, "gulp-ejs": {"type": "string"}, "gulp-less": {"type": "string"}, "gulp-uglify": {"type": "string"}, "through2": {"type": "string"}}, "required": ["babel-preset-es2015", "babelify", "browserify", "gulp", "gulp-clean", "gulp-connect", "gulp-ejs", "gulp-less", "gulp-uglify", "through2"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "simple-fixed-nav", "version" : "1.0.0-alpha", "description" : "Responsive, fixed and vanilla JavaScript navbar.", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "gulp clean; gulp default", "dist" : "gulp clean; gulp dist"}, "repository" : {"type" : "git", "url" : "git+https://github.com/adtile/simple-fixed-nav.git"}, "keywords" : ["fixednav", "fixed", "nav", "responsive", "javascript", "navbar", "adtile"], "author" : "Adtile Technologies Inc.", "license" : "MIT", "bugs" : {"url" : "https://github.com/adtile/simple-fixed-nav/issues"}, "homepage" : "https://github.com/adtile/simple-fixed-nav#readme", "devDependencies" : {"babel-preset-es2015" : "^6.9.0", "babelify" : "^7.3.0", "browserify" : "^13.0.1", "gulp" : "^3.9.1", "gulp-clean" : "^0.3.2", "gulp-connect" : "^4.2.0", "gulp-ejs" : "^2.1.2", "gulp-less" : "^3.1.0", "gulp-uglify" : "^1.5.4", "through2" : "^2.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "dist": {"type": "string"}}, "required": ["test", "start", "dist"]}, "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": {"babel-preset-es2015": {"type": "string"}, "babelify": {"type": "string"}, "browserify": {"type": "string"}, "gulp": {"type": "string"}, "gulp-clean": {"type": "string"}, "gulp-connect": {"type": "string"}, "gulp-ejs": {"type": "string"}, "gulp-less": {"type": "string"}, "gulp-uglify": {"type": "string"}, "through2": {"type": "string"}}, "required": ["babel-preset-es2015", "babelify", "browserify", "gulp", "gulp-clean", "gulp-connect", "gulp-ejs", "gulp-less", "gulp-uglify", "through2"]}}, "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": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}, "egis": {"type": "null"}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1", "egis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\u5de5\u5ee0\u540d\u7a31" : "\u6975\u54c1\u838a\u5712\u5496\u5561\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "10000229", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u5609\u7fa9\u7e23\u5927\u6797\u93ae\u4e09\u6751\u91cc\u6a4b\u5b50\u982d1-5\u865f", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u5609\u7fa9\u7e23\u5927\u6797\u93ae\u4e09\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u5433\u6b63\u90a6", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "54906880", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "1050825", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["08\u98df\u54c1\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["089\u5176\u4ed6\u98df\u54c1"], "egis" : null} | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}, "egis": {"type": "null"}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1", "egis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1916, 5], [1921, 5], [1922, 5], [1934, 6], [1937, 5], [1940, 9], [1941, 6], [1942, 5], [1943, 6], [1944, 9], [1947, 7], [1948, 10], [1950, 5], [1951, 7], [1953, 10], [1955, 5], [1956, 5], [1957, 11], [1958, 9], [1959, 10], [1960, 20], [1961, 32], [1962, 23], [1963, 36], [1964, 23], [1965, 27], [1966, 35], [1967, 33], [1968, 27], [1969, 38], [1970, 50], [1971, 35], [1972, 40], [1973, 59], [1974, 53], [1975, 42], [1976, 55], [1977, 53], [1978, 55], [1979, 54], [1980, 59], [1981, 74], [1982, 74], [1983, 65], [1984, 66], [1985, 77], [1986, 191], [1987, 151], [1988, 117], [1989, 138], [1990, 150], [1991, 117], [1992, 83], [1993, 108], [1994, 78], [1995, 74], [1996, 66], [1997, 69], [1998, 41], [1999, 44], [2000, 41], [2001, 37], [2002, 31], [2003, 18], [2004, 34], [2005, 27], [2006, 39], [2007, 31], [2008, 33], [2009, 33], [2010, 40], [2011, 44], [2012, 39], [2013, 43], [2014, 37]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"selectize.css": {"type": "string"}, "selectize.js": {"type": "string"}, "selectize.min.css": {"type": "string"}, "selectize.min.js": {"type": "string"}}, "required": ["selectize.css", "selectize.js", "selectize.min.css", "selectize.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"selectize.css" : "sha256-ylYZzWO33aizAY8MCPsbhYW0J+njSITGg8TI2smF9kE=", "selectize.js" : "sha256-xBjw/v8xrqZWlH7Xuq4zkABIm8GivaeoE65z/d4pujk=", "selectize.min.css" : "sha256-Cs7fqX1ZgKf/nvbPJtGdKl2JmFeNHxuIpAiS8JGwch4=", "selectize.min.js" : "sha256-YPnEt0ps4lfxkY0+2dnK6yCbYtku6RPLKchk3kUvBWI="} | json_instruct | {"type": "object", "properties": {"selectize.css": {"type": "string"}, "selectize.js": {"type": "string"}, "selectize.min.css": {"type": "string"}, "selectize.min.js": {"type": "string"}}, "required": ["selectize.css", "selectize.js", "selectize.min.css", "selectize.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"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"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "boolean"}, "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", "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/\"e505a9f56ee47dcdd5809e2f59a60075\"", "Last-Modified" : "Wed, 29 May 2019 11:34:12 GMT", "base" : {"repo" : {"name" : "libva-feedstock"}}, "closed_at" : "2019-05-29T11:34:12Z", "created_at" : "2019-05-29T07:32:09Z", "head" : {"ref" : "2.5.0.pre1"}, "html_url" : "https://github.com/conda-forge/libva-feedstock/pull/5", "id" : 283128840, "labels" : [], "mergeable" : true, "mergeable_state" : "clean", "merged" : false, "merged_at" : null, "number" : 5, "state" : "closed", "updated_at" : "2019-05-29T11:34:12Z"} | 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"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "boolean"}, "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", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "$schema ": {"type": "string"}, "is-complex": {"type": "boolean"}, "also": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"type": {"type": "string"}, "additionalProperties": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["type", "additionalProperties"]}}, "required": ["properties"]}, "additionalProperties": {"type": "boolean"}, "definitions": {"type": "object", "properties": {"property_element": {"type": "object", "properties": {"type": {"type": "string"}, "if": {"type": "object", "properties": {"required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"observable": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["observable"]}}, "required": ["required", "properties"]}, "then": {"type": "object", "properties": {"const": {"type": "string"}}, "required": ["const"]}}, "required": ["type", "if", "then"]}}, "required": ["property_element"]}}, "required": ["title", "description", "$schema ", "is-complex", "also", "type", "properties", "additionalProperties", "definitions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "td-vocab-observable--PropertyAffordance", "description" : "observable: Indicates whether a remote servient can subscribe to (\"observe\") the Property, to receive change notifications or periodic updates (true/false).", "$schema " : "http://json-schema.org/draft-06/schema#", "is-complex" : true, "also" : ["td-property-names_observable", "td-boolean-type"], "type" : "object", "properties" : {"properties" : {"type" : "object", "additionalProperties" : {"$ref" : "#/definitions/property_element"}}}, "additionalProperties" : true, "definitions" : {"property_element" : {"type" : "object", "if" : {"required" : ["observable"], "properties" : {"observable" : {"type" : "boolean"}}}, "then" : {"const" : "td-vocab-observable--PropertyAffordance=pass"}}}} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "$schema ": {"type": "string"}, "is-complex": {"type": "boolean"}, "also": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"type": {"type": "string"}, "additionalProperties": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["type", "additionalProperties"]}}, "required": ["properties"]}, "additionalProperties": {"type": "boolean"}, "definitions": {"type": "object", "properties": {"property_element": {"type": "object", "properties": {"type": {"type": "string"}, "if": {"type": "object", "properties": {"required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"observable": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["observable"]}}, "required": ["required", "properties"]}, "then": {"type": "object", "properties": {"const": {"type": "string"}}, "required": ["const"]}}, "required": ["type", "if", "then"]}}, "required": ["property_element"]}}, "required": ["title", "description", "$schema ", "is-complex", "also", "type", "properties", "additionalProperties", "definitions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "\u516c\u5f00\u5b9a\u5236\u2014\u2014\u5a9a\u836f\u6ce8\u5c04\uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "hehe233", "description" : "Thisundefinedofundefinedcourseundefinedisundefinedextremelyundefinedgoodundefinedimo.undefinedCantundefinedwaitundefinedforundefinedtheundefinednextundefinedvideos", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/2339359/thumbnail-2339359_0013.jpg?itok=7Uri1nWv", "download" : "https://ecchi.iwara.tv/api/video/rrlwgtkkjbio248l2", "origin" : "https://ecchi.iwara.tv/videos/rrlwgtkkjbio248l2"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$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"}, "type": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"csa/guzzle-bundle": {"type": "string"}, "jane-php/open-api-runtime": {"type": "string"}, "php-http/guzzle6-adapter": {"type": "string"}, "symfony/dependency-injection": {"type": "string"}, "symfony/http-kernel": {"type": "string"}}, "required": ["csa/guzzle-bundle", "jane-php/open-api-runtime", "php-http/guzzle6-adapter", "symfony/dependency-injection", "symfony/http-kernel"]}, "require-dev": {"type": "object", "properties": {"friendsofphp/php-cs-fixer": {"type": "string"}, "jane-php/open-api": {"type": "string"}}, "required": ["friendsofphp/php-cs-fixer", "jane-php/open-api"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "prefer-stable": {"type": "boolean"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ConnectHolland\\KvkApiBundle\\": {"type": "string"}}, "required": ["ConnectHolland\\KvkApiBundle\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}}, "required": ["sort-packages"]}}, "required": ["name", "type", "description", "license", "require", "require-dev", "authors", "prefer-stable", "autoload", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "connectholland/kvk-api-bundle", "type" : "symfony-bundle", "description" : "A Symfony bundle to access KvK API", "license" : "MIT", "require" : {"csa/guzzle-bundle" : "^3.0", "jane-php/open-api-runtime" : "^4.0", "php-http/guzzle6-adapter" : "^1.1", "symfony/dependency-injection" : "^4.0", "symfony/http-kernel" : "^4.0"}, "require-dev" : {"friendsofphp/php-cs-fixer" : "^2", "jane-php/open-api" : "^4.0"}, "authors" : [{"name" : "Matthijs Hasenpflug", "email" : "matthijs@connectholland.nl"}], "prefer-stable" : true, "autoload" : {"psr-4" : {"ConnectHolland\\KvkApiBundle\\" : ""}}, "config" : {"sort-packages" : true}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"csa/guzzle-bundle": {"type": "string"}, "jane-php/open-api-runtime": {"type": "string"}, "php-http/guzzle6-adapter": {"type": "string"}, "symfony/dependency-injection": {"type": "string"}, "symfony/http-kernel": {"type": "string"}}, "required": ["csa/guzzle-bundle", "jane-php/open-api-runtime", "php-http/guzzle6-adapter", "symfony/dependency-injection", "symfony/http-kernel"]}, "require-dev": {"type": "object", "properties": {"friendsofphp/php-cs-fixer": {"type": "string"}, "jane-php/open-api": {"type": "string"}}, "required": ["friendsofphp/php-cs-fixer", "jane-php/open-api"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "prefer-stable": {"type": "boolean"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ConnectHolland\\KvkApiBundle\\": {"type": "string"}}, "required": ["ConnectHolland\\KvkApiBundle\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}}, "required": ["sort-packages"]}}, "required": ["name", "type", "description", "license", "require", "require-dev", "authors", "prefer-stable", "autoload", "config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[131.0, 21.25], [131.0, 21.333333333333332], [131.125, 21.333333333333332], [131.125, 21.25], [131.0, 21.25]]]}, "properties" : {"code" : 313170, "url" : "http://madefor.github.io/0410/api/v1/313170.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/313170.geojson"}} | 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": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "standard": {"type": "string"}, "ethlint": {"type": "string"}, "precommit": {"type": "string"}, "test": {"type": "string"}}, "required": ["postinstall", "standard", "ethlint", "precommit", "test"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-bignumber": {"type": "string"}, "ganache-cli": {"type": "string"}, "husky": {"type": "string"}, "lint-staged": {"type": "string"}, "mocha": {"type": "string"}, "solium": {"type": "string"}, "standard": {"type": "string"}, "truffle": {"type": "string"}, "typedarray-to-buffer": {"type": "string"}}, "required": ["chai", "chai-bignumber", "ganache-cli", "husky", "lint-staged", "mocha", "solium", "standard", "truffle", "typedarray-to-buffer"]}, "dependencies": {"type": "object", "properties": {"javascript-stringify": {"type": "string"}, "truffle-contract": {"type": "string"}}, "required": ["javascript-stringify", "truffle-contract"]}, "standard": {"type": "object", "properties": {"globals": {"type": "array", "items": {"type": "string"}}}, "required": ["globals"]}, "lint-staged": {"type": "object", "properties": {"*.js": {"type": "array", "items": {"type": "string"}}, "*.sol": {"type": "array", "items": {"type": "string"}}}, "required": ["*.js", "*.sol"]}}, "required": ["name", "version", "repository", "description", "scripts", "devDependencies", "dependencies", "standard", "lint-staged"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "solidity-bloom-filter", "version" : "1.0.0", "repository" : {"type" : "git", "url" : "git+https://github.com/wanseob/solidity-bloom-filter.git"}, "description" : "This is a 256 bit based bloom filter library written in Solidity", "scripts" : {"postinstall" : "chmod +x scripts/*", "standard" : ".\"/node_modules/.bin/standard\" test/**/*.js src/** --fix", "ethlint" : ".\"/node_modules/.bin/solium\" -d contracts --fix", "precommit" : "lint-staged && npm run test", "test" : ".\"/scripts/test_contracts.sh\""}, "devDependencies" : {"chai" : "^4.2.0", "chai-bignumber" : "^3.0.0", "ganache-cli" : "^6.3.0", "husky" : "^1.3.1", "lint-staged" : "^8.1.3", "mocha" : "^5.2.0", "solium" : "^1.2.2", "standard" : "^12.0.1", "truffle" : "^5.0.3", "typedarray-to-buffer" : "^3.1.5"}, "dependencies" : {"javascript-stringify" : "^1.6.0", "truffle-contract" : "^4.0.4"}, "standard" : {"globals" : ["contract", "artifacts", "web3", "describe", "context", "before", "beforeEach", "after", "afterEach", "it", "should", "expect", "assert"]}, "lint-staged" : {"*.js" : ["./node_modules/.bin/standard --fix", "git add"], "*.sol" : ["./node_modules/.bin/solium --fix --file", "git add"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "standard": {"type": "string"}, "ethlint": {"type": "string"}, "precommit": {"type": "string"}, "test": {"type": "string"}}, "required": ["postinstall", "standard", "ethlint", "precommit", "test"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-bignumber": {"type": "string"}, "ganache-cli": {"type": "string"}, "husky": {"type": "string"}, "lint-staged": {"type": "string"}, "mocha": {"type": "string"}, "solium": {"type": "string"}, "standard": {"type": "string"}, "truffle": {"type": "string"}, "typedarray-to-buffer": {"type": "string"}}, "required": ["chai", "chai-bignumber", "ganache-cli", "husky", "lint-staged", "mocha", "solium", "standard", "truffle", "typedarray-to-buffer"]}, "dependencies": {"type": "object", "properties": {"javascript-stringify": {"type": "string"}, "truffle-contract": {"type": "string"}}, "required": ["javascript-stringify", "truffle-contract"]}, "standard": {"type": "object", "properties": {"globals": {"type": "array", "items": {"type": "string"}}}, "required": ["globals"]}, "lint-staged": {"type": "object", "properties": {"*.js": {"type": "array", "items": {"type": "string"}}, "*.sol": {"type": "array", "items": {"type": "string"}}}, "required": ["*.js", "*.sol"]}}, "required": ["name", "version", "repository", "description", "scripts", "devDependencies", "dependencies", "standard", "lint-staged"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"queryName": {"type": "string"}, "severity": {"type": "string"}, "line": {"type": "integer"}, "fileName": {"type": "string"}}, "required": ["queryName", "severity", "line", "fileName"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"queryName" : "S3 Bucket Allows Put Or Restore Actions From All Principals", "severity" : "HIGH", "line" : 33, "fileName" : "positive1.yaml"}, {"queryName" : "S3 Bucket Allows Put Or Restore Actions From All Principals", "severity" : "HIGH", "line" : 42, "fileName" : "positive1.yaml"}, {"severity" : "HIGH", "line" : 56, "fileName" : "positive2.json", "queryName" : "S3 Bucket Allows Put Or Restore Actions From All Principals"}, {"severity" : "HIGH", "line" : 72, "fileName" : "positive2.json", "queryName" : "S3 Bucket Allows Put Or Restore Actions From All Principals"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"queryName": {"type": "string"}, "severity": {"type": "string"}, "line": {"type": "integer"}, "fileName": {"type": "string"}}, "required": ["queryName", "severity", "line", "fileName"]}, "$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"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "popper.js": {"type": "string"}, "vue": {"type": "string"}, "vue-class-component": {"type": "string"}, "vue-directive-tooltip": {"type": "string"}, "vue-loader": {"type": "string"}, "vue-template-compiler": {"type": "string"}}, "required": ["bootstrap", "jquery", "popper.js", "vue", "vue-class-component", "vue-directive-tooltip", "vue-loader", "vue-template-compiler"]}, "devDependencies": {"type": "object", "properties": {"@types/vue": {"type": "string"}, "vue-loader": {"type": "string"}}, "required": ["@types/vue", "vue-loader"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jekyll-vue", "version" : "0.10.0", "description" : "Testing Jekyll with vue", "main" : "lib/app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Lukas Chen", "license" : "MIT", "dependencies" : {"bootstrap" : "^4.1.3", "jquery" : "^3.3.1", "popper.js" : "^1.14.4", "vue" : "^2.5.17", "vue-class-component" : "^6.2.0", "vue-directive-tooltip" : "^1.4.5", "vue-loader" : "^15.4.0", "vue-template-compiler" : "^2.5.17"}, "devDependencies" : {"@types/vue" : "^2.0.0", "vue-loader" : "^15.4.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": {"bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "popper.js": {"type": "string"}, "vue": {"type": "string"}, "vue-class-component": {"type": "string"}, "vue-directive-tooltip": {"type": "string"}, "vue-loader": {"type": "string"}, "vue-template-compiler": {"type": "string"}}, "required": ["bootstrap", "jquery", "popper.js", "vue", "vue-class-component", "vue-directive-tooltip", "vue-loader", "vue-template-compiler"]}, "devDependencies": {"type": "object", "properties": {"@types/vue": {"type": "string"}, "vue-loader": {"type": "string"}}, "required": ["@types/vue", "vue-loader"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"/docs": {"type": "string"}}, "required": ["/docs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"/docs" : "/janus/docs/overview/"} | json_instruct | {"type": "object", "properties": {"/docs": {"type": "string"}}, "required": ["/docs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["genadag"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "codepoint": {"type": "string"}, "title": {"type": "string"}, "svg": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "titleZh": {"type": "string"}, "name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["title", "titleZh", "name", "count"]}}, "style": {"type": "string"}, "pre": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "zhs": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "comments": {"type": "array", "items": {}}}, "required": ["name", "codepoint", "title", "svg", "aliases", "tags", "style", "pre", "author", "version", "zhs", "description", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "paperclip", "codepoint" : "f0c6", "title" : "Paperclip", "svg" : "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 448 512\"><path d=\"M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z\"/></svg>", "aliases" : ["attach", "attachment", "connect", "link"], "tags" : [{"title" : "Business", "titleZh" : "\u5546\u4e1a", "name" : "business", "count" : 78}, {"title" : "Editors", "titleZh" : "\u7f16\u8f91\u5668", "name" : "editors", "count" : 74}, {"title" : "Objects", "titleZh" : "\u7269\u4f53", "name" : "objects", "count" : 223}, {"title" : "Writing", "titleZh" : "\u5199\u4f5c", "name" : "writing", "count" : 25}], "style" : "solid", "pre" : "fas", "author" : "fontawesome", "version" : "5.0.0", "zhs" : ["\u56de\u5f62\u9488", "\u9644\u4ef6", "\u8fde\u63a5", "\u94fe\u63a5", "\u66f2\u522b\u9488"], "description" : "\u8868\u793a\u90ae\u4ef6\u4e2d\u7684\u9644\u4ef6\u56fe\u6807\u3002", "comments" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "codepoint": {"type": "string"}, "title": {"type": "string"}, "svg": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "titleZh": {"type": "string"}, "name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["title", "titleZh", "name", "count"]}}, "style": {"type": "string"}, "pre": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "zhs": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "comments": {"type": "array", "items": {}}}, "required": ["name", "codepoint", "title", "svg", "aliases", "tags", "style", "pre", "author", "version", "zhs", "description", "comments"], "$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"}, "source": {"type": "string"}}, "required": ["name", "main", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "source-not-symlinked", "main" : "dist.js", "source" : "source.js"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "source": {"type": "string"}}, "required": ["name", "main", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"DomainDescription": {"type": "object", "properties": {"DataFile": {"type": "string"}}, "required": ["DataFile"]}, "TaskConfiguration": {"type": "object", "properties": {"TaskName": {"type": "string"}, "Scenario": {"type": "object", "properties": {"ws_file": {"type": "string"}}, "required": ["ws_file"]}, "Objectives": {"type": "array", "items": {"type": "string"}}, "ObjectivesDataTypes": {"type": "array", "items": {"type": "string"}}, "ObjectivesMinimization": {"type": "array", "items": {"type": "boolean"}}, "ObjectivesPriorities": {"type": "array", "items": {"type": "integer"}}, "ObjectivesPrioritiesModels": {"type": "array", "items": {"type": "integer"}}, "ExpectedValuesRange": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "MaxTimeToRunTask": {"type": "integer"}}, "required": ["TaskName", "Scenario", "Objectives", "ObjectivesDataTypes", "ObjectivesMinimization", "ObjectivesPriorities", "ObjectivesPrioritiesModels", "ExpectedValuesRange", "MaxTimeToRunTask"]}}, "required": ["DomainDescription", "TaskConfiguration"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"DomainDescription" : {"DataFile" : "./Resources/EnergyExperiment/EnergyExperimentData.json"}, "TaskConfiguration" : {"TaskName" : "energy_consumption", "Scenario" : {"ws_file" : "search_space_96/Radix-500mio_full.csv"}, "Objectives" : ["energy"], "ObjectivesDataTypes" : ["float"], "ObjectivesMinimization" : [true], "ObjectivesPriorities" : [1], "ObjectivesPrioritiesModels" : [1], "ExpectedValuesRange" : [[0, 150000]], "MaxTimeToRunTask" : 10}} | json_instruct | {"type": "object", "properties": {"DomainDescription": {"type": "object", "properties": {"DataFile": {"type": "string"}}, "required": ["DataFile"]}, "TaskConfiguration": {"type": "object", "properties": {"TaskName": {"type": "string"}, "Scenario": {"type": "object", "properties": {"ws_file": {"type": "string"}}, "required": ["ws_file"]}, "Objectives": {"type": "array", "items": {"type": "string"}}, "ObjectivesDataTypes": {"type": "array", "items": {"type": "string"}}, "ObjectivesMinimization": {"type": "array", "items": {"type": "boolean"}}, "ObjectivesPriorities": {"type": "array", "items": {"type": "integer"}}, "ObjectivesPrioritiesModels": {"type": "array", "items": {"type": "integer"}}, "ExpectedValuesRange": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "MaxTimeToRunTask": {"type": "integer"}}, "required": ["TaskName", "Scenario", "Objectives", "ObjectivesDataTypes", "ObjectivesMinimization", "ObjectivesPriorities", "ObjectivesPrioritiesModels", "ExpectedValuesRange", "MaxTimeToRunTask"]}}, "required": ["DomainDescription", "TaskConfiguration"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"measurement_node": {"type": "string"}, "peer_cloud_server": {"type": "string"}, "data_flow_direction": {"type": "string"}, "link_type": {"type": "string"}, "data_source_url": {"type": "string"}, "config": {"type": "object", "properties": {"uplink": {"type": "object", "properties": {"bottleneck_bandwidth": {"type": "integer"}, "buffer_size_bytes": {"type": "integer"}, "buffer_size_packets": {"type": "integer"}, "propagation_delay": {"type": "integer"}, "cross_traffic_pattern": {"type": "array", "items": {"type": "integer"}}}, "required": ["bottleneck_bandwidth", "buffer_size_bytes", "buffer_size_packets", "propagation_delay", "cross_traffic_pattern"]}, "downlink": {"type": "object", "properties": {"bottleneck_bandwidth": {"type": "integer"}, "buffer_size_bytes": {"type": "integer"}, "buffer_size_packets": {"type": "integer"}, "propagation_delay": {"type": "integer"}, "cross_traffic_pattern": {"type": "array", "items": {}}}, "required": ["bottleneck_bandwidth", "buffer_size_bytes", "buffer_size_packets", "propagation_delay", "cross_traffic_pattern"]}, "__comment": {"type": "string"}}, "required": ["uplink", "downlink", "__comment"]}}, "required": ["measurement_node", "peer_cloud_server", "data_flow_direction", "link_type", "data_source_url", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"measurement_node" : "stanford", "peer_cloud_server" : "aws california", "data_flow_direction" : "upload", "link_type" : "cellular", "data_source_url" : "https://pantheon.stanford.edu/result/178/", "config" : {"uplink" : {"bottleneck_bandwidth" : 37908, "buffer_size_bytes" : 182364, "buffer_size_packets" : 121, "propagation_delay" : 21, "cross_traffic_pattern" : [0, 0, 0, 306, 672, 1151, 769, 500, 304, 322, 651, 544, 310, 171, 338, 400, 651, 451, 615, 821, 1054, 1034, 1221, 1322, 1877, 2145, 2319, 2554, 2387, 2463]}, "downlink" : {"bottleneck_bandwidth" : 100000, "buffer_size_bytes" : 15000000, "buffer_size_packets" : 10000, "propagation_delay" : 0, "cross_traffic_pattern" : []}, "__comment" : "bottleneck_bandwidth is in kbps, buffer_size_packets is in number of MTU sized packets, propagation_delay is in ms, and the cross_traffic_pattern is a 30s long timeseries with each entry in kbps"}} | json_instruct | {"type": "object", "properties": {"measurement_node": {"type": "string"}, "peer_cloud_server": {"type": "string"}, "data_flow_direction": {"type": "string"}, "link_type": {"type": "string"}, "data_source_url": {"type": "string"}, "config": {"type": "object", "properties": {"uplink": {"type": "object", "properties": {"bottleneck_bandwidth": {"type": "integer"}, "buffer_size_bytes": {"type": "integer"}, "buffer_size_packets": {"type": "integer"}, "propagation_delay": {"type": "integer"}, "cross_traffic_pattern": {"type": "array", "items": {"type": "integer"}}}, "required": ["bottleneck_bandwidth", "buffer_size_bytes", "buffer_size_packets", "propagation_delay", "cross_traffic_pattern"]}, "downlink": {"type": "object", "properties": {"bottleneck_bandwidth": {"type": "integer"}, "buffer_size_bytes": {"type": "integer"}, "buffer_size_packets": {"type": "integer"}, "propagation_delay": {"type": "integer"}, "cross_traffic_pattern": {"type": "array", "items": {}}}, "required": ["bottleneck_bandwidth", "buffer_size_bytes", "buffer_size_packets", "propagation_delay", "cross_traffic_pattern"]}, "__comment": {"type": "string"}}, "required": ["uplink", "downlink", "__comment"]}}, "required": ["measurement_node", "peer_cloud_server", "data_flow_direction", "link_type", "data_source_url", "config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"width" : 0.13093898, "rotation" : -0.040974498, "xCenter" : 0.032298822, "yCenter" : 0.5140914, "height" : 0.23278041} | json_instruct | {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "copy-from": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "object", "properties": {"str": {"type": "string"}}, "required": ["str"]}, "description": {"type": "string"}, "ammo_type": {"type": "array", "items": {"type": "string"}}, "pocket_data": {"type": "array", "items": {"type": "object", "properties": {"pocket_type": {"type": "string"}, "ammo_restriction": {"type": "object", "properties": {"ammo_pistol_tiny": {"type": "integer"}}, "required": ["ammo_pistol_tiny"]}, "rigid": {"type": "boolean"}}, "required": ["pocket_type", "ammo_restriction", "rigid"]}}}, "required": ["id", "copy-from", "type", "name", "description", "ammo_type", "pocket_data"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "pistol_tiny_mag", "copy-from" : "sw22mag", "type" : "MAGAZINE", "name" : {"str" : "target pistol magazine"}, "description" : "A flush fitting magazine for use with target pistols, capable of feeding 10 tiny pistol cartridges.", "ammo_type" : ["ammo_pistol_tiny"], "pocket_data" : [{"pocket_type" : "MAGAZINE", "ammo_restriction" : {"ammo_pistol_tiny" : 10}, "rigid" : true}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "copy-from": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "object", "properties": {"str": {"type": "string"}}, "required": ["str"]}, "description": {"type": "string"}, "ammo_type": {"type": "array", "items": {"type": "string"}}, "pocket_data": {"type": "array", "items": {"type": "object", "properties": {"pocket_type": {"type": "string"}, "ammo_restriction": {"type": "object", "properties": {"ammo_pistol_tiny": {"type": "integer"}}, "required": ["ammo_pistol_tiny"]}, "rigid": {"type": "boolean"}}, "required": ["pocket_type", "ammo_restriction", "rigid"]}}}, "required": ["id", "copy-from", "type", "name", "description", "ammo_type", "pocket_data"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "import * as React from 'react';\nexport default function isMuiElement(element, muiNames) {\n return React.isValidElement(element) && muiNames.indexOf(element.type.muiName) !== -1;\n}", "map" : null, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ResponseProperties": {"type": "object", "properties": {"SchemaVersion": {"type": "integer"}, "Locale": {"type": "string"}, "DateAndTimes": {"type": "object", "properties": {"value": {"type": "integer"}, "subClass": {"type": "string"}}, "required": ["value", "subClass"]}}, "required": ["SchemaVersion", "Locale", "DateAndTimes"]}, "ArticleBalanceSet": {"type": "object", "properties": {"ArticleBalance": {"type": "array", "items": {"type": "object", "properties": {"ArticleNumber": {"type": "string"}, "ArticleName": {"type": "string"}, "PhysicalBalance": {"type": "integer"}, "AllocatedBalance": {"type": "integer"}, "InOrderBalance": {"type": "integer"}, "FreeBalance": {"type": "integer"}, "CreatedDateTime": {"type": "string"}, "LastUpdatedDateTime": {"type": "string"}}, "required": ["ArticleNumber", "ArticleName", "PhysicalBalance", "AllocatedBalance", "InOrderBalance", "FreeBalance", "CreatedDateTime", "LastUpdatedDateTime"]}}}, "required": ["ArticleBalance"]}}, "required": ["ResponseProperties", "ArticleBalanceSet"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ResponseProperties" : {"SchemaVersion" : 1, "Locale" : "en", "DateAndTimes" : {"value" : 1504472821784, "subClass" : "RESPONSE_DATE"}}, "ArticleBalanceSet" : {"ArticleBalance" : [{"ArticleNumber" : "5300311", "ArticleName" : "HD dekoder", "PhysicalBalance" : 5896, "AllocatedBalance" : 0, "InOrderBalance" : 0, "FreeBalance" : 5896, "CreatedDateTime" : "2017-05-03T01:37:17+02:00", "LastUpdatedDateTime" : "2017-05-03T01:37:17+02:00"}]}} | json_instruct | {"type": "object", "properties": {"ResponseProperties": {"type": "object", "properties": {"SchemaVersion": {"type": "integer"}, "Locale": {"type": "string"}, "DateAndTimes": {"type": "object", "properties": {"value": {"type": "integer"}, "subClass": {"type": "string"}}, "required": ["value", "subClass"]}}, "required": ["SchemaVersion", "Locale", "DateAndTimes"]}, "ArticleBalanceSet": {"type": "object", "properties": {"ArticleBalance": {"type": "array", "items": {"type": "object", "properties": {"ArticleNumber": {"type": "string"}, "ArticleName": {"type": "string"}, "PhysicalBalance": {"type": "integer"}, "AllocatedBalance": {"type": "integer"}, "InOrderBalance": {"type": "integer"}, "FreeBalance": {"type": "integer"}, "CreatedDateTime": {"type": "string"}, "LastUpdatedDateTime": {"type": "string"}}, "required": ["ArticleNumber", "ArticleName", "PhysicalBalance", "AllocatedBalance", "InOrderBalance", "FreeBalance", "CreatedDateTime", "LastUpdatedDateTime"]}}}, "required": ["ArticleBalance"]}}, "required": ["ResponseProperties", "ArticleBalanceSet"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"countries": {"type": "array", "items": {"type": "string"}}, "topics": {"type": "array", "items": {"type": "string"}}, "section_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_short_title": {"type": "string"}, "subtype": {"type": "string"}, "actors": {"type": "array", "items": {}}, "sentences": {"type": "array", "items": {"type": "string"}}, "enb_url": {"type": "string"}, "enb_long_title": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "string"}, "enb_end_date": {"type": "string"}}, "required": ["countries", "topics", "section_title", "enb_start_date", "enb_short_title", "subtype", "actors", "sentences", "enb_url", "enb_long_title", "type", "id", "enb_end_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"countries" : ["Austria", "Germany", "Botswana"], "topics" : ["Flexibility Mechanisms"], "section_title" : "JOINT IMPLEMENTATION:", "enb_start_date" : "26-Nov-12", "enb_short_title" : "COP 18", "subtype" : "", "actors" : [], "sentences" : ["This issue was first taken up by the CMP plenary on 28 November.", "Wolfgang Seidel (Germany), Chair, Joint Implementation Supervisory Committee (JISC), presented the JISC s annual report to the CMP (FCCC/KP/CMP/2012/4).", "He noted that JI is at a critical junction and is facing an uncertain future, and highlighted proposals made by the JISC for revising the JI guidelines (FCCC/KP/CMP/2012/5).", "This issue was further considered in a contact group and informal consultations co-chaired by Balisi Gopolang (Botswana) and Helmut Hojesky (Austria).", "Discussions focused on the two sub-agenda items on: guidance on JI (FCCC/KP/CMP/2012/4); and the JI guidelines (FCCC/KP/CMP/2012/5, INF.1 and MISC.1)."], "enb_url" : "http://www.iisd.ca/vol12/enb12567e.html", "enb_long_title" : "Doha Climate Change Conference - November 2012", "type" : "", "id" : "enb12567e_27", "enb_end_date" : "08-Dec-12"} | json_instruct | {"type": "object", "properties": {"countries": {"type": "array", "items": {"type": "string"}}, "topics": {"type": "array", "items": {"type": "string"}}, "section_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_short_title": {"type": "string"}, "subtype": {"type": "string"}, "actors": {"type": "array", "items": {}}, "sentences": {"type": "array", "items": {"type": "string"}}, "enb_url": {"type": "string"}, "enb_long_title": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "string"}, "enb_end_date": {"type": "string"}}, "required": ["countries", "topics", "section_title", "enb_start_date", "enb_short_title", "subtype", "actors", "sentences", "enb_url", "enb_long_title", "type", "id", "enb_end_date"], "$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" : "weakener", "definition" : "One who, or that which, weakens. \"[Fastings] weakeners of sin.\" South."} | 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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build:all": {"type": "string"}, "serve:all": {"type": "string"}, "start:all": {"type": "string"}, "setup": {"type": "string"}}, "required": ["build:all", "serve:all", "start:all", "setup"]}}, "required": ["name", "version", "description", "author", "license", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "femas", "version" : "1.0.0", "description" : "Front End Micro Architecture Service", "author" : "Charlie Hay", "license" : "UNLICENSED", "scripts" : {"build:all" : "cd navbar && npm run build:spa & cd app1 && npm run build:spa & cd app2 && npm run build:spa", "serve:all" : "cd root-html-file && npm run serve & cd navbar && npm run serve:spa & cd app1 && npm run serve:spa & cd app2 && npm run serve:spa", "start:all" : "cd root-html-file && npm start & cd navbar && npm start & cd app1 && npm start & cd app2 && npm start", "setup" : "cd root-html-file && npm ci & cd navbar && npm ci & cd app1 && npm ci & cd app2 && npm ci"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build:all": {"type": "string"}, "serve:all": {"type": "string"}, "start:all": {"type": "string"}, "setup": {"type": "string"}}, "required": ["build:all", "serve:all", "start:all", "setup"]}}, "required": ["name", "version", "description", "author", "license", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "nameCN": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "null"}}, "required": ["id", "name", "nameCN", "image", "date"]}}, "relate": {"type": "array", "items": {"type": "object", "properties": {"relate": {"type": "string"}, "src": {"type": "integer"}, "dst": {"type": "integer"}}, "required": ["relate", "src", "dst"]}}}, "required": ["id", "node", "relate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 38021, "node" : [{"id" : 38021, "name" : "Ghost Whisperer Season 1", "nameCN" : "\u9b3c\u8bed\u8005\u7b2c\u4e00\u5b63", "image" : "//lain.bgm.tv/pic/cover/m/78/56/38021_0JdNz.jpg", "date" : null}, {"id" : 97876, "name" : "Ghost Whisperer Season 2", "nameCN" : "\u9b3c\u8bed\u8005\u7b2c\u4e8c\u5b63", "image" : "//lain.bgm.tv/pic/cover/m/a2/95/97876_VnGca.jpg", "date" : null}, {"id" : 97877, "name" : "Ghost Whisperer Season 3", "nameCN" : "\u9b3c\u8bed\u8005\u7b2c\u4e09\u5b63", "image" : "//lain.bgm.tv/pic/cover/m/09/96/97877_BhJEB.jpg", "date" : null}, {"id" : 97878, "name" : "Ghost Whisperer Season 4", "nameCN" : "\u9b3c\u8bed\u8005\u7b2c\u56db\u5b63", "image" : "//lain.bgm.tv/pic/cover/m/3a/e6/97878_W8o01.jpg", "date" : null}, {"id" : 97881, "name" : "Ghost Whisperer Season 5", "nameCN" : "\u9b3c\u8bed\u8005\u7b2c\u4e94\u5b63", "image" : "//lain.bgm.tv/pic/cover/m/84/37/97881_aZ5Z9.jpg", "date" : null}], "relate" : [{"relate" : "\u7eed\u96c6", "src" : 38021, "dst" : 97876}, {"relate" : "\u524d\u4f20", "src" : 97876, "dst" : 38021}, {"relate" : "\u7eed\u96c6", "src" : 97876, "dst" : 97877}, {"relate" : "\u524d\u4f20", "src" : 97877, "dst" : 97876}, {"relate" : "\u7eed\u96c6", "src" : 97877, "dst" : 97878}, {"relate" : "\u524d\u4f20", "src" : 97878, "dst" : 97877}, {"relate" : "\u7eed\u96c6", "src" : 97878, "dst" : 97881}, {"relate" : "\u524d\u4f20", "src" : 97881, "dst" : 97878}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "nameCN": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "null"}}, "required": ["id", "name", "nameCN", "image", "date"]}}, "relate": {"type": "array", "items": {"type": "object", "properties": {"relate": {"type": "string"}, "src": {"type": "integer"}, "dst": {"type": "integer"}}, "required": ["relate", "src", "dst"]}}}, "required": ["id", "node", "relate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "48d6745d934a3f734023c43ef8c064f31cd4a1b0"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"type" : "blank", "text" : "# This is a comment."}, {"type" : "blank", "text" : ""}, {"type" : "blank", "text" : "# The line above is empty"}, {"type" : "blank", "text" : "# Indented comment"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "\u7ec3\u4e60\u66f224-Midi\u7248EOP\u81ea\u5b66\u901f\u6210\u73ed\u7b2c\u4e00\u5b63\uff1a\u57fa\u7840\u6307\u6cd5\u7bc7", "author" : "EOP\u56e2\u961f", "musicType" : "\u7ec3\u4e60\u66f2", "musicNo" : "0006975"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "start_url": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "display": {"type": "string"}, "orientation": {"type": "string"}}, "required": ["short_name", "name", "start_url", "icons", "display", "orientation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"short_name" : "RF", "name" : "Reward Fireworks", "start_url" : "/steem/fireworks", "icons" : [{"src" : "/steem/fireworks_files/images/fireworks_app.png", "sizes" : "64x64", "type" : "image/png"}], "display" : "fullscreen", "orientation" : "portrait"} | json_instruct | {"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "start_url": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "display": {"type": "string"}, "orientation": {"type": "string"}}, "required": ["short_name", "name", "start_url", "icons", "display", "orientation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rustc" : 8423557649333461870, "features" : "[]", "target" : 11680772787092534394, "profile" : 9935990280773120926, "path" : 11999238823751718551, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "debug/.fingerprint/smallvec-823c1ddd9720353d/dep-lib-smallvec-823c1ddd9720353d"}}], "rustflags" : [], "metadata" : 11511323240339246835} | json_instruct | {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"pwsh": {"type": "object", "properties": {"commandName": {"type": "string"}, "executablePath": {"type": "string"}, "commandLineArgs": {"type": "string"}, "workingDirectory": {"type": "string"}}, "required": ["commandName", "executablePath", "commandLineArgs", "workingDirectory"]}}, "required": ["pwsh"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"profiles" : {"pwsh" : {"commandName" : "Executable", "executablePath" : "C:\\Program Files\\PowerShell\\7\\pwsh.exe", "commandLineArgs" : "-NoProfile -NoExit -Command $(SolutionDir)scripts\\build.ps1 ; Import-Module $(SolutionDir)out\\AzureAppConfigurationRetriever\\AzureAppConfigurationRetriever.PS.dll", "workingDirectory" : "$(SolutionDir)\\scripts"}}} | json_instruct | {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"pwsh": {"type": "object", "properties": {"commandName": {"type": "string"}, "executablePath": {"type": "string"}, "commandLineArgs": {"type": "string"}, "workingDirectory": {"type": "string"}}, "required": ["commandName", "executablePath", "commandLineArgs", "workingDirectory"]}}, "required": ["pwsh"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"choice": {"type": "object", "properties": {"title": {"type": "string"}, "today_is": {"type": "string"}, "win": {"type": "string"}}, "required": ["title", "today_is", "win"]}, "menu": {"type": "object", "properties": {"choice": {"type": "string"}, "yellow": {"type": "string"}, "red": {"type": "string"}}, "required": ["choice", "yellow", "red"]}, "yellow": {"type": "object", "properties": {"title": {"type": "string"}, "desc": {"type": "string"}, "items": {"type": "object", "properties": {"lemon": {"type": "string"}, "banana": {"type": "string"}, "apricot": {"type": "string"}}, "required": ["lemon", "banana", "apricot"]}}, "required": ["title", "desc", "items"]}, "red": {"type": "object", "properties": {"title": {"type": "string"}, "desc": {"type": "string"}, "items": {"type": "object", "properties": {"strawberry": {"type": "string"}, "blueberry": {"type": "string"}, "cherry": {"type": "string"}}, "required": ["strawberry", "blueberry", "cherry"]}}, "required": ["title", "desc", "items"]}}, "required": ["choice", "menu", "yellow", "red"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"choice" : {"title" : "Language choice", "today_is" : "Today is", "win" : "I would like to win {{sum}} to Lottery! Or {{percent}} :)"}, "menu" : {"choice" : "Language", "yellow" : "Yellow fruits", "red" : "Red fruits"}, "yellow" : {"title" : "Yellow fruits", "desc" : "The yellow fruits:", "items" : {"lemon" : "Lemon", "banana" : "Banana", "apricot" : "Apricot"}}, "red" : {"title" : "Red fruits", "desc" : "The red fruits:", "items" : {"strawberry" : "Strawberry", "blueberry" : "Blueberry", "cherry" : "Cherry"}}} | json_instruct | {"type": "object", "properties": {"choice": {"type": "object", "properties": {"title": {"type": "string"}, "today_is": {"type": "string"}, "win": {"type": "string"}}, "required": ["title", "today_is", "win"]}, "menu": {"type": "object", "properties": {"choice": {"type": "string"}, "yellow": {"type": "string"}, "red": {"type": "string"}}, "required": ["choice", "yellow", "red"]}, "yellow": {"type": "object", "properties": {"title": {"type": "string"}, "desc": {"type": "string"}, "items": {"type": "object", "properties": {"lemon": {"type": "string"}, "banana": {"type": "string"}, "apricot": {"type": "string"}}, "required": ["lemon", "banana", "apricot"]}}, "required": ["title", "desc", "items"]}, "red": {"type": "object", "properties": {"title": {"type": "string"}, "desc": {"type": "string"}, "items": {"type": "object", "properties": {"strawberry": {"type": "string"}, "blueberry": {"type": "string"}, "cherry": {"type": "string"}}, "required": ["strawberry", "blueberry", "cherry"]}}, "required": ["title", "desc", "items"]}}, "required": ["choice", "menu", "yellow", "red"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "cookie-parser": {"type": "string"}, "easyjson": {"type": "string"}, "edit-json-file": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "forms": {"type": "string"}, "fs-extra": {"type": "string"}, "q": {"type": "string"}, "refresh-token": {"type": "string"}, "xtend": {"type": "string"}}, "required": ["body-parser", "cookie-parser", "easyjson", "edit-json-file", "express", "express-session", "forms", "fs-extra", "q", "refresh-token", "xtend"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "description", "main", "bin", "version", "dependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "botw-calculator", "description" : "Damage Calculator for Breath of the Wild", "main" : "app.js", "bin" : "app.js", "version" : "0.1.0", "dependencies" : {"body-parser" : "^1.18.3", "cookie-parser" : "^1.4.3", "easyjson" : "^0.1.2", "edit-json-file" : "^1.1.0", "express" : "^4.16.3", "express-session" : "^1.15.6", "forms" : "^1.3.0", "fs-extra" : "^7.0.0", "q" : "^1.4.1", "refresh-token" : "^1.0.0", "xtend" : "^4.0.1"}, "engines" : {"node" : ">=8.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "cookie-parser": {"type": "string"}, "easyjson": {"type": "string"}, "edit-json-file": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "forms": {"type": "string"}, "fs-extra": {"type": "string"}, "q": {"type": "string"}, "refresh-token": {"type": "string"}, "xtend": {"type": "string"}}, "required": ["body-parser", "cookie-parser", "easyjson", "edit-json-file", "express", "express-session", "forms", "fs-extra", "q", "refresh-token", "xtend"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "description", "main", "bin", "version", "dependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}, "properties": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}, "type": {"type": "string"}}, "required": ["geometry", "properties", "type"]}}, "metadata": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "type": {"type": "string"}}, "required": ["features", "metadata", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"features" : [{"geometry" : {"coordinates" : [34.951764, 31.963319], "type" : "Point"}, "properties" : {"id" : "m933319.point"}, "type" : "Feature"}], "metadata" : {"name" : "Hadid"}, "type" : "FeatureCollection"} | json_instruct | {"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}, "properties": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}, "type": {"type": "string"}}, "required": ["geometry", "properties", "type"]}}, "metadata": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "type": {"type": "string"}}, "required": ["features", "metadata", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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" : "3601040012", "district_id" : "3601040", "name" : "LEUWIBALANG"} | 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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "compile": {"type": "string"}, "start": {"type": "string"}}, "required": ["clean", "compile", "start"]}, "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": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "neo4j-driver": {"type": "string"}, "path": {"type": "string"}}, "required": ["body-parser", "express", "neo4j-driver", "path"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "@types/node": {"type": "string"}, "del-cli": {"type": "string"}, "parcel-bundler": {"type": "string"}, "parcel-plugin-typescript": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-prettier": {"type": "string"}, "typescript": {"type": "string"}, "typescript-styled-plugin": {"type": "string"}}, "required": ["@types/express", "@types/node", "del-cli", "parcel-bundler", "parcel-plugin-typescript", "tslint", "tslint-config-prettier", "typescript", "typescript-styled-plugin"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@autoschedule/cake-time-back", "version" : "0.0.0", "description" : "Cake Time!", "main" : "dist/index.bundle.js", "scripts" : {"clean" : "del-cli .cache", "compile" : "tsc --watch", "start" : "node build/index.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/AutoScheduleJS/cake-time.git"}, "author" : "", "license" : "MIT", "bugs" : {"url" : "https://github.com/AutoScheduleJS/cake-time/issues"}, "homepage" : "https://github.com/AutoScheduleJS/cake-time#readme", "dependencies" : {"body-parser" : "^1.18.3", "express" : "^4.16.4", "neo4j-driver" : "^1.5.0", "path" : "^0.12.7"}, "devDependencies" : {"@types/express" : "^4.16.0", "@types/node" : "^10.12.2", "del-cli" : "^1.1.0", "parcel-bundler" : "^1.9.2", "parcel-plugin-typescript" : "^1.0.0", "tslint" : "^5.11.0", "tslint-config-prettier" : "^1.13.0", "typescript" : "^3.1.6", "typescript-styled-plugin" : "^0.12.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "compile": {"type": "string"}, "start": {"type": "string"}}, "required": ["clean", "compile", "start"]}, "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": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "neo4j-driver": {"type": "string"}, "path": {"type": "string"}}, "required": ["body-parser", "express", "neo4j-driver", "path"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "@types/node": {"type": "string"}, "del-cli": {"type": "string"}, "parcel-bundler": {"type": "string"}, "parcel-plugin-typescript": {"type": "string"}, "tslint": {"type": "string"}, "tslint-config-prettier": {"type": "string"}, "typescript": {"type": "string"}, "typescript-styled-plugin": {"type": "string"}}, "required": ["@types/express", "@types/node", "del-cli", "parcel-bundler", "parcel-plugin-typescript", "tslint", "tslint-config-prettier", "typescript", "typescript-styled-plugin"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "attributes": {"type": "object", "properties": {"id": {"type": "integer"}, "displayLabel": {"type": "string"}, "displayOnFullTextFinder": {"type": "boolean"}, "displayOnPublicationFinder": {"type": "boolean"}}, "required": ["id", "displayLabel", "displayOnFullTextFinder", "displayOnPublicationFinder"]}}, "required": ["type", "attributes"]}}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : [{"type" : "customLabels", "attributes" : {"id" : 1, "displayLabel" : "test label 1 updated", "displayOnFullTextFinder" : false, "displayOnPublicationFinder" : true}}, {"type" : "customLabels", "attributes" : {"id" : 1, "displayLabel" : "test label 1 updated", "displayOnFullTextFinder" : false, "displayOnPublicationFinder" : true}}]} | json_instruct | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "attributes": {"type": "object", "properties": {"id": {"type": "integer"}, "displayLabel": {"type": "string"}, "displayOnFullTextFinder": {"type": "boolean"}, "displayOnPublicationFinder": {"type": "boolean"}}, "required": ["id", "displayLabel", "displayOnFullTextFinder", "displayOnPublicationFinder"]}}, "required": ["type", "attributes"]}}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "object", "properties": {"internalType": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["internalType", "name", "type"]}}, "name": {"type": "string"}, "outputs": {"type": "array", "items": {"type": "object", "properties": {"internalType": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["internalType", "name", "type"]}}, "stateMutability": {"type": "string"}, "type": {"type": "string"}}, "required": ["inputs", "name", "outputs", "stateMutability", "type"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"inputs" : [{"internalType" : "bytes32", "name" : "", "type" : "bytes32"}], "name" : "name", "outputs" : [{"internalType" : "string", "name" : "", "type" : "string"}], "stateMutability" : "view", "type" : "function"}, {"inputs" : [], "name" : "ens", "outputs" : [{"internalType" : "contract ENS", "name" : "", "type" : "address"}], "stateMutability" : "view", "type" : "function"}, {"inputs" : [{"internalType" : "bytes32", "name" : "node", "type" : "bytes32"}, {"internalType" : "string", "name" : "_name", "type" : "string"}], "name" : "setName", "outputs" : [], "stateMutability" : "nonpayable", "type" : "function"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "object", "properties": {"internalType": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["internalType", "name", "type"]}}, "name": {"type": "string"}, "outputs": {"type": "array", "items": {"type": "object", "properties": {"internalType": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["internalType", "name", "type"]}}, "stateMutability": {"type": "string"}, "type": {"type": "string"}}, "required": ["inputs", "name", "outputs", "stateMutability", "type"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Make": {"type": "string"}, "Model": {"type": "string"}, "Orientation": {"type": "integer"}, "XResolution": {"type": "integer"}, "YResolution": {"type": "integer"}, "Software": {"type": "string"}, "ModifyDate": {"type": "string"}, "YCbCrPositioning": {"type": "integer"}, "ExifOffset": {"type": "integer"}, "Compression": {"type": "integer"}, "ThumbnailOffset": {"type": "integer"}, "ThumbnailLength": {"type": "integer"}, "ExifVersion": {"type": "string"}, "DateTimeOriginal": {"type": "string"}, "CreateDate": {"type": "string"}, "FlashpixVersion": {"type": "string"}, "ExifImageWidth": {"type": "integer"}, "ExifImageHeight": {"type": "integer"}, "InteropOffset": {"type": "integer"}, "InteropIndex": {"type": "string"}, "InteropVersion": {"type": "string"}}, "required": ["Make", "Model", "Orientation", "XResolution", "YResolution", "Software", "ModifyDate", "YCbCrPositioning", "ExifOffset", "Compression", "ThumbnailOffset", "ThumbnailLength", "ExifVersion", "DateTimeOriginal", "CreateDate", "FlashpixVersion", "ExifImageWidth", "ExifImageHeight", "InteropOffset", "InteropIndex", "InteropVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Make" : "SONY", "Model" : "DVgate Still", "Orientation" : 1, "XResolution" : 72, "YResolution" : 72, "Software" : "DVgate Still Version 2.00", "ModifyDate" : "2002:09:24 18:27:08", "YCbCrPositioning" : 2, "ExifOffset" : 216, "Compression" : 6, "ThumbnailOffset" : 494, "ThumbnailLength" : 6406, "ExifVersion" : "2.1", "DateTimeOriginal" : "2002:07:18 14:22:56", "CreateDate" : "2002:09:24 18:27:08", "FlashpixVersion" : "1", "ExifImageWidth" : 640, "ExifImageHeight" : 480, "InteropOffset" : 370, "InteropIndex" : "R98", "InteropVersion" : "1"} | json_instruct | {"type": "object", "properties": {"Make": {"type": "string"}, "Model": {"type": "string"}, "Orientation": {"type": "integer"}, "XResolution": {"type": "integer"}, "YResolution": {"type": "integer"}, "Software": {"type": "string"}, "ModifyDate": {"type": "string"}, "YCbCrPositioning": {"type": "integer"}, "ExifOffset": {"type": "integer"}, "Compression": {"type": "integer"}, "ThumbnailOffset": {"type": "integer"}, "ThumbnailLength": {"type": "integer"}, "ExifVersion": {"type": "string"}, "DateTimeOriginal": {"type": "string"}, "CreateDate": {"type": "string"}, "FlashpixVersion": {"type": "string"}, "ExifImageWidth": {"type": "integer"}, "ExifImageHeight": {"type": "integer"}, "InteropOffset": {"type": "integer"}, "InteropIndex": {"type": "string"}, "InteropVersion": {"type": "string"}}, "required": ["Make", "Model", "Orientation", "XResolution", "YResolution", "Software", "ModifyDate", "YCbCrPositioning", "ExifOffset", "Compression", "ThumbnailOffset", "ThumbnailLength", "ExifVersion", "DateTimeOriginal", "CreateDate", "FlashpixVersion", "ExifImageWidth", "ExifImageHeight", "InteropOffset", "InteropIndex", "InteropVersion"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"@context": {"type": "string"}, "@id": {"type": "string"}, "@type": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "contents": {"type": "array", "items": {"type": "object", "properties": {"@type": {"type": "array", "items": {"type": "string"}}, "displayName": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "schema": {"type": "string"}}, "required": ["@type", "displayName", "description", "name", "schema"]}}}, "required": ["@context", "@id", "@type", "displayName", "description", "contents"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@context" : "dtmi:dtdl:context;2", "@id" : "dtmi:mydevicesinc:im_buildings:people_counter;1", "@type" : "Interface", "displayName" : "IM Buildings People Counter", "description" : "People Counter", "contents" : [{"@type" : ["Telemetry"], "displayName" : "Battery", "description" : "Battery", "name" : "channel_5", "schema" : "double"}, {"@type" : ["Telemetry"], "displayName" : "Signal", "description" : "Signal", "name" : "channel_100", "schema" : "double"}, {"@type" : ["Telemetry"], "displayName" : "Total People In", "description" : "Total People In", "name" : "channel_400", "schema" : "double"}, {"@type" : ["Telemetry"], "displayName" : "Total People Out", "description" : "Total People Out", "name" : "channel_401", "schema" : "double"}, {"@type" : ["Telemetry"], "displayName" : "Occupancy", "description" : "Occupancy", "name" : "channel_402", "schema" : "double"}]} | json_instruct | {"type": "object", "properties": {"@context": {"type": "string"}, "@id": {"type": "string"}, "@type": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "contents": {"type": "array", "items": {"type": "object", "properties": {"@type": {"type": "array", "items": {"type": "string"}}, "displayName": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "schema": {"type": "string"}}, "required": ["@type", "displayName", "description", "name", "schema"]}}}, "required": ["@context", "@id", "@type", "displayName", "description", "contents"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"codigo_cedente": {"type": "object", "properties": {"pos": {"type": "array", "items": {"type": "integer"}}, "type": {"type": "string"}, "size": {"type": "integer"}, "picture": {"type": "string"}}, "required": ["pos", "type", "size", "picture"]}, "nosso_numero": {"type": "object", "properties": {"pos": {"type": "array", "items": {"type": "integer"}}, "type": {"type": "string"}, "size": {"type": "integer"}, "picture": {"type": "string"}}, "required": ["pos", "type", "size", "picture"]}, "numero_documento": {"type": "object", "properties": {"pos": {"type": "array", "items": {"type": "integer"}}, "type": {"type": "string"}, "size": {"type": "integer"}, "picture": {"type": "string"}}, "required": ["pos", "type", "size", "picture"]}, "valor_titulo": {"type": "object", "properties": {"pos": {"type": "array", "items": {"type": "integer"}}, "type": {"type": "string"}, "size": {"type": "integer"}, "picture": {"type": "string"}, "precision": {"type": "integer"}}, "required": ["pos", "type", "size", "picture", "precision"]}}, "required": ["codigo_cedente", "nosso_numero", "numero_documento", "valor_titulo"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"codigo_cedente" : {"pos" : [24, 29], "type" : "number", "size" : 6, "picture" : "9(6)"}, "nosso_numero" : {"pos" : [42, 56], "type" : "number", "size" : 15, "picture" : "9(15)"}, "numero_documento" : {"pos" : [59, 69], "type" : "alfa", "size" : 11, "picture" : "X(11)"}, "valor_titulo" : {"pos" : [82, 96], "type" : "number", "size" : 15, "picture" : "9(13)V9(2)", "precision" : 2}} | json_instruct | {"type": "object", "properties": {"codigo_cedente": {"type": "object", "properties": {"pos": {"type": "array", "items": {"type": "integer"}}, "type": {"type": "string"}, "size": {"type": "integer"}, "picture": {"type": "string"}}, "required": ["pos", "type", "size", "picture"]}, "nosso_numero": {"type": "object", "properties": {"pos": {"type": "array", "items": {"type": "integer"}}, "type": {"type": "string"}, "size": {"type": "integer"}, "picture": {"type": "string"}}, "required": ["pos", "type", "size", "picture"]}, "numero_documento": {"type": "object", "properties": {"pos": {"type": "array", "items": {"type": "integer"}}, "type": {"type": "string"}, "size": {"type": "integer"}, "picture": {"type": "string"}}, "required": ["pos", "type", "size", "picture"]}, "valor_titulo": {"type": "object", "properties": {"pos": {"type": "array", "items": {"type": "integer"}}, "type": {"type": "string"}, "size": {"type": "integer"}, "picture": {"type": "string"}, "precision": {"type": "integer"}}, "required": ["pos", "type", "size", "picture", "precision"]}}, "required": ["codigo_cedente", "nosso_numero", "numero_documento", "valor_titulo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"courseCode" : "SE6227", "courseCredit" : "4", "description" : "This module explores ways of understanding the specificities and social realities of thought, action, and cultural subjectivities in Southeast Asia and how postcolonial approaches offer some answers but also pose further questions to the project of understanding local difference in Southeast Asia. It offers an introduction to major controversies in the study of local difference in Southeast Asia and explores their linkages as well as challenges to postcolonial premises, analytical concepts, and critical procedures.", "faculty" : "Arts and Social Science", "title" : "Postcolonialism in Southeast Asia"} | json_instruct | {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "20bff758-8dcd-461b-84d1-5224869f0839", "playerTags" : [], "teamTags" : ["b72f3061-f573-40d7-832a-5ad475bd7909", "b024e975-1c4a-4575-8936-a3754a08806a"], "gameTags" : ["23646de6-2107-45dc-997d-c11842a26a33"], "metadata" : {"play" : 190, "subPlay" : -1}, "created" : "2021-04-15T15:16:18.362Z", "season" : 15, "tournament" : -1, "type" : 2, "day" : 69, "phase" : 4, "category" : 0, "description" : "Bottom of 5, Dallas Steaks batting.", "nuts" : 0} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 5320, "date" : "2012-10-10 17:46:00", "user" : "CVPS_Chris", "post" : "In the mood to buy something.... if anyone is in the market to get out of the VPS/Hosting game give me a shout.\r\n\r\nMoney is not a problem.\r\n\r\nThanks,\r\n\r\nChris"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"devdoc": {"type": "array", "items": {"type": "string"}}, "out": {"type": "array", "items": {"type": "string"}}}, "required": ["devdoc", "out"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"devdoc" : ["/share/man/man3/Signal::Mask.3.gz", "/share/man/man3/Signal::Pending.3.gz"], "out" : ["/lib/perl5/5.34.0/x86_64-linux-thread-multi/perllocal.pod", "/lib/perl5/site_perl/5.34.0/Signal/Mask.pm", "/lib/perl5/site_perl/5.34.0/Signal/Pending.pm", "/lib/perl5/site_perl/5.34.0/x86_64-linux-thread-multi/auto/Signal/Mask/.packlist", "/nix-support/propagated-build-inputs"]} | json_instruct | {"type": "object", "properties": {"devdoc": {"type": "array", "items": {"type": "string"}}, "out": {"type": "array", "items": {"type": "string"}}}, "required": ["devdoc", "out"], "$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"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"cropperjs": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "ngx-webcam": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"tslib": {"type": "string"}}, "required": ["tslib"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "tslib": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["cropperjs", "ngx-webcam", "tslib"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ngx-avatar", "version" : "0.0.1", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"cropperjs" : {"version" : "1.5.1", "resolved" : "https://registry.npmjs.org/cropperjs/-/cropperjs-1.5.1.tgz", "integrity" : "sha512-b6+gzlkhxEUswBNVwYct6fz+sJYdbmW7F6dAXwNkjTVfZcPcXBYADnVzvxNYcSOPkh/ytzmTRktbNkg5/Uw/PQ=="}, "ngx-webcam" : {"version" : "0.2.2", "resolved" : "https://registry.npmjs.org/ngx-webcam/-/ngx-webcam-0.2.2.tgz", "integrity" : "sha512-qkFIpNSVKrNIyy7QuVSvrgwAWfZ0k4oEoftRmtcWnrPZlta3ReCf+JX7DeSHisSms0DjFxleGoUzhQPjBJ4oOQ==", "requires" : {"tslib" : "^1.9.0"}}, "tslib" : {"version" : "1.9.3", "resolved" : "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz", "integrity" : "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ=="}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"cropperjs": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "ngx-webcam": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"tslib": {"type": "string"}}, "required": ["tslib"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "tslib": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["cropperjs", "ngx-webcam", "tslib"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "71AA424E-2DB5-401F-89F6-0ABA572C6762", "name" : "Admin"}, {"id" : "71AA424E-2DB5-401F-89F6-0ABA572C6762", "name" : "Power User"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"946906644288": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "946906645972": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946906645973": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946906648190": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["946906644288", "946906645972", "946906645973", "946906648190"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"946906644288" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/MS0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9XT1JMRF95b3UtRVElMjBXb3JsZCUyME1hcCUyMFNlYXJjaC5odG1sLWFuYWx5dGljcy05NDY5MDY2NDQyNDE=.json"}, "946906645972" : {"type" : "st"}, "946906645973" : {"type" : "ss"}, "946906648190" : {"type" : "sf"}} | json_instruct | {"type": "object", "properties": {"946906644288": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "946906645972": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946906645973": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946906648190": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["946906644288", "946906645972", "946906645973", "946906648190"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["id", "type", "start", "end"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "viridian-germivore__DROPS__flowering-germivore-scales", "type" : "DROPS", "start" : "viridian-germivore", "end" : "flowering-germivore-scales"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["id", "type", "start", "end"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.663e8f55.chunk.js": {"type": "string"}, "static/js/2.663e8f55.chunk.js.map": {"type": "string"}, "static/js/3.9ced3efa.chunk.js": {"type": "string"}, "static/js/3.9ced3efa.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/css/main.87df37a3.chunk.css.map": {"type": "string"}, "static/js/2.663e8f55.chunk.js.LICENSE.txt": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.663e8f55.chunk.js", "static/js/2.663e8f55.chunk.js.map", "static/js/3.9ced3efa.chunk.js", "static/js/3.9ced3efa.chunk.js.map", "index.html", "static/css/main.87df37a3.chunk.css.map", "static/js/2.663e8f55.chunk.js.LICENSE.txt"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"files" : {"main.css" : "/static/css/main.87df37a3.chunk.css", "main.js" : "/static/js/main.7e19b8b8.chunk.js", "main.js.map" : "/static/js/main.7e19b8b8.chunk.js.map", "runtime-main.js" : "/static/js/runtime-main.5485ebe8.js", "runtime-main.js.map" : "/static/js/runtime-main.5485ebe8.js.map", "static/js/2.663e8f55.chunk.js" : "/static/js/2.663e8f55.chunk.js", "static/js/2.663e8f55.chunk.js.map" : "/static/js/2.663e8f55.chunk.js.map", "static/js/3.9ced3efa.chunk.js" : "/static/js/3.9ced3efa.chunk.js", "static/js/3.9ced3efa.chunk.js.map" : "/static/js/3.9ced3efa.chunk.js.map", "index.html" : "/index.html", "static/css/main.87df37a3.chunk.css.map" : "/static/css/main.87df37a3.chunk.css.map", "static/js/2.663e8f55.chunk.js.LICENSE.txt" : "/static/js/2.663e8f55.chunk.js.LICENSE.txt"}, "entrypoints" : ["static/js/runtime-main.5485ebe8.js", "static/js/2.663e8f55.chunk.js", "static/css/main.87df37a3.chunk.css", "static/js/main.7e19b8b8.chunk.js"]} | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.663e8f55.chunk.js": {"type": "string"}, "static/js/2.663e8f55.chunk.js.map": {"type": "string"}, "static/js/3.9ced3efa.chunk.js": {"type": "string"}, "static/js/3.9ced3efa.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/css/main.87df37a3.chunk.css.map": {"type": "string"}, "static/js/2.663e8f55.chunk.js.LICENSE.txt": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.663e8f55.chunk.js", "static/js/2.663e8f55.chunk.js.map", "static/js/3.9ced3efa.chunk.js", "static/js/3.9ced3efa.chunk.js.map", "index.html", "static/css/main.87df37a3.chunk.css.map", "static/js/2.663e8f55.chunk.js.LICENSE.txt"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$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.