input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"server_offset": {"type": "number"}, "run_start": {"type": "number"}, "run_end": {"type": "number"}}, "required": ["server_offset", "run_start", "run_end"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"server_offset" : 0.030430880459872158, "run_start" : 1526415718072.028, "run_end" : 1526415746919.9382}
json_instruct
{"type": "object", "properties": {"server_offset": {"type": "number"}, "run_start": {"type": "number"}, "run_end": {"type": "number"}}, "required": ["server_offset", "run_start", "run_end"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}, "ko": {"type": "string"}}, "required": ["en", "ko"]}, "category": {"type": "string"}, "platform": {"type": "array", "items": {"type": "string"}}, "icon": {"type": "string"}, "module": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}, "driver": {"type": "object", "properties": {"win32-ia32": {"type": "string"}, "win32-x64": {"type": "string"}}, "required": ["win32-ia32", "win32-x64"]}, "selectPort": {"type": "boolean"}, "reconnect": {"type": "boolean"}, "hardware": {"type": "object", "properties": {"type": {"type": "string"}, "control": {"type": "string"}, "duration": {"type": "integer"}, "vendor": {"type": "string"}, "baudRate": {"type": "integer"}}, "required": ["type", "control", "duration", "vendor", "baudRate"]}}, "required": ["id", "name", "category", "platform", "icon", "module", "url", "email", "driver", "selectPort", "reconnect", "hardware"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "0B0101", "name" : {"en" : "Codestar", "ko" : "\ucf54\ub4dc\uc2a4\ud0c0"}, "category" : "robot", "platform" : ["win32"], "icon" : "codestar.png", "module" : "codestar.js", "url" : "http://codestar.co.kr", "email" : "steve@isans.co.kr", "driver" : {"win32-ia32" : "arduino/dpinst-x86.exe", "win32-x64" : "arduino/dpinst-amd64.exe"}, "selectPort" : true, "reconnect" : true, "hardware" : {"type" : "serial", "control" : "slave", "duration" : 32, "vendor" : "", "baudRate" : 9600}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}, "ko": {"type": "string"}}, "required": ["en", "ko"]}, "category": {"type": "string"}, "platform": {"type": "array", "items": {"type": "string"}}, "icon": {"type": "string"}, "module": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}, "driver": {"type": "object", "properties": {"win32-ia32": {"type": "string"}, "win32-x64": {"type": "string"}}, "required": ["win32-ia32", "win32-x64"]}, "selectPort": {"type": "boolean"}, "reconnect": {"type": "boolean"}, "hardware": {"type": "object", "properties": {"type": {"type": "string"}, "control": {"type": "string"}, "duration": {"type": "integer"}, "vendor": {"type": "string"}, "baudRate": {"type": "integer"}}, "required": ["type", "control", "duration", "vendor", "baudRate"]}}, "required": ["id", "name", "category", "platform", "icon", "module", "url", "email", "driver", "selectPort", "reconnect", "hardware"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"manufacturer": {"type": "string"}, "devices": {"type": "array", "items": {"type": "object", "properties": {"market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["market_name", "codename", "model"]}}}, "required": ["manufacturer", "devices"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"manufacturer" : "SKnetworks", "devices" : [{"market_name" : "EG68BE", "codename" : "EG668BE", "model" : "EG668"}, {"market_name" : "EG978TW", "codename" : "EG978TW", "model" : "EG978"}, {"market_name" : "EG980", "codename" : "eg980tw", "model" : "EG980"}, {"market_name" : "WA966", "codename" : "u966e_2", "model" : "WA966"}, {"market_name" : "WA978", "codename" : "u978e_1", "model" : "WA978"}]}
json_instruct
{"type": "object", "properties": {"manufacturer": {"type": "string"}, "devices": {"type": "array", "items": {"type": "object", "properties": {"market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["market_name", "codename", "model"]}}}, "required": ["manufacturer", "devices"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["html-to-react-loader", "lint-paths"]
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": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1996, 6], [1998, 8], [1999, 7], [2000, 14], [2001, 11], [2002, 10], [2003, 14], [2004, 23], [2005, 10], [2006, 23], [2007, 41], [2008, 55], [2009, 52], [2010, 58], [2011, 68], [2012, 61], [2013, 58], [2014, 88]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$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"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"buildSol": {"type": "string"}, "build": {"type": "string"}, "clean": {"type": "string"}, "test": {"type": "string"}}, "required": ["buildSol", "build", "clean", "test"]}, "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"}, "dependencies": {"type": "object", "properties": {"ethers": {"type": "string"}}, "required": ["ethers"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "ethers-4": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "ethers-4", "jest", "ts-jest", "typescript"]}}, "required": ["name", "version", "description", "main", "types", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "pantheon-ethers", "version" : "0.0.2", "description" : "JavaScript library that extends Ethers.js with Pantheon APIs including private transactions, administration, Clique, IBFT and Txpool", "main" : "./dist/index.js", "types" : "./dist/index.d.ts", "scripts" : {"buildSol" : "cd ./scripts && ./buildSol.sh", "build" : "tsc --build ./tsconfig.json", "clean" : "tsc --build --clean ./tsconfig.json", "test" : "jest --detectOpenHandles --forceExit --runInBand"}, "repository" : {"type" : "git", "url" : "git+https://github.com/naddison36/pantheon-ethers.git"}, "keywords" : ["Pantheon", "PegaSys", "Ethereum", "Enterprise Ethereum Alliance", "EEA", "private", "privacy", "privacy group", "Clique", "IBFT", "JavaScript", "library"], "author" : "Nick Addison", "license" : "MIT", "bugs" : {"url" : "https://github.com/naddison36/pantheon-ethers/issues"}, "homepage" : "https://github.com/naddison36/pantheon-ethers#readme", "dependencies" : {"ethers" : "5.0.0-beta.153"}, "devDependencies" : {"@types/jest" : "^24.0.17", "ethers-4" : "npm:ethers@^4.0.33", "jest" : "^24.8.0", "ts-jest" : "^24.0.2", "typescript" : "^3.5.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"buildSol": {"type": "string"}, "build": {"type": "string"}, "clean": {"type": "string"}, "test": {"type": "string"}}, "required": ["buildSol", "build", "clean", "test"]}, "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"}, "dependencies": {"type": "object", "properties": {"ethers": {"type": "string"}}, "required": ["ethers"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "ethers-4": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "ethers-4", "jest", "ts-jest", "typescript"]}}, "required": ["name", "version", "description", "main", "types", "scripts", "repository", "keywords", "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": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : [{"d" : [{"e" : ["\ufff9`Sapipalafelaw~ `no~ `safa~ `tora~ `'alicay~.\ufffa\ufffb\u5f1f\u5f1f\u60f3\u653e\u8d70\u90a3\u96bb\u9ebb\u96c0\u3002"], "f" : "\u60f3\u653e\u751f\u3001\u60f3\u91cb\u653e\u7272\u53e3\u3002"}]}], "stem" : "lafel", "t" : "sapipalafelaw"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"_id": {"type": "string"}, "abbreviation": {"type": "string"}, "name": {"type": "string"}, "lower_name": {"type": "string"}}, "required": ["_id", "abbreviation", "name", "lower_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "3148b86b", "abbreviation" : "HrLV", "name" : "Horseradish latent virus", "lower_name" : "horseradish latent virus"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "abbreviation": {"type": "string"}, "name": {"type": "string"}, "lower_name": {"type": "string"}}, "required": ["_id", "abbreviation", "name", "lower_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn00984": {"type": "string"}, "rn01120": {"type": "string"}, "rn01100": {"type": "string"}}, "required": ["rn00984", "rn01120", "rn01100"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"comment" : "spontaneous following after R09860", "definition" : "9alpha-Hydroxyandrosta-1,4-diene-3,17-dione <=> 3-Hydroxy-9,10-secoandrosta-1,3,5(10)-triene-9,17-dione", "orthologs" : {}, "name" : "", "product_stoichiometries" : ["1"], "enzymes" : [], "equation" : "C14909 <=> C19944", "glycans" : false, "substrate_stoichiometries" : ["1"], "rpairs" : {}, "entry_id" : "R09885", "pathways" : {"rn00984" : "Steroid degradation", "rn01120" : "Microbial metabolism in diverse environments", "rn01100" : "Metabolic pathways"}, "products" : ["C19944"], "substrates" : ["C14909"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn00984": {"type": "string"}, "rn01120": {"type": "string"}, "rn01100": {"type": "string"}}, "required": ["rn00984", "rn01120", "rn01100"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "string"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["AB", "AW", "SZ", "C", "SOL"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"AB" : ["mb", "md", "nd", "od", "pd", "qd", "qe", "re", "pf", "nf", "le", "ke", "jc", "id"], "AW" : ["rc", "qc", "rd", "oc", "nb", "lb", "lc", "ld", "me", "mf", "mg", "nh", "ph", "qg", "qf"], "SZ" : "19", "C" : "Black to play", "SOL" : [["B", "na", "", ""]]}
json_instruct
{"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "string"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["AB", "AW", "SZ", "C", "SOL"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "The answer is not 238. ;)"}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"town": {"type": "string"}, "koaza": {"type": "string"}, "lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["town", "koaza", "lat", "lng"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"town" : "\u91dc\u8c37", "koaza" : "", "lat" : 38.44737, "lng" : 139.226326}, {"town" : "\u5185\u6d66", "koaza" : "", "lat" : 38.465471, "lng" : 139.251767}, {"town" : "\u5b57\u65e5\u30ce\u898b\u5c71", "koaza" : "", "lat" : 38.468436, "lng" : 139.254837}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"town": {"type": "string"}, "koaza": {"type": "string"}, "lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["town", "koaza", "lat", "lng"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"VENDOR": {"type": "array", "items": {"type": "string"}}, "SCADA": {"type": "object", "properties": {"MODBUS": {"type": "object", "properties": {"TCP": {"type": "array", "items": {"type": "string"}}}, "required": ["TCP"]}}, "required": ["MODBUS"]}, "SERVICES": {"type": "object", "properties": {}, "required": []}, "CVE_KEYWORDS": {"type": "array", "items": {"type": "string"}}}, "required": ["VENDOR", "SCADA", "SERVICES", "CVE_KEYWORDS"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"VENDOR" : ["Emerson", "spectra", "Bristol", "bristolb", "BRISTOLBABCOCK", "EmersonProcessRAS"], "SCADA" : {"MODBUS" : {"TCP" : ["502"]}}, "SERVICES" : {}, "CVE_KEYWORDS" : ["cpe:2.3:*:emerson:*:*:*:*:*:*:*:*:*", "emerson"]}
json_instruct
{"type": "object", "properties": {"VENDOR": {"type": "array", "items": {"type": "string"}}, "SCADA": {"type": "object", "properties": {"MODBUS": {"type": "object", "properties": {"TCP": {"type": "array", "items": {"type": "string"}}}, "required": ["TCP"]}}, "required": ["MODBUS"]}, "SERVICES": {"type": "object", "properties": {}, "required": []}, "CVE_KEYWORDS": {"type": "array", "items": {"type": "string"}}}, "required": ["VENDOR", "SCADA", "SERVICES", "CVE_KEYWORDS"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"allTutorialsJson": {"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"graphics_library": {"type": "string"}, "window_library": {"type": "string"}, "title": {"type": "string"}, "slug": {"type": "string"}, "id": {"type": "string"}, "card_image": {"type": "string"}}, "required": ["graphics_library", "window_library", "title", "slug", "id", "card_image"]}}}, "required": ["nodes"]}}, "required": ["allTutorialsJson"]}, "pageContext": {"type": "object", "properties": {}, "required": []}}, "required": ["data", "pageContext"]}, "staticQueryHashes": {"type": "array", "items": {}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"componentChunkName" : "component---src-pages-tutorials-js", "path" : "/tutorials/", "result" : {"data" : {"allTutorialsJson" : {"nodes" : [{"graphics_library" : "opengl 2.0", "window_library" : "egl", "title" : "EGL Model", "slug" : "egl-model", "id" : "abc0406f-243c-585c-8de4-3941606a545b", "card_image" : "https://repository-images.githubusercontent.com/394214934/189147e5-da57-4a2d-81cf-34f7aea792a4"}, {"graphics_library" : "opengl 3.0", "window_library" : "gtk", "title" : "GTK Astroids", "slug" : "gtk-astroids", "id" : "79f2eac7-3981-5f0c-98ca-e27272ce1102", "card_image" : "https://repository-images.githubusercontent.com/109832862/9c88f18f-05fa-46a9-b857-1c6bc39cfe23"}, {"graphics_library" : "opengl 3.0", "window_library" : "gtk", "title" : "Gtk Invaders", "slug" : "gtk-invaders", "id" : "22f20295-0dc5-5975-9a67-fa507e45cc02", "card_image" : "https://repository-images.githubusercontent.com/107547411/7a78fb40-6ba0-4648-9c18-d820f939a276"}, {"graphics_library" : "opengl 3.0", "window_library" : "gtk", "title" : "Gtk Brickout", "slug" : "gtk-brickout", "id" : "84a8841b-86d7-574e-ace4-9de92ec25cd9", "card_image" : "https://repository-images.githubusercontent.com/102488063/43982ef6-99cb-42d4-8ee1-4cf0c0966882"}]}}, "pageContext" : {}}, "staticQueryHashes" : []}
json_instruct
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"allTutorialsJson": {"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"graphics_library": {"type": "string"}, "window_library": {"type": "string"}, "title": {"type": "string"}, "slug": {"type": "string"}, "id": {"type": "string"}, "card_image": {"type": "string"}}, "required": ["graphics_library", "window_library", "title", "slug", "id", "card_image"]}}}, "required": ["nodes"]}}, "required": ["allTutorialsJson"]}, "pageContext": {"type": "object", "properties": {}, "required": []}}, "required": ["data", "pageContext"]}, "staticQueryHashes": {"type": "array", "items": {}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"index_name": {"type": "string"}, "start_urls": {"type": "array", "items": {"type": "string"}}, "stop_urls": {"type": "array", "items": {}}, "selectors": {"type": "object", "properties": {"lvl0": {"type": "object", "properties": {"selector": {"type": "string"}, "global": {"type": "boolean"}, "default_value": {"type": "string"}}, "required": ["selector", "global", "default_value"]}, "lvl1": {"type": "string"}, "lvl2": {"type": "string"}, "lvl3": {"type": "string"}, "text": {"type": "string"}}, "required": ["lvl0", "lvl1", "lvl2", "lvl3", "text"]}, "js_render": {"type": "boolean"}, "conversation_id": {"type": "array", "items": {"type": "string"}}, "selectors_exclude": {"type": "array", "items": {"type": "string"}}, "nb_hits": {"type": "integer"}}, "required": ["index_name", "start_urls", "stop_urls", "selectors", "js_render", "conversation_id", "selectors_exclude", "nb_hits"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index_name" : "screamingcircuits", "start_urls" : ["http://beyondbeta.screamingcircuits.com/resource-center", "http://beyondbeta.screamingcircuits.com/resource-center/services", "http://beyondbeta.screamingcircuits.com/resource-center/process", "http://beyondbeta.screamingcircuits.com/resource-center/tips", "http://beyondbeta.screamingcircuits.com/resource-center/tutorials"], "stop_urls" : [], "selectors" : {"lvl0" : {"selector" : ".hero-area h6 a.active", "global" : true, "default_value" : "Documentation"}, "lvl1" : ".hero-area h1, .ib h1", "lvl2" : ".article-heading", "lvl3" : ".article-subhead", "text" : ".article-p, .article-list li"}, "js_render" : true, "conversation_id" : ["392991384"], "selectors_exclude" : [".col-md-offset-1"], "nb_hits" : 487}
json_instruct
{"type": "object", "properties": {"index_name": {"type": "string"}, "start_urls": {"type": "array", "items": {"type": "string"}}, "stop_urls": {"type": "array", "items": {}}, "selectors": {"type": "object", "properties": {"lvl0": {"type": "object", "properties": {"selector": {"type": "string"}, "global": {"type": "boolean"}, "default_value": {"type": "string"}}, "required": ["selector", "global", "default_value"]}, "lvl1": {"type": "string"}, "lvl2": {"type": "string"}, "lvl3": {"type": "string"}, "text": {"type": "string"}}, "required": ["lvl0", "lvl1", "lvl2", "lvl3", "text"]}, "js_render": {"type": "boolean"}, "conversation_id": {"type": "array", "items": {"type": "string"}}, "selectors_exclude": {"type": "array", "items": {"type": "string"}}, "nb_hits": {"type": "integer"}}, "required": ["index_name", "start_urls", "stop_urls", "selectors", "js_render", "conversation_id", "selectors_exclude", "nb_hits"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"0-4": {"type": "integer"}, "5-17": {"type": "integer"}, "18-29": {"type": "integer"}, "30-49": {"type": "integer"}, "50-64": {"type": "integer"}, "65-79": {"type": "integer"}, "80+": {"type": "integer"}, "N": {"type": "integer"}}, "required": ["0-4", "5-17", "18-29", "30-49", "50-64", "65-79", "80+", "N"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"0-4" : 2, "5-17" : 0, "18-29" : 52, "30-49" : 560, "50-64" : 2094, "65-79" : 4280, "80+" : 6262, "N" : 13251}
json_instruct
{"type": "object", "properties": {"0-4": {"type": "integer"}, "5-17": {"type": "integer"}, "18-29": {"type": "integer"}, "30-49": {"type": "integer"}, "50-64": {"type": "integer"}, "65-79": {"type": "integer"}, "80+": {"type": "integer"}, "N": {"type": "integer"}}, "required": ["0-4", "5-17", "18-29", "30-49", "50-64", "65-79", "80+", "N"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"uuid": {"type": "string"}, "shortName": {"type": "string"}, "longName": {"type": "string"}, "companyName": {"type": "string"}, "versionCode": {"type": "integer"}, "versionLabel": {"type": "string"}, "sdkVersion": {"type": "string"}, "targetPlatforms": {"type": "array", "items": {"type": "string"}}, "watchapp": {"type": "object", "properties": {"watchface": {"type": "boolean"}}, "required": ["watchface"]}, "appKeys": {"type": "object", "properties": {"dummy": {"type": "integer"}}, "required": ["dummy"]}, "resources": {"type": "object", "properties": {"media": {"type": "array", "items": {"type": "object", "properties": {"menuIcon": {"type": "boolean"}, "type": {"type": "string"}, "name": {"type": "string"}, "file": {"type": "string"}}, "required": ["menuIcon", "type", "name", "file"]}}}, "required": ["media"]}}, "required": ["uuid", "shortName", "longName", "companyName", "versionCode", "versionLabel", "sdkVersion", "targetPlatforms", "watchapp", "appKeys", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"uuid" : "9bc7f426-f01b-48dc-87e3-9dabb7e44294", "shortName" : "Rest Time", "longName" : "Rest Time", "companyName" : "Matt Dawson", "versionCode" : 5, "versionLabel" : "1.5", "sdkVersion" : "3", "targetPlatforms" : ["aplite", "basalt"], "watchapp" : {"watchface" : false}, "appKeys" : {"dummy" : 0}, "resources" : {"media" : [{"menuIcon" : true, "type" : "png", "name" : "IMAGE_MENU_ICON", "file" : "images/menu_icon.png"}]}}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "shortName": {"type": "string"}, "longName": {"type": "string"}, "companyName": {"type": "string"}, "versionCode": {"type": "integer"}, "versionLabel": {"type": "string"}, "sdkVersion": {"type": "string"}, "targetPlatforms": {"type": "array", "items": {"type": "string"}}, "watchapp": {"type": "object", "properties": {"watchface": {"type": "boolean"}}, "required": ["watchface"]}, "appKeys": {"type": "object", "properties": {"dummy": {"type": "integer"}}, "required": ["dummy"]}, "resources": {"type": "object", "properties": {"media": {"type": "array", "items": {"type": "object", "properties": {"menuIcon": {"type": "boolean"}, "type": {"type": "string"}, "name": {"type": "string"}, "file": {"type": "string"}}, "required": ["menuIcon", "type", "name", "file"]}}}, "required": ["media"]}}, "required": ["uuid", "shortName", "longName", "companyName", "versionCode", "versionLabel", "sdkVersion", "targetPlatforms", "watchapp", "appKeys", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Preheat oven to 375 degrees F (190 degrees C).", "Place fish fillets in a 8x12 inch baking dish and season with salt and pepper. Pour tomato sauce over fillets and layer sliced potatoes on top. Season to taste with salt and pepper. Loosely cover dish with foil.", "Bake in the preheated oven for 15 to 20 minutes or until fish flakes with a fork and potatoes are tender."], "ingredients" : ["2 (6 ounce) fillets cod", "salt and pepper to taste", "1 cup tomato sauce", "3 potatoes, peeled and sliced paper-thin"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Fish Supreme", "url" : "http://allrecipes.com/recipe/14958/fish-supreme/"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$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"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "8109010006", "district_id" : "8109010", "name" : "NANALI"}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 404412749, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "a0a4749f6a78a932c1ef923ba27d9e5a", "wof:id" : 404412749, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [6.88204198300952, 48.87537622233341, 6.94941629158235, 48.90741068153991], "geometry" : {"coordinates" : [[[6.89284461545301, 48.87537622233341], [6.88204198300952, 48.8859197133749], [6.8883866469428, 48.89847210554036], [6.90973435797849, 48.90741068153991], [6.93941886006979, 48.89339043592243], [6.94941629158235, 48.88513716593607], [6.92447434443522, 48.88571484491436], [6.91591042469732, 48.88204268287695], [6.91227826398503, 48.87567858792863], [6.90234139408748, 48.87732678192403], [6.89284461545301, 48.87537622233341]]], "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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"success": {"type": "boolean"}, "error": {"type": "string"}, "issues": {"type": "array", "items": {}}}, "required": ["success", "error", "issues"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xaa82a82931c968981a7a262943230c2e616722f8", "tool" : "mythril", "start" : 1563526569.780164, "end" : 1563526573.933774, "duration" : 4.153609991073608, "analysis" : {"success" : false, "error" : "Solc experienced a fatal error (code 1).\n\n/unique_chucks/9/0xaa82a82931c968981a7a262943230c2e616722f8.sol:142:62: Error: The state mutability modifier \"constant\" was removed in version 0.5.0. Use \"view\" or \"pure\" instead.\n function contains(itmap storage self, uint key) internal constant returns (bool exists) {\r\n ^------^\n/unique_chucks/9/0xaa82a82931c968981a7a262943230c2e616722f8.sol:146:48: Error: The state mutability modifier \"constant\" was removed in version 0.5.0. Use \"view\" or \"pure\" instead.\n function size(itmap storage self) internal constant returns (uint) {\r\n ^------^\n/unique_chucks/9/0xaa82a82931c968981a7a262943230c2e616722f8.sol:150:57: Error: The state mutability modifier \"constant\" was removed in version 0.5.0. Use \"view\" or \"pure\" instead.\n function get(itmap storage self, uint key) internal constant returns (uint) {\r\n ^------^\n/unique_chucks/9/0xaa82a82931c968981a7a262943230c2e616722f8.sol:154:60: Error: The state mutability modifier \"constant\" was removed in version 0.5.0. Use \"view\" or \"pure\" instead.\n function getKey(itmap storage self, uint idx) internal constant returns (uint) {\r\n ^------^\n", "issues" : []}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"success": {"type": "boolean"}, "error": {"type": "string"}, "issues": {"type": "array", "items": {}}}, "required": ["success", "error", "issues"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"all": {"type": "string"}}, "required": ["all"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "block/cube_all", "textures" : {"all" : "orecrops:blocks/saltOre"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"all": {"type": "string"}}, "required": ["all"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "MultiPolygon", "coordinates" : [[[[-85.04082784599989, 41.10667846300003], [-85.04249854499993, 41.106637375000034], [-85.0425349349999, 41.107587], [-85.04210245599988, 41.10781146600004], [-85.0416782539999, 41.10799417400005], [-85.0408822939999, 41.10892555900005], [-85.04085547299988, 41.10892720100007], [-85.0402664409999, 41.10963967500003], [-85.0399057789999, 41.109906741000074], [-85.03908637599993, 41.110513285000074], [-85.03886355299993, 41.11061767800003], [-85.0380378229999, 41.11101034800003], [-85.03700595799994, 41.11143127200005], [-85.03687940599988, 41.10839788900005], [-85.03680345199989, 41.106781402000074], [-85.0372409269999, 41.10676652800003], [-85.04082784599989, 41.10667846300003]]]], "properties" : {"id" : "usa-in-fort-wayne-countrybrook-neighborhood", "type" : "neighborhood", "name" : "Countrybrook", "code" : "343417"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Plo\u00ebzal", "dpt" : "C\u00f4tes-d'Armor", "inscrits" : 978, "abs" : 131, "votants" : 847, "blancs" : 20, "nuls" : 4, "exp" : 823, "res" : [{"panneau" : "3", "voix" : 213}, {"panneau" : "9", "voix" : 183}, {"panneau" : "11", "voix" : 133}, {"panneau" : "2", "voix" : 128}, {"panneau" : "4", "voix" : 90}, {"panneau" : "1", "voix" : 29}, {"panneau" : "8", "voix" : 17}, {"panneau" : "6", "voix" : 12}, {"panneau" : "5", "voix" : 9}, {"panneau" : "10", "voix" : 6}, {"panneau" : "7", "voix" : 3}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Yad Konrad - Hey, You Found My Personal Website!", "description" : "I do comedy for the bombs, science for fun, and research for a living.", "url" : "https://yadkonrad.com"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"avatar": {"type": "string"}, "name": {"type": "string"}, "work": {"type": "string"}, "address": {"type": "string"}, "email": {"type": "string"}, "birthday": {"type": "string"}, "mobiles": {"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "number": {"type": "string"}}, "required": ["country", "number"]}}}, "required": ["avatar", "name", "work", "address", "email", "birthday", "mobiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"avatar" : "manish.png", "name" : "Manish Kumar", "work" : "Software Engineer", "address" : "Vilage kansal (Near Chandigarh Lake), Mohali", "email" : "manish24898@outlook.com", "birthday" : "26 Oct 1998", "mobiles" : [{"country" : "in", "number" : "+91-7888467626"}]}
json_instruct
{"type": "object", "properties": {"avatar": {"type": "string"}, "name": {"type": "string"}, "work": {"type": "string"}, "address": {"type": "string"}, "email": {"type": "string"}, "birthday": {"type": "string"}, "mobiles": {"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "number": {"type": "string"}}, "required": ["country", "number"]}}}, "required": ["avatar", "name", "work", "address", "email", "birthday", "mobiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"material-components-web.css": {"type": "string"}, "material-components-web.js": {"type": "string"}, "material-components-web.min.css": {"type": "string"}, "material-components-web.min.js": {"type": "string"}}, "required": ["material-components-web.css", "material-components-web.js", "material-components-web.min.css", "material-components-web.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"material-components-web.css" : "sha256-maqMZ8nh6bKbzo9AzZ5P3bVUl8AjgrtaZYU/PIButfA=", "material-components-web.js" : "sha256-5Vd6ZcQvdaVFe+mcE7FVbsy+PO2SM4N1KrerveUie1A=", "material-components-web.min.css" : "sha256-JN+VbE/FHub6vDAUs6bNKqIHjZmC0ad/JJGaN27qBgQ=", "material-components-web.min.js" : "sha256-ZwKVja54sq7V3I8w72NrM5fciDj/qZhgdDThHuHtbSc="}
json_instruct
{"type": "object", "properties": {"material-components-web.css": {"type": "string"}, "material-components-web.js": {"type": "string"}, "material-components-web.min.css": {"type": "string"}, "material-components-web.min.js": {"type": "string"}}, "required": ["material-components-web.css", "material-components-web.js", "material-components-web.min.css", "material-components-web.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "children", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"uuid" : "f76a941a-67c9-448a-9262-7cc7dfcb3fdf", "children" : ["24e7af6f-ca6a-480e-ab2d-d25491dc09f4"], "befores" : [{"name" : "app", "status" : "passed", "start" : 1638304691412, "stop" : 1638304691473}], "start" : 1638304691412, "stop" : 1638304692804}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "children", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"batchcomplete": {"type": "string"}, "query": {"type": "object", "properties": {"normalized": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "required": ["from", "to"]}}, "pages": {"type": "object", "properties": {"51019546": {"type": "object", "properties": {"pageid": {"type": "integer"}, "ns": {"type": "integer"}, "title": {"type": "string"}, "pageprops": {"type": "object", "properties": {"defaultsort": {"type": "string"}, "page_image_free": {"type": "string"}, "wikibase-shortdesc": {"type": "string"}, "wikibase_item": {"type": "string"}}, "required": ["defaultsort", "page_image_free", "wikibase-shortdesc", "wikibase_item"]}}, "required": ["pageid", "ns", "title", "pageprops"]}}, "required": ["51019546"]}}, "required": ["normalized", "pages"]}}, "required": ["batchcomplete", "query"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"batchcomplete" : "", "query" : {"normalized" : [{"from" : "Rosamaria_Montibeller", "to" : "Rosamaria Montibeller"}], "pages" : {"51019546" : {"pageid" : 51019546, "ns" : 0, "title" : "Rosamaria Montibeller", "pageprops" : {"defaultsort" : "Montibeller, Rosamaria", "page_image_free" : "Rosamaria_Montibeller.jpg", "wikibase-shortdesc" : "Brazilian volleyball player (born 1994)", "wikibase_item" : "Q20723829"}}}}}
json_instruct
{"type": "object", "properties": {"batchcomplete": {"type": "string"}, "query": {"type": "object", "properties": {"normalized": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "required": ["from", "to"]}}, "pages": {"type": "object", "properties": {"51019546": {"type": "object", "properties": {"pageid": {"type": "integer"}, "ns": {"type": "integer"}, "title": {"type": "string"}, "pageprops": {"type": "object", "properties": {"defaultsort": {"type": "string"}, "page_image_free": {"type": "string"}, "wikibase-shortdesc": {"type": "string"}, "wikibase_item": {"type": "string"}}, "required": ["defaultsort", "page_image_free", "wikibase-shortdesc", "wikibase_item"]}}, "required": ["pageid", "ns", "title", "pageprops"]}}, "required": ["51019546"]}}, "required": ["normalized", "pages"]}}, "required": ["batchcomplete", "query"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"mdb_source_id": {"type": "integer"}, "data_type": {"type": "string"}, "provider": {"type": "string"}, "location": {"type": "object", "properties": {"country_code": {"type": "string"}, "subdivision_name": {"type": "string"}, "municipality": {"type": "string"}, "bounding_box": {"type": "object", "properties": {"minimum_latitude": {"type": "number"}, "maximum_latitude": {"type": "number"}, "minimum_longitude": {"type": "number"}, "maximum_longitude": {"type": "number"}, "extracted_on": {"type": "string"}}, "required": ["minimum_latitude", "maximum_latitude", "minimum_longitude", "maximum_longitude", "extracted_on"]}}, "required": ["country_code", "subdivision_name", "municipality", "bounding_box"]}, "urls": {"type": "object", "properties": {"direct_download": {"type": "string"}, "latest": {"type": "string"}}, "required": ["direct_download", "latest"]}}, "required": ["mdb_source_id", "data_type", "provider", "location", "urls"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"mdb_source_id" : 720, "data_type" : "gtfs", "provider" : "Transit Windsor", "location" : {"country_code" : "CA", "subdivision_name" : "Ontario", "municipality" : "Windsor", "bounding_box" : {"minimum_latitude" : 42.042087, "maximum_latitude" : 42.34243354, "minimum_longitude" : -83.103199, "maximum_longitude" : -82.606767, "extracted_on" : "2022-03-16T22:06:34+00:00"}}, "urls" : {"direct_download" : "https://opendata.citywindsor.ca/Uploads/google_transit.zip", "latest" : "https://storage.googleapis.com/storage/v1/b/mdb-latest/o/ca-ontario-transit-windsor-gtfs-720.zip?alt=media"}}
json_instruct
{"type": "object", "properties": {"mdb_source_id": {"type": "integer"}, "data_type": {"type": "string"}, "provider": {"type": "string"}, "location": {"type": "object", "properties": {"country_code": {"type": "string"}, "subdivision_name": {"type": "string"}, "municipality": {"type": "string"}, "bounding_box": {"type": "object", "properties": {"minimum_latitude": {"type": "number"}, "maximum_latitude": {"type": "number"}, "minimum_longitude": {"type": "number"}, "maximum_longitude": {"type": "number"}, "extracted_on": {"type": "string"}}, "required": ["minimum_latitude", "maximum_latitude", "minimum_longitude", "maximum_longitude", "extracted_on"]}}, "required": ["country_code", "subdivision_name", "municipality", "bounding_box"]}, "urls": {"type": "object", "properties": {"direct_download": {"type": "string"}, "latest": {"type": "string"}}, "required": ["direct_download", "latest"]}}, "required": ["mdb_source_id", "data_type", "provider", "location", "urls"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cSpell.words" : ["dircycle", "michaelxmcbride", "zdotdir", "zeet's", "zsh's"]}
json_instruct
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : 23, "line_cd" : 30018, "line_name" : "\u540d\u9244\u5c0f\u7267\u7dda", "station_cd" : 3001806, "station_g_cd" : 3001806, "station_name" : "\u9593\u5185", "lon" : 136.9312, "lat" : 35.271585}]}
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#"}
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" : 101892901, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "073846c6ca8d9757ce0909f7e1d700f9", "wof:id" : 101892901, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [4.10548417315624, 46.19664589813857, 4.12424678351812, 46.20781442970372], "geometry" : {"coordinates" : [[[4.10916045759683, 46.20781442970372], [4.1092589182324, 46.2069169645722], [4.11700553270208, 46.20734445010237], [4.11710386101043, 46.20644697611209], [4.11839495288956, 46.20651816775774], [4.11849325560502, 46.20562069177959], [4.11978432922621, 46.20569186646139], [4.11998087923109, 46.20389690991357], [4.12127191324981, 46.20396806626053], [4.12146840359168, 46.20217310450687], [4.12405039551328, 46.20231536494322], [4.12424678351812, 46.20052039524217], [4.1203739283111, 46.20030698943197], [4.12076690949789, 46.19671705909957], [4.11947604928525, 46.19664589813857], [4.11937778901597, 46.19754338027371], [4.11808691055194, 46.1974722023524], [4.11789033460673, 46.1992671620302], [4.1153085015884, 46.19912475393261], [4.11521016457095, 46.20002223010226], [4.11133737419084, 46.19980849692018], [4.11143577522375, 46.19891102487111], [4.10885397309664, 46.19876846088721], [4.10865708142745, 46.20056339887265], [4.11511182330622, 46.20091970565602], [4.11481677402804, 46.20361212862241], [4.10836171203454, 46.20325580122937], [4.10816477784397, 46.20505073305372], [4.10558268931874, 46.20490808746626], [4.10548417315624, 46.20580554970411], [4.10806630436906, 46.20594819804205], [4.10786934465938, 46.20774312617107], [4.10916045759683, 46.20781442970372]]], "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": "object", "properties": {"an8.38:0.1": {"type": "string"}, "an8.38:0.2": {"type": "string"}, "an8.38:0.3": {"type": "string"}, "an8.38:1.1": {"type": "string"}, "an8.38:1.2": {"type": "string"}, "an8.38:2.1": {"type": "string"}, "an8.38:2.2": {"type": "string"}, "an8.38:2.3": {"type": "string"}, "an8.38:3.1": {"type": "string"}, "an8.38:3.2": {"type": "string"}, "an8.38:3.3": {"type": "string"}, "an8.38:3.4": {"type": "string"}, "an8.38:4.1": {"type": "string"}, "an8.38:4.2": {"type": "string"}, "an8.38:4.3": {"type": "string"}, "an8.38:4.4": {"type": "string"}, "an8.38:5.1": {"type": "string"}, "an8.38:5.2": {"type": "string"}, "an8.38:5.3": {"type": "string"}, "an8.38:5.4": {"type": "string"}, "an8.38:6.1": {"type": "string"}, "an8.38:6.2": {"type": "string"}, "an8.38:6.3": {"type": "string"}, "an8.38:6.4": {"type": "string"}, "an8.38:6.5": {"type": "string"}}, "required": ["an8.38:0.1", "an8.38:0.2", "an8.38:0.3", "an8.38:1.1", "an8.38:1.2", "an8.38:2.1", "an8.38:2.2", "an8.38:2.3", "an8.38:3.1", "an8.38:3.2", "an8.38:3.3", "an8.38:3.4", "an8.38:4.1", "an8.38:4.2", "an8.38:4.3", "an8.38:4.4", "an8.38:5.1", "an8.38:5.2", "an8.38:5.3", "an8.38:5.4", "an8.38:6.1", "an8.38:6.2", "an8.38:6.3", "an8.38:6.4", "an8.38:6.5"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"an8.38:0.1" : "A\u1e45guttara Nik\u0101ya 8 ", "an8.38:0.2" : "4. D\u0101navagga ", "an8.38:0.3" : "38. Sappurisasutta ", "an8.38:1.1" : "\u201cSappuriso, bhikkhave, kule j\u0101yam\u0101no bahuno janassa atth\u0101ya hit\u0101ya sukh\u0101ya hoti\u2014", "an8.38:1.2" : "m\u0101t\u0101pit\u016bna\u1e41 atth\u0101ya hit\u0101ya sukh\u0101ya hoti, puttad\u0101rassa atth\u0101ya hit\u0101ya sukh\u0101ya hoti, d\u0101sakammakaraporisassa atth\u0101ya hit\u0101ya sukh\u0101ya hoti, mitt\u0101macc\u0101na\u1e41 atth\u0101ya hit\u0101ya sukh\u0101ya hoti, pubbapet\u0101na\u1e41 atth\u0101ya hit\u0101ya sukh\u0101ya hoti, ra\u00f1\u00f1o atth\u0101ya hit\u0101ya sukh\u0101ya hoti, devat\u0101na\u1e41 atth\u0101ya hit\u0101ya sukh\u0101ya hoti, sama\u1e47abr\u0101hma\u1e47\u0101na\u1e41 atth\u0101ya hit\u0101ya sukh\u0101ya hoti. ", "an8.38:2.1" : "Seyyath\u0101pi, bhikkhave, mah\u0101megho sabbasass\u0101ni samp\u0101dento bahuno janassa atth\u0101ya hit\u0101ya sukh\u0101ya hoti; ", "an8.38:2.2" : "evameva\u1e41 kho, bhikkhave, sappuriso kule j\u0101yam\u0101no bahuno janassa atth\u0101ya hit\u0101ya sukh\u0101ya hoti\u2014", "an8.38:2.3" : "m\u0101t\u0101pit\u016bna\u1e41 atth\u0101ya hit\u0101ya sukh\u0101ya hoti, puttad\u0101rassa atth\u0101ya hit\u0101ya sukh\u0101ya hoti, d\u0101sakammakaraporisassa atth\u0101ya hit\u0101ya sukh\u0101ya hoti, mitt\u0101macc\u0101na\u1e41 atth\u0101ya hit\u0101ya sukh\u0101ya hoti, pubbapet\u0101na\u1e41 atth\u0101ya hit\u0101ya sukh\u0101ya hoti, ra\u00f1\u00f1o atth\u0101ya hit\u0101ya sukh\u0101ya hoti, devat\u0101na\u1e41 atth\u0101ya hit\u0101ya sukh\u0101ya hoti, sama\u1e47abr\u0101hma\u1e47\u0101na\u1e41 atth\u0101ya hit\u0101ya sukh\u0101ya hot\u012bti. ", "an8.38:3.1" : "Bah\u016bna\u1e41 vata atth\u0101ya, ", "an8.38:3.2" : "sappa\u00f1\u00f1o gharam\u0101vasa\u1e41; ", "an8.38:3.3" : "M\u0101tara\u1e41 pitara\u1e41 pubbe, ", "an8.38:3.4" : "rattindivamatandito. ", "an8.38:4.1" : "P\u016bjeti sahadhammena, ", "an8.38:4.2" : "pubbekatamanussara\u1e41; ", "an8.38:4.3" : "An\u0101g\u0101re pabbajite, ", "an8.38:4.4" : "apace brahmac\u0101rayo. ", "an8.38:5.1" : "Nivi\u1e6d\u1e6dhasaddho p\u016bjeti, ", "an8.38:5.2" : "\u00f1atv\u0101 dhamme ca pesalo; ", "an8.38:5.3" : "Ra\u00f1\u00f1o hito devahito, ", "an8.38:5.4" : "\u00f1\u0101t\u012bna\u1e41 sakhina\u1e41 hito. ", "an8.38:6.1" : "Sabbesa\u1e41 so hito hoti, ", "an8.38:6.2" : "saddhamme suppati\u1e6d\u1e6dhito; ", "an8.38:6.3" : "Vineyya maccheramala\u1e41, ", "an8.38:6.4" : "sa loka\u1e41 bhajate sivan\u201dti. ", "an8.38:6.5" : "A\u1e6d\u1e6dhama\u1e41. "}
json_instruct
{"type": "object", "properties": {"an8.38:0.1": {"type": "string"}, "an8.38:0.2": {"type": "string"}, "an8.38:0.3": {"type": "string"}, "an8.38:1.1": {"type": "string"}, "an8.38:1.2": {"type": "string"}, "an8.38:2.1": {"type": "string"}, "an8.38:2.2": {"type": "string"}, "an8.38:2.3": {"type": "string"}, "an8.38:3.1": {"type": "string"}, "an8.38:3.2": {"type": "string"}, "an8.38:3.3": {"type": "string"}, "an8.38:3.4": {"type": "string"}, "an8.38:4.1": {"type": "string"}, "an8.38:4.2": {"type": "string"}, "an8.38:4.3": {"type": "string"}, "an8.38:4.4": {"type": "string"}, "an8.38:5.1": {"type": "string"}, "an8.38:5.2": {"type": "string"}, "an8.38:5.3": {"type": "string"}, "an8.38:5.4": {"type": "string"}, "an8.38:6.1": {"type": "string"}, "an8.38:6.2": {"type": "string"}, "an8.38:6.3": {"type": "string"}, "an8.38:6.4": {"type": "string"}, "an8.38:6.5": {"type": "string"}}, "required": ["an8.38:0.1", "an8.38:0.2", "an8.38:0.3", "an8.38:1.1", "an8.38:1.2", "an8.38:2.1", "an8.38:2.2", "an8.38:2.3", "an8.38:3.1", "an8.38:3.2", "an8.38:3.3", "an8.38:3.4", "an8.38:4.1", "an8.38:4.2", "an8.38:4.3", "an8.38:4.4", "an8.38:5.1", "an8.38:5.2", "an8.38:5.3", "an8.38:5.4", "an8.38:6.1", "an8.38:6.2", "an8.38:6.3", "an8.38:6.4", "an8.38:6.5"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"server": {"type": "object", "properties": {"accessLog": {"type": "string"}, "port": {"type": "integer"}, "workers": {"type": "integer"}, "maxSockets": {"type": "integer"}, "deadBackendTTL": {"type": "integer"}, "tcpTimeout": {"type": "integer"}, "retryOnError": {"type": "integer"}, "deadBackendOn500": {"type": "boolean"}, "httpKeepAlive": {"type": "boolean"}, "https": {"type": "object", "properties": {"port": {"type": "integer"}, "key": {"type": "string"}, "cert": {"type": "string"}}, "required": ["port", "key", "cert"]}}, "required": ["accessLog", "port", "workers", "maxSockets", "deadBackendTTL", "tcpTimeout", "retryOnError", "deadBackendOn500", "httpKeepAlive", "https"]}, "redisHost": {"type": "string"}, "redisPort": {"type": "integer"}}, "required": ["server", "redisHost", "redisPort"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"server" : {"accessLog" : "/var/log/nginx/access.log", "port" : 80, "workers" : 10, "maxSockets" : 100, "deadBackendTTL" : 30, "tcpTimeout" : 30, "retryOnError" : 3, "deadBackendOn500" : true, "httpKeepAlive" : false, "https" : {"port" : 443, "key" : "/etc/ssl/ssl.key", "cert" : "/etc/ssl/ssl.crt"}}, "redisHost" : "127.0.0.1", "redisPort" : 6379}
json_instruct
{"type": "object", "properties": {"server": {"type": "object", "properties": {"accessLog": {"type": "string"}, "port": {"type": "integer"}, "workers": {"type": "integer"}, "maxSockets": {"type": "integer"}, "deadBackendTTL": {"type": "integer"}, "tcpTimeout": {"type": "integer"}, "retryOnError": {"type": "integer"}, "deadBackendOn500": {"type": "boolean"}, "httpKeepAlive": {"type": "boolean"}, "https": {"type": "object", "properties": {"port": {"type": "integer"}, "key": {"type": "string"}, "cert": {"type": "string"}}, "required": ["port", "key", "cert"]}}, "required": ["accessLog", "port", "workers", "maxSockets", "deadBackendTTL", "tcpTimeout", "retryOnError", "deadBackendOn500", "httpKeepAlive", "https"]}, "redisHost": {"type": "string"}, "redisPort": {"type": "integer"}}, "required": ["server", "redisHost", "redisPort"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "dbf8233fcb0489cb0169694c85cc92595d8d4161"}
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": "object", "properties": {"scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"wapp-api": {"type": "string"}, "node-red": {"type": "string"}, "node-red-contrib-wappsto": {"type": "string"}, "node-red-node-openweathermap": {"type": "string"}}, "required": ["wapp-api", "node-red", "node-red-contrib-wappsto", "node-red-node-openweathermap"]}}, "required": ["scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"scripts" : {"start" : "node-red || exit 0"}, "dependencies" : {"wapp-api" : "^1.1.4", "node-red" : "^0.20.5", "node-red-contrib-wappsto" : "^0.0.2", "node-red-node-openweathermap" : "^0.2.1"}}
json_instruct
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"wapp-api": {"type": "string"}, "node-red": {"type": "string"}, "node-red-contrib-wappsto": {"type": "string"}, "node-red-node-openweathermap": {"type": "string"}}, "required": ["wapp-api", "node-red", "node-red-contrib-wappsto", "node-red-node-openweathermap"]}}, "required": ["scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"purescript-prelude": {"type": "string"}}, "required": ["purescript-prelude"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "license", "ignore", "dependencies", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "purescript-case-insensitive", "license" : "BSD-3-Clause", "ignore" : ["**/.*", "bower_components", "output"], "dependencies" : {"purescript-prelude" : "^1.0.1"}, "repository" : {"type" : "git", "url" : "git://github.com/rightfold/purescript-case-insensitive.git"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"purescript-prelude": {"type": "string"}}, "required": ["purescript-prelude"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "license", "ignore", "dependencies", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-86.526892, 39.135624], [-86.508184, 39.13648], [-86.48107, 39.135692], [-86.480383, 39.136633], [-86.480461, 39.15021], [-86.46361, 39.150454], [-86.462197, 39.149039], [-86.461847, 39.106856], [-86.467294, 39.113967], [-86.475127, 39.115567], [-86.480934, 39.119348], [-86.485231, 39.120685], [-86.489986, 39.121376], [-86.52665, 39.121447], [-86.526892, 39.135624]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 24553}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status_code" : "OK", "status_msg" : "All images in request have completed successfully. ", "meta" : {"tag" : {"timestamp" : 1442728817.42037, "model" : "default", "config" : "0b2b7436987dd912e077ff576731f8b7"}}, "results" : [{"docid" : 238294315001133236017526980807620704346, "status_code" : "OK", "status_msg" : "OK", "local_id" : "", "result" : {"tag" : {"classes" : ["bridge", "night", "suspension bridge", "evening", "road", "city", "travel", "highway", "traffic", "nobody", "water", "twilight", "transportation", "light", "blur", "sunset", "sky", "river", "reflection", "street"], "probs" : [0.999146044254303, 0.9973962306976318, 0.9901615977287292, 0.9866707921028137, 0.9853063821792603, 0.9819051027297974, 0.9797381162643433, 0.9775561094284058, 0.9774508476257324, 0.9766839146614075, 0.9755210876464844, 0.970518946647644, 0.9676357507705688, 0.9586780071258545, 0.9562119245529175, 0.9497590065002441, 0.9477018117904663, 0.9405876398086548, 0.9367260932922363, 0.9224597215652466]}}, "docid_str" : "b345d0d0a72d85962ba6afe247d2385a"}]}
json_instruct
{"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "sample1": {"type": "string"}, "sample2": {"type": "string"}, "sample3": {"type": "string"}}, "required": ["name", "sample1", "sample2", "sample3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "quail", "sample1" : "1eff_PrHtEVF8csj4x7SynzzXJyc3biOz", "sample2" : "1WOZ5cY--bkib640N1BM9X4XiBa0zHLEu", "sample3" : "1_XPiliEikfmrikxu82xDXyD5V87ikmgv"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "sample1": {"type": "string"}, "sample2": {"type": "string"}, "sample3": {"type": "string"}}, "required": ["name", "sample1", "sample2", "sample3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"appid" : 375950, "name" : "Viridi", "windows" : true, "mac" : true, "linux" : true, "early_access" : false, "lookup_time" : 1490984067}
json_instruct
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"groups": {"type": "object", "properties": {"default": {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}}, "required": ["packages"]}}, "required": ["default"]}}, "required": ["groups"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"groups" : {"default" : {"packages" : ["package.json", "packages/commitlint-config/package.json", "packages/npmpackagejsonlint-config/package.json", "packages/prettier-config/package.json", "packages/tslint-config/package.json"]}}}
json_instruct
{"type": "object", "properties": {"groups": {"type": "object", "properties": {"default": {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}}, "required": ["packages"]}}, "required": ["default"]}}, "required": ["groups"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "types": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"debug": {"type": "string"}}, "required": ["debug"]}, "peerDependencies": {"type": "object", "properties": {"openapi-enforcer": {"type": "string"}}, "required": ["openapi-enforcer"]}, "devDependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "express": {"type": "string"}, "mocha": {"type": "string"}, "nyc": {"type": "string"}, "openapi-enforcer": {"type": "string"}, "request": {"type": "string"}, "request-promise-native": {"type": "string"}, "standard": {"type": "string"}}, "required": ["body-parser", "chai", "chai-as-promised", "express", "mocha", "nyc", "openapi-enforcer", "request", "request-promise-native", "standard"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "types", "keywords", "author", "license", "bugs", "homepage", "dependencies", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "openapi-enforcer-middleware", "version" : "1.0.8", "description" : "An express middleware that makes it easy to write web services that follow an Open API specification.", "main" : "index.js", "scripts" : {"test" : "mocha test"}, "repository" : {"type" : "git", "url" : "git+https://github.com/byu-oit/openapi-enforcer-middleware.git"}, "types" : "index.d.ts", "keywords" : ["openapi", "swagger", "express", "middleware", "enforcer", "validate", "parse", "format"], "author" : "James Speirs <james.speirs@gmail.com>", "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/byu-oit/openapi-enforcer-middleware/issues"}, "homepage" : "https://github.com/byu-oit/openapi-enforcer-middleware#readme", "dependencies" : {"debug" : "^3.2.6"}, "peerDependencies" : {"openapi-enforcer" : ">= 1.2.0"}, "devDependencies" : {"body-parser" : "^1.18.3", "chai" : "^4.2.0", "chai-as-promised" : "^7.1.1", "express" : "^4.16.4", "mocha" : "^5.2.0", "nyc" : "^13.3.0", "openapi-enforcer" : "^1.2.1", "request" : "^2.88.0", "request-promise-native" : "^1.0.7", "standard" : "^12.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"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "types": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"debug": {"type": "string"}}, "required": ["debug"]}, "peerDependencies": {"type": "object", "properties": {"openapi-enforcer": {"type": "string"}}, "required": ["openapi-enforcer"]}, "devDependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "express": {"type": "string"}, "mocha": {"type": "string"}, "nyc": {"type": "string"}, "openapi-enforcer": {"type": "string"}, "request": {"type": "string"}, "request-promise-native": {"type": "string"}, "standard": {"type": "string"}}, "required": ["body-parser", "chai", "chai-as-promised", "express", "mocha", "nyc", "openapi-enforcer", "request", "request-promise-native", "standard"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "types", "keywords", "author", "license", "bugs", "homepage", "dependencies", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"topic" : ".pic file and tonemap", "category" : "radiance-general", "attachments" : [], "created_by_name" : "Bei Xiao", "created_at" : "August 08, 2006 at 10:30PM", "body" : "Dear Greg,\n Greetings!\n I have two questions. First, does rpict involve any tonemapping\nprocedure? In other words, does the .pic file contain the original\ndata without any tonemapping? Second, I rendered the same input files\nwith the same rendering parameters using the \"rad\" comman complied\nfrom the same version of Radiance on a mac and a linux machine. I got\ndifferent .pic files. Not only the images look different ( the\nhighlight on one sphere look brighter), but the .pic values are\ndifferent. I wonder why this happened. Has anyone experience this?\n\n\n\n\nThanks for the advice,\n\n\nBei\n\n\n\n\nBei\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2006-August/003898.html).</sup>", "id" : "radiance-general_003898", "created_by" : "Bei_Xiao"}
json_instruct
{"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following 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": {"10907": {"type": "string"}, "10898": {"type": "string"}}, "required": ["10907", "10898"]}, "timeto": {"type": "object", "properties": {"10907": {"type": "number"}, "10898": {"type": "number"}}, "required": ["10907", "10898"]}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 10906, "title" : ["[Secondfoot Floors]"], "description" : ["Samples of flooring are stacked about the room. Some are in excellent condition, while some seem to be pre-owned and broken in. The smell of floor varnish and other, less pleasant scents, assail your nose, making your time here a truly unique experience."], "paths" : ["Obvious exits: north"], "location" : "River's Rest", "wayto" : {"10907" : "north", "10898" : "go door"}, "timeto" : {"10907" : 0.2, "10898" : 0.2}}
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": {"10907": {"type": "string"}, "10898": {"type": "string"}}, "required": ["10907", "10898"]}, "timeto": {"type": "object", "properties": {"10907": {"type": "number"}, "10898": {"type": "number"}}, "required": ["10907", "10898"]}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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" : 404357681, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "2d7fc41a0dc86fdb0169c4fbdc200510", "wof:id" : 404357681, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.7590475064714, 45.74510786700834, 3.82141400706325, 45.80641900852193], "geometry" : {"coordinates" : [[[3.7832525439728, 45.74510786700834], [3.77242893253255, 45.76304906043087], [3.7590475064714, 45.76582346907896], [3.77920212393288, 45.78899186632069], [3.78000020030274, 45.80266546517656], [3.78802371939013, 45.80641900852193], [3.79024289479582, 45.79683080641829], [3.80846745268377, 45.79646761250415], [3.82141400706325, 45.78748582903059], [3.82130843851033, 45.78384842228064], [3.81148325103663, 45.77653509428954], [3.8080088137065, 45.75983707248562], [3.79948409163348, 45.74863212568994], [3.7832525439728, 45.74510786700834]]], "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": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "dna": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["name", "description", "image", "dna", "edition", "date", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Crypto BAYC #764", "description" : "", "image" : "ipfs://QmXZWjCdRevZ3J2AUd9PvTbwo4ef5re6oouoFBX7D2whfC/764.png", "dna" : "c27096ce73fcf8613a8e61de189457ef557b5722", "edition" : 764, "date" : 1645298561171, "attributes" : [{"trait_type" : "TYPE", "value" : "Brown"}, {"trait_type" : "MOUTH", "value" : "Front Beard"}, {"trait_type" : "ACCESSORY", "value" : "Spot"}, {"trait_type" : "ACCESSORY", "value" : "1 Attributes"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "dna": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["name", "description", "image", "dna", "edition", "date", "attributes"], "$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"}}, "required": ["test"]}, "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"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "musicbot-master", "version" : "1.0.0", "description" : "<img align=\"right\" src=\"https://i.imgur.com/zrE80HY.png\" height=\"200\" width=\"200\">", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Bandgang1/bandgang.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/Bandgang1/bandgang/issues"}, "homepage" : "https://github.com/Bandgang1/bandgang#readme"}
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"]}, "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"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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" : "3601150009", "district_id" : "3601150", "name" : "PARI"}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "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" : "9445b4eb-f7c6-4584-8580-b960ab1cfd9e", "playerTags" : ["f3c07eaf-3d6c-4cc3-9e54-cbecc9c08286"], "teamTags" : ["a37f9158-7f82-46bc-908c-c9e2dda7c33b", "747b8e4a-7e50-4638-a973-ea7950a3e739"], "gameTags" : ["e1740dfc-8581-4207-aa1f-03ee141f7e76"], "metadata" : {"play" : 129, "subPlay" : -1}, "created" : "2021-04-13T15:10:58.334Z", "season" : 15, "tournament" : -1, "type" : 66, "day" : 23, "phase" : 2, "category" : 2, "description" : "Campos Arias exits the Secret Base to Second Base!", "nuts" : 0}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "additionalProperties": {"type": "boolean"}, "required": {"type": "array", "items": {"type": "string"}}, "optional": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"gene_id": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "genepanel_name": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "genepanel_version": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "analysis_id": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "evaluation": {"type": "object", "properties": {"type": {"type": "string"}, "additionalProperties": {"type": "boolean"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"comment": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["comment"]}}, "required": ["type", "additionalProperties", "required", "properties"]}, "presented_geneassessment_id": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["gene_id", "genepanel_name", "genepanel_version", "analysis_id", "evaluation", "presented_geneassessment_id"]}}, "required": ["$schema", "type", "additionalProperties", "required", "optional", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "http://json-schema.org/draft-07/schema#", "type" : "object", "additionalProperties" : false, "required" : ["gene_id", "evaluation", "genepanel_name", "genepanel_version"], "optional" : ["presented_geneassessment_id", "analysis_id"], "properties" : {"gene_id" : {"type" : "integer"}, "genepanel_name" : {"type" : "string"}, "genepanel_version" : {"type" : "string"}, "analysis_id" : {"type" : "integer"}, "evaluation" : {"type" : "object", "additionalProperties" : false, "required" : ["comment"], "properties" : {"comment" : {"type" : "string"}}}, "presented_geneassessment_id" : {"type" : "integer"}}}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "additionalProperties": {"type": "boolean"}, "required": {"type": "array", "items": {"type": "string"}}, "optional": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"gene_id": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "genepanel_name": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "genepanel_version": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "analysis_id": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "evaluation": {"type": "object", "properties": {"type": {"type": "string"}, "additionalProperties": {"type": "boolean"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"comment": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["comment"]}}, "required": ["type", "additionalProperties", "required", "properties"]}, "presented_geneassessment_id": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["gene_id", "genepanel_name", "genepanel_version", "analysis_id", "evaluation", "presented_geneassessment_id"]}}, "required": ["$schema", "type", "additionalProperties", "required", "optional", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"frames": {"type": "array", "items": {"type": "object", "properties": {"schema": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "typeInfo": {"type": "object", "properties": {"frame": {"type": "string"}}, "required": ["frame"]}}, "required": ["name", "type", "typeInfo"]}}}, "required": ["meta", "fields"]}, "data": {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["values"]}}, "required": ["schema", "data"]}}}, "required": ["frames"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"frames" : [{"schema" : {"meta" : {"type" : "timeseries-many"}, "fields" : [{"name" : "Time", "type" : "time", "typeInfo" : {"frame" : "time.Time"}}, {"name" : "up", "type" : "number", "typeInfo" : {"frame" : "float64"}, "labels" : {"job" : "prometheus", "instance" : "localhost:9090"}}]}, "data" : {"values" : [[1435781430781, 1435781445781, 1435781460781], [1, 1, 1]]}}, {"schema" : {"meta" : {"type" : "timeseries-many"}, "fields" : [{"name" : "Time", "type" : "time", "typeInfo" : {"frame" : "time.Time"}}, {"name" : "up", "type" : "number", "typeInfo" : {"frame" : "float64"}, "labels" : {"job" : "node", "instance" : "localhost:9091"}}]}, "data" : {"values" : [[1435781430781, 1435781445781, 1435781460781], [0, 0, 1]]}}]}
json_instruct
{"type": "object", "properties": {"frames": {"type": "array", "items": {"type": "object", "properties": {"schema": {"type": "object", "properties": {"meta": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "typeInfo": {"type": "object", "properties": {"frame": {"type": "string"}}, "required": ["frame"]}}, "required": ["name", "type", "typeInfo"]}}}, "required": ["meta", "fields"]}, "data": {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["values"]}}, "required": ["schema", "data"]}}}, "required": ["frames"], "$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"}, "Authors": {"type": "string"}, "Number of URL Namespaces": {"type": "integer"}, "Number of Regex Namespaces": {"type": "integer"}, "Number of URL Annotations": {"type": "integer"}, "Number of Regex Annotations": {"type": "integer"}, "Number of Local Annotations": {"type": "integer"}, "Number of Nodes": {"type": "integer"}, "Number of Edges": {"type": "integer"}, "Number of Citations": {"type": "integer"}, "Number of Authors": {"type": "integer"}, "Network Density": {"type": "string"}, "Number of Components": {"type": "integer"}, "Number of Warnings": {"type": "integer"}}, "required": ["Title", "Authors", "Number of URL Namespaces", "Number of Regex Namespaces", "Number of URL Annotations", "Number of Regex Annotations", "Number of Local Annotations", "Number of Nodes", "Number of Edges", "Number of Citations", "Number of Authors", "Network Density", "Number of Components", "Number of Warnings"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Title" : "32216803.bel", "Authors" : "Shounak Baksi", "Number of URL Namespaces" : 3, "Number of Regex Namespaces" : 0, "Number of URL Annotations" : 2, "Number of Regex Annotations" : 0, "Number of Local Annotations" : 6, "Number of Nodes" : 16, "Number of Edges" : 32, "Number of Citations" : 1, "Number of Authors" : 6, "Network Density" : "1.33E-01", "Number of Components" : 1, "Number of Warnings" : 0}
json_instruct
{"type": "object", "properties": {"Title": {"type": "string"}, "Authors": {"type": "string"}, "Number of URL Namespaces": {"type": "integer"}, "Number of Regex Namespaces": {"type": "integer"}, "Number of URL Annotations": {"type": "integer"}, "Number of Regex Annotations": {"type": "integer"}, "Number of Local Annotations": {"type": "integer"}, "Number of Nodes": {"type": "integer"}, "Number of Edges": {"type": "integer"}, "Number of Citations": {"type": "integer"}, "Number of Authors": {"type": "integer"}, "Network Density": {"type": "string"}, "Number of Components": {"type": "integer"}, "Number of Warnings": {"type": "integer"}}, "required": ["Title", "Authors", "Number of URL Namespaces", "Number of Regex Namespaces", "Number of URL Annotations", "Number of Regex Annotations", "Number of Local Annotations", "Number of Nodes", "Number of Edges", "Number of Citations", "Number of Authors", "Network Density", "Number of Components", "Number of Warnings"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "dna": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}, "frequency": {"type": "string"}}, "required": ["trait_type", "value", "frequency"]}}, "compiler": {"type": "string"}}, "required": ["name", "description", "image", "dna", "edition", "date", "attributes", "compiler"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "8Bit Cats #254", "description" : "A collection of 8Bit Cats", "image" : "ipfs://QmRJWYg2zmuHPwvaBsXE3jt48XTC3nyTJKrDtKffWrute7/254.png", "dna" : "fd27150802cb62f8979abff0c307990c56094d15", "edition" : 254, "date" : 1644783961554, "attributes" : [{"trait_type" : "Background", "value" : "Night", "frequency" : "15.85%"}, {"trait_type" : "Body", "value" : "Green", "frequency" : "14.51%"}, {"trait_type" : "Clothing", "value" : "Fantom Shirt", "frequency" : "4.15%"}, {"trait_type" : "Face", "value" : "Excited II", "frequency" : "10.37%"}, {"trait_type" : "Hats", "value" : "Green Beanie", "frequency" : "8.54%"}], "compiler" : "8Bit Collection"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "dna": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}, "frequency": {"type": "string"}}, "required": ["trait_type", "value", "frequency"]}}, "compiler": {"type": "string"}}, "required": ["name", "description", "image", "dna", "edition", "date", "attributes", "compiler"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includedInParent": {"type": "boolean"}, "mtime": {"type": "integer"}}, "required": ["name", "includedInParent", "mtime"]}}, "generated": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}, "hash": {"type": "string"}, "cacheData": {"type": "object", "properties": {"env": {"type": "object", "properties": {}, "required": []}}, "required": ["env"]}}, "required": ["dependencies", "generated", "hash", "cacheData"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dependencies" : [{"name" : "/Users/miguelangel.duran/Dev/react-slidy/package.json", "includedInParent" : true, "mtime" : 1521561185625}, {"name" : "/Users/miguelangel.duran/Dev/react-slidy/.babelrc", "includedInParent" : true, "mtime" : 1520271563719}, {"name" : "/Users/miguelangel.duran/Dev/react-slidy/node_modules/lowlight/node_modules/highlight.js/package.json", "includedInParent" : true, "mtime" : 1520272392441}], "generated" : {"js" : "module.exports=function(e){return{contains:[{begin:/[^\\u2401\\u0001]+/,end:/[\\u2401\\u0001]/,excludeEnd:!0,returnBegin:!0,returnEnd:!1,contains:[{begin:/([^\\u2401\\u0001=]+)/,end:/=([^\\u2401\\u0001=]+)/,returnEnd:!0,returnBegin:!1,className:\"attr\"},{begin:/=/,end:/([\\u2401\\u0001])/,excludeEnd:!0,excludeBegin:!0,className:\"string\"}]}],case_insensitive:!0}};"}, "hash" : "75d34e28ba25d0cac263ff0587a61583", "cacheData" : {"env" : {}}}
json_instruct
{"type": "object", "properties": {"dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includedInParent": {"type": "boolean"}, "mtime": {"type": "integer"}}, "required": ["name", "includedInParent", "mtime"]}}, "generated": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}, "hash": {"type": "string"}, "cacheData": {"type": "object", "properties": {"env": {"type": "object", "properties": {}, "required": []}}, "required": ["env"]}}, "required": ["dependencies", "generated", "hash", "cacheData"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01016082": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01016082"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Topology", "objects" : {"E01016082" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00081280", "LAD11CD" : "E06000035"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00081281", "LAD11CD" : "E06000035"}, "arcs" : [[4, 5, -2, 6]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00081282", "LAD11CD" : "E06000035"}, "arcs" : [[7, -3, -6, 8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00081283", "LAD11CD" : "E06000035"}, "arcs" : [[-4, -8, 9, 10]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00081284", "LAD11CD" : "E06000035"}, "arcs" : [[-9, -5, 11, -10]]}]}}, "arcs" : [[[4561, 7931], [561, -23], [916, 1699], [1270, 51], [55, 341], [698, -666], [962, 660], [575, -1027]], [[9598, 8966], [-1023, -1153], [-364, 613], [-1572, 84], [876, -1590], [-513, -677]], [[7002, 6243], [-493, 167], [-1993, -1726]], [[4516, 4684], [-558, 554], [1354, 1716], [-751, 977]], [[6298, 2869], [-330, 280]], [[5968, 3149], [1613, 998], [-579, 2096]], [[9598, 8966], [401, -84], [-664, -2046], [91, -1951], [-18, -243], [-858, 403], [-595, -313], [340, -1053], [-1997, -810]], [[3494, 3539], [-166, 419], [1241, 302], [-53, 424]], [[5968, 3149], [-257, 219], [-939, -606], [-751, 869], [-527, -92]], [[3494, 3539], [-1606, -942], [629, -1401], [-766, -611]], [[1751, 585], [-561, 890], [-585, -150], [362, 210], [-967, 1510], [1016, -4], [126, 417], [1841, 794], [460, 615], [-574, 418], [1692, 2646]], [[6298, 2869], [-3923, -2774], [-114, -95], [-510, 585]]], "transform" : {"scale" : [9.235253304141415e-07, 6.926807605328161e-07], "translate" : [0.528652804929258, 51.34140578368262]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01016082": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01016082"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"&amp;copy; {0} Gap Node Update Site. All rights reserved.": {"type": "string"}}, "required": ["&amp;copy; {0} Gap Node Update Site. All rights reserved."], "$schema": "http://json-schema.org/draft-07/schema#"}
{"&amp;copy; {0} Gap Node Update Site. All rights reserved." : "&amp;copy; {0} Gap Node Update Site. Tous droits r\u00e9serv\u00e9s."}
json_instruct
{"type": "object", "properties": {"&amp;copy; {0} Gap Node Update Site. All rights reserved.": {"type": "string"}}, "required": ["&amp;copy; {0} Gap Node Update Site. All rights reserved."], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[2001, 5], [2004, 10], [2005, 10], [2006, 12], [2007, 12], [2008, 7], [2009, 13], [2010, 10], [2011, 9], [2012, 7], [2013, 13], [2014, 10]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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"}}}, "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"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\u5de5\u5ee0\u540d\u7a31" : "\u5efa\u6210\u6a5f\u68b0\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99630619", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "06710000018509", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u7af9\u7e23\u6e56\u53e3\u9109\u9cf3\u5c71\u6751\u4e2d\u83ef\u8def\uff11\u865f", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u65b0\u7af9\u7e23\u6e56\u53e3\u9109\u9cf3\u5c71\u6751", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u9673\u5149\u96c4\u3000\u3000\u3000", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "07273103", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "0580101", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0690426", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["25\u91d1\u5c6c\u88fd\u54c1\u88fd\u9020\u696d", "29\u6a5f\u68b0\u8a2d\u5099\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["253\u91d1\u5c6c\u5bb9\u5668", "293\u901a\u7528\u6a5f\u68b0\u8a2d\u5099"]}
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"}}}, "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"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible 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" : "3520070014", "district_id" : "3520070", "name" : "PACALAN"}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"_step": {"type": "integer"}, "mean_var_1": {"type": "number"}, "train_size": {"type": "integer"}, "min_var_0": {"type": "number"}, "mae_0_1": {"type": "number"}, "mean_var_0": {"type": "number"}, "std_var_0": {"type": "number"}, "r2_0_1": {"type": "number"}, "min_var_1": {"type": "number"}, "max_error_0_1": {"type": "number"}, "mae_0": {"type": "number"}, "median_var_0": {"type": "number"}, "coregionalized": {"type": "boolean"}, "std_var_1": {"type": "number"}, "max_var_1": {"type": "number"}, "max_error_0": {"type": "number"}, "r2_0": {"type": "number"}, "max_var_0": {"type": "number"}, "_timestamp": {"type": "number"}, "_runtime": {"type": "number"}, "median_var_1": {"type": "number"}}, "required": ["_step", "mean_var_1", "train_size", "min_var_0", "mae_0_1", "mean_var_0", "std_var_0", "r2_0_1", "min_var_1", "max_error_0_1", "mae_0", "median_var_0", "coregionalized", "std_var_1", "max_var_1", "max_error_0", "r2_0", "max_var_0", "_timestamp", "_runtime", "median_var_1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_step" : 0, "mean_var_1" : 0.585019908121359, "train_size" : 250, "min_var_0" : 9.999570949048575e-09, "mae_0_1" : 0.0402855695697584, "mean_var_0" : 0.0017342077586410198, "std_var_0" : 0.003428226431188363, "r2_0_1" : 0.9523386524660364, "min_var_1" : 0.27397121353163584, "max_error_0_1" : 0.27936915836738496, "mae_0" : 0.0402855695697584, "median_var_0" : 0.0008939779700938288, "coregionalized" : true, "std_var_1" : 0.47124191258668624, "max_var_1" : 6.801439824141139, "max_error_0" : 0.27936915836738496, "r2_0" : 0.9523386524660364, "max_var_0" : 0.049557085796305245, "_timestamp" : 1597515219.0601878, "_runtime" : 3375.59615278244, "median_var_1" : 0.47209664942550716}
json_instruct
{"type": "object", "properties": {"_step": {"type": "integer"}, "mean_var_1": {"type": "number"}, "train_size": {"type": "integer"}, "min_var_0": {"type": "number"}, "mae_0_1": {"type": "number"}, "mean_var_0": {"type": "number"}, "std_var_0": {"type": "number"}, "r2_0_1": {"type": "number"}, "min_var_1": {"type": "number"}, "max_error_0_1": {"type": "number"}, "mae_0": {"type": "number"}, "median_var_0": {"type": "number"}, "coregionalized": {"type": "boolean"}, "std_var_1": {"type": "number"}, "max_var_1": {"type": "number"}, "max_error_0": {"type": "number"}, "r2_0": {"type": "number"}, "max_var_0": {"type": "number"}, "_timestamp": {"type": "number"}, "_runtime": {"type": "number"}, "median_var_1": {"type": "number"}}, "required": ["_step", "mean_var_1", "train_size", "min_var_0", "mae_0_1", "mean_var_0", "std_var_0", "r2_0_1", "min_var_1", "max_error_0_1", "mae_0", "median_var_0", "coregionalized", "std_var_1", "max_var_1", "max_error_0", "r2_0", "max_var_0", "_timestamp", "_runtime", "median_var_1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["In a large skillet cook the onion, the bell pepper, and the garlic in the butter over moderate heat, stirring, until the vegetables are softened, stir in the pumpkin, the broth, the water, the cream, the nutmeg, and salt and pepper to taste, and simmer the sauce, stirring occasionally, for 10 minutes. While the sauce is simmering, in a kettle of salted boiling water boil the penne until it is al dente, ladle out the reserve about 1 cup of the cooking water, and drain the penne well.", "Add the penne to the sauce, cook the mixture over moderate heat, stirring and thinning the sauce as desired with some of the reserved cooking water, for 1 to 2 minutes, or until the pasta is coated well, and stir in the parsley. Divide the pasta between 2 plates and serve it with the Parmesan."], "ingredients" : ["1 onion, chopped fine", "1 red bell pepper, chopped fine", "2 large garlic cloves, minced", "2 tablespoons unsalted butter", "1/2 cup canned solid-pack pumpkin", "1 cup chicken broth", "1/2 cup water", "2 tablespoons heavy cream", "freshly grated nutmeg to taste", "1/2 pound penne or other tubular pasta", "3 tablespoons minced fresh parsley leaves", "freshly grated Parmesan as an accompaniment"], "language" : "en-US", "source" : "www.epicurious.com", "tags" : ["Dairy", "Onion", "Pasta", "Kid-Friendly", "Pumpkin", "Fall", "Gourmet"], "title" : "Penne with Pumpkin Sauce", "url" : "http://www.epicurious.com/recipes/food/views/penne-with-pumpkin-sauce-10656"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"p" : "68643f20-605d-429d-be22-da0895c688a8", "d" : 437}, {"p" : "0315b8f6-c1e3-4950-bfc9-488219145049", "d" : 131}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "MultiPolygon", "coordinates" : [[[[-103.866581, 38.199084], [-103.862489, 38.199118], [-103.861865, 38.199123], [-103.85807, 38.199144], [-103.857375, 38.199142], [-103.857388, 38.196604], [-103.857376, 38.195473], [-103.856216, 38.195479], [-103.855543, 38.195483], [-103.85516, 38.195478], [-103.855105, 38.195465], [-103.855054, 38.195432], [-103.8526, 38.195536], [-103.852767, 38.195101], [-103.852742, 38.194238], [-103.853876, 38.194229], [-103.853894, 38.193628], [-103.853922, 38.193413], [-103.853954, 38.19334], [-103.85399, 38.193296], [-103.854038, 38.193257], [-103.854129, 38.19321], [-103.854758, 38.193034], [-103.855032, 38.192958], [-103.855226, 38.192905], [-103.85615, 38.192651], [-103.856911, 38.192442], [-103.857342, 38.192315], [-103.857341, 38.192176], [-103.861761, 38.19096], [-103.866544, 38.189634], [-103.866536, 38.191796], [-103.866552, 38.195437], [-103.866558, 38.19683], [-103.866581, 38.199084]]]], "properties" : {"id" : "usa-81033-zip", "type" : "zip", "name" : "81033", "code" : "81033"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "user_id": {"type": "integer"}, "name": {"type": "string"}, "is_private": {"type": "boolean"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "deleted_at": {"type": "null"}}, "required": ["id", "user_id", "name", "is_private", "created_at", "updated_at", "deleted_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 118, "user_id" : 1, "name" : "alternative", "is_private" : false, "created_at" : "2019-02-24T20:39:25.000000Z", "updated_at" : "2019-02-24T20:39:25.000000Z", "deleted_at" : null}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "user_id": {"type": "integer"}, "name": {"type": "string"}, "is_private": {"type": "boolean"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "deleted_at": {"type": "null"}}, "required": ["id", "user_id", "name", "is_private", "created_at", "updated_at", "deleted_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"icon": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "moreFields": {"type": "array", "items": {"type": "string"}}, "geometry": {"type": "array", "items": {"type": "string"}}, "terms": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "object", "properties": {"landuse": {"type": "string"}}, "required": ["landuse"]}, "matchScore": {"type": "number"}, "name": {"type": "string"}}, "required": ["icon", "fields", "moreFields", "geometry", "terms", "tags", "matchScore", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"icon" : "maki-garden", "fields" : ["name", "operator"], "moreFields" : ["address", "email", "fax", "phone", "website"], "geometry" : ["area"], "terms" : ["flower", "greenhouse", "horticulture", "grow", "vivero"], "tags" : {"landuse" : "greenhouse_horticulture"}, "matchScore" : 0.9, "name" : "Greenhouse Horticulture"}
json_instruct
{"type": "object", "properties": {"icon": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "moreFields": {"type": "array", "items": {"type": "string"}}, "geometry": {"type": "array", "items": {"type": "string"}}, "terms": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "object", "properties": {"landuse": {"type": "string"}}, "required": ["landuse"]}, "matchScore": {"type": "number"}, "name": {"type": "string"}}, "required": ["icon", "fields", "moreFields", "geometry", "terms", "tags", "matchScore", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "5fb92d137bdacf328b2ffa76ece764eefb58ad05"}
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": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"track" : "elixir", "exercise" : "bread-and-potions", "id" : "8b7e04f056f14413aa1ff6021ff7e653", "url" : "https://exercism.org/tracks/elixir/exercises/bread-and-potions", "handle" : "henriquecido", "is_requester" : true, "auto_approve" : false}
json_instruct
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "500231101002", "text" : "\u65b0\u6c11\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500231101200", "text" : "\u5357\u5370\u5bfa\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500231101201", "text" : "\u57ce\u5317\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500231101202", "text" : "\u51cc\u4e91\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500231101203", "text" : "\u5e3d\u5408\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500231101204", "text" : "\u77f3\u4ed9\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500231101205", "text" : "\u5927\u901a\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500231101206", "text" : "\u53cc\u6cb3\u53e3\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500231101207", "text" : "\u7389\u9f99\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500231101208", "text" : "\u4e03\u6865\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500231101209", "text" : "\u6811\u65b0\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "500231101210", "text" : "\u660e\u6708\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Kamil Borzym": {"type": "string"}, "Maciej Kozie\u0142": {"type": "string"}, "\u0141ukasz Kuczborski": {"type": "string"}, "Antonio Bello": {"type": "string"}}, "required": ["Kamil Borzym", "Maciej Kozie\u0142", "\u0141ukasz Kuczborski", "Antonio Bello"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "source_files", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "SwiftMapper", "version" : "0.1", "summary" : "JSON mapper written in Swift", "description" : "\t\tJSON mapper written in Swift during Swift Crunch in Cracow on July 6th 2014 just for fun!\n", "homepage" : "https://github.com/kam800/SwiftMapper", "license" : "MIT", "authors" : {"Kamil Borzym" : "", "Maciej Kozie\u0142" : "", "\u0141ukasz Kuczborski" : "", "Antonio Bello" : ""}, "source" : {"git" : "https://github.com/kam800/SwiftMapper.git", "tag" : "0.1"}, "source_files" : "SwiftMapper/SwiftMapper.swift", "requires_arc" : true}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Kamil Borzym": {"type": "string"}, "Maciej Kozie\u0142": {"type": "string"}, "\u0141ukasz Kuczborski": {"type": "string"}, "Antonio Bello": {"type": "string"}}, "required": ["Kamil Borzym", "Maciej Kozie\u0142", "\u0141ukasz Kuczborski", "Antonio Bello"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "source_files", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"actors": {"type": "array", "items": {"type": "object", "properties": {"lastname": {"type": "string"}, "firstname": {"type": "string"}, "birthcity": {"type": "string"}, "role": {"type": "string"}, "birthdate": {"type": "string"}}, "required": ["lastname", "firstname", "birthcity", "role", "birthdate"]}}}, "required": ["actors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"actors" : [{"lastname" : "Watson", "firstname" : "Emma", "birthcity" : "Paris", "role" : "Hermione Granger", "birthdate" : "15/04/1990"}, {"lastname" : "Radcliffe", "firstname" : "Daniel", "birthcity" : "Londres", "role" : "Harry Potter", "birthdate" : "23/07/1989"}, {"lastname" : "Grint", "firstname" : "Rupert", "birthcity" : "Harlow", "role" : "Ron Weasley", "birthdate" : "24/08/1988"}, {"lastname" : "Rickman", "firstname" : "Alan", "birthcity" : "Londres", "role" : "Severus Rogue", "birthdate" : "21/02/1946"}, {"lastname" : "Felton", "firstname" : "Tom", "birthcity" : "Epsom", "role" : "Drago Malefoy", "birthdate" : "22/09/1987"}, {"lastname" : "Gambon", "firstname" : "Michael John", "birthcity" : "Dublin", "role" : "Albus Dumbledore", "birthdate" : "19/10/1940"}, {"lastname" : "Smith", "firstname" : "Maggie", "birthcity" : "Ilford", "role" : "Minerva McGonagall", "birthdate" : "28/12/1934"}]}
json_instruct
{"type": "object", "properties": {"actors": {"type": "array", "items": {"type": "object", "properties": {"lastname": {"type": "string"}, "firstname": {"type": "string"}, "birthcity": {"type": "string"}, "role": {"type": "string"}, "birthdate": {"type": "string"}}, "required": ["lastname", "firstname", "birthcity", "role", "birthdate"]}}}, "required": ["actors"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "JobDatabase": {"type": "object", "properties": {"ConnectionString": {"type": "string"}}, "required": ["ConnectionString"]}}, "required": ["Logging", "AllowedHosts", "JobDatabase"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft" : "Warning", "Microsoft.Hosting.Lifetime" : "Information"}}, "AllowedHosts" : "*", "JobDatabase" : {"ConnectionString" : "Data Source=database;Database=Hangfire;Persist Security Info=True;User ID=sa;Password=abcDEF123#"}}
json_instruct
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "JobDatabase": {"type": "object", "properties": {"ConnectionString": {"type": "string"}}, "required": ["ConnectionString"]}}, "required": ["Logging", "AllowedHosts", "JobDatabase"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "scanUrl": {"type": "string"}}, "required": ["title", "text", "scanUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Smeagol, Bearer of Great Secrets (9R+30)", "text" : "Set:\tReflections\nKind:\tFree People\nCulture:\tGollum\nTwilight:\t0\nCard Type:\tCompanion\nStrength:\t3\nVitality:\t4\nResistance:\t7\nGame Text:\tRing-bound. To play, add a burden. Each time the fellowship moves, place an unbound companion in the dead pile. Regroup: If Smeagol is the Ring-bearer, add 2 burdens to discard each minion.\nRarity:\tR+\nNotes:\tYou do not add a burden when you start this card as your Ring-bearer. (Your Ring-bearer is placed on the table, not played.)", "scanUrl" : "https://lotrtcgwiki.com/wiki/_media/cards:lotr09030.jpg"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "scanUrl": {"type": "string"}}, "required": ["title", "text", "scanUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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"}, "children": {"type": "array", "items": {"type": "string"}}}, "required": ["play", "subPlay", "children"]}, "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" : "266f5dc5-0e83-433e-8621-1491d2e60244", "playerTags" : [], "teamTags" : ["36569151-a2fb-43c1-9df7-2df512424c82", "eb67ae5e-c4bf-46ca-bbbc-425cd34182ff"], "gameTags" : ["b22ea2f1-d5b9-4b53-aaef-f2fc3fb3d931"], "metadata" : {"play" : 159, "subPlay" : -1, "children" : ["ed8a2d77-c456-4b3c-987d-4a0ff656c16a"]}, "created" : "2021-03-16T23:13:42.942Z", "season" : 13, "tournament" : -1, "type" : 165, "day" : 31, "phase" : 4, "category" : 0, "description" : "The pressure is off. The Moist Talkers are no longer Overperforming.", "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"}, "children": {"type": "array", "items": {"type": "string"}}}, "required": ["play", "subPlay", "children"]}, "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#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "230230101001", "text" : "\u632f\u5174\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101002", "text" : "\u5174\u534e\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101200", "text" : "\u6cbb\u5b89\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101201", "text" : "\u957f\u53d1\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101202", "text" : "\u62a4\u8def\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101203", "text" : "\u4e30\u5e73\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101204", "text" : "\u4fdd\u536b\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101205", "text" : "\u56db\u5408\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101206", "text" : "\u4e2d\u5174\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101207", "text" : "\u4e1c\u8fde\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101208", "text" : "\u6c38\u53d1\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101209", "text" : "\u5fb7\u80dc\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101210", "text" : "\u7ea2\u661f\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101211", "text" : "\u5bcc\u88d5\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101212", "text" : "\u5bcc\u6c11\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101213", "text" : "\u6625\u5149\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101214", "text" : "\u5e73\u5b89\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101215", "text" : "\u6587\u660c\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101216", "text" : "\u9f99\u6cc9\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101217", "text" : "\u6cb3\u4e34\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "230230101218", "text" : "\u77f3\u5c71\u6751\u6c11\u59d4\u5458\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "urltweet": {"type": "string"}}, "required": ["text", "created", "type", "urltweet"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : "When people say someone is tone-deaf, clueless, doesn't get it -- someone's mind is closed, one point of view is dominating others.", "created" : "Sat, 18 Nov 2017 03:03:03 GMT", "type" : "outline", "urltweet" : "https://twitter.com/davewiner/status/931694109005316102"}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "urltweet": {"type": "string"}}, "required": ["text", "created", "type", "urltweet"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "code_type_vote": {"type": "string"}, "libelle_type_vote": {"type": "string"}, "demandeur": {"type": "string"}, "libelle": {"type": "string"}, "nb_votants": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "code_type_vote", "libelle_type_vote", "demandeur", "libelle", "nb_votants", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "VTANR5L15V1510", "code_type_vote" : "SPO", "libelle_type_vote" : "scrutin public ordinaire", "demandeur" : "Pr\u00e9sident du groupe \"de la Gauche d\u00e9mocrate et r\u00e9publicaine\"", "libelle" : "l'amendement n\u00b0 57 de M. Dharr\u00e9ville \u00e0 l'article 3 de la proposition de loi visant \u00e0 renforcer la prise en charge des cancers p\u00e9diatriques par la recherche le soutien aux aidants familiaux la formation des professionnels et le droit \u00e0 l'oubli (premi\u00e8re lecture).", "nb_votants" : "75", "date" : "2018-11-29"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "code_type_vote": {"type": "string"}, "libelle_type_vote": {"type": "string"}, "demandeur": {"type": "string"}, "libelle": {"type": "string"}, "nb_votants": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "code_type_vote", "libelle_type_vote", "demandeur", "libelle", "nb_votants", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "I will add LDFLAGS to configure options when building with fujitsu compiler.\r\nThis is a necessary change to build m4 with Fujitsu compiler.", "user" : "t-karatsu", "url" : "https://api.github.com/repos/spack/spack/issues/11669", "updated_at" : "2019-06-10 23:57:56", "created_at" : "2019-06-10 08:16:09", "closed_at" : "2019-06-10 15:01:32", "state" : "closed", "title" : "m4: Define flags when using fujitsu compiler", "number" : 11669, "milestone" : null, "labels" : [], "id" : 454050796, "html_url" : "https://github.com/spack/spack/pull/11669", "assignees" : [], "comments" : 0}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$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"}, "bin": {"type": "object", "properties": {"cnix-ui-typescript": {"type": "string"}}, "required": ["cnix-ui-typescript"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"debug": {"type": "string"}, "execa": {"type": "string"}, "glob": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["debug", "execa", "glob", "typescript"]}}, "required": ["name", "version", "description", "bin", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@cnix-ui/typescript", "version" : "0.0.1", "description" : "", "bin" : {"cnix-ui-typescript" : "bin"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "MIT", "dependencies" : {"debug" : "^4.2.0", "execa" : "^4.1.0", "glob" : "^7.1.6", "typescript" : "^4.0.5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"cnix-ui-typescript": {"type": "string"}}, "required": ["cnix-ui-typescript"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"debug": {"type": "string"}, "execa": {"type": "string"}, "glob": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["debug", "execa", "glob", "typescript"]}}, "required": ["name", "version", "description", "bin", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1409011020", "district_id" : "1409011", "name" : "KASANG BANGSAWAN"}
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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "dopper", "definition" : "An Anabaptist or Baptist. [Contemptuous] B. Jonson."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$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"}, "short_name": {"type": "string"}, "description": {"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"}, "start_url": {"type": "string"}}, "required": ["name", "short_name", "description", "icons", "display", "start_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Irish Housing Estate", "short_name" : "IHE", "description" : "Cached Irish Housing Estate application.", "icons" : [{"src" : "img/icons/site/house144.png", "sizes" : "144x144", "type" : "image/png"}, {"src" : "img/icons/site/house168.png", "type" : "image/png", "sizes" : "168x168"}, {"src" : "img/icons/site/house192.png", "sizes" : "192x192", "type" : "image/png"}, {"src" : "img/icons/site/house512.png", "type" : "image/png", "sizes" : "512x512"}], "display" : "standalone", "start_url" : "/login"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "description": {"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"}, "start_url": {"type": "string"}}, "required": ["name", "short_name", "description", "icons", "display", "start_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "null"}, "wmo": {"type": "null"}, "ghcn": {"type": "null"}, "wban": {"type": "null"}, "usaf": {"type": "null"}, "mosmix": {"type": "null"}, "icao": {"type": "string"}, "iata": {"type": "string"}}, "required": ["national", "wmo", "ghcn", "wban", "usaf", "mosmix", "icao", "iata"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}, "history": {"type": "array", "items": {}}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone", "history"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "FEGE0", "name" : {"en" : "Obo / Mboki"}, "country" : "CF", "region" : "HM", "identifiers" : {"national" : null, "wmo" : null, "ghcn" : null, "wban" : null, "usaf" : null, "mosmix" : null, "icao" : "FEGE", "iata" : "MKI"}, "location" : {"latitude" : 5.333, "longitude" : 25.9319, "elevation" : 600}, "timezone" : "Africa/Bangui", "history" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "null"}, "wmo": {"type": "null"}, "ghcn": {"type": "null"}, "wban": {"type": "null"}, "usaf": {"type": "null"}, "mosmix": {"type": "null"}, "icao": {"type": "string"}, "iata": {"type": "string"}}, "required": ["national", "wmo", "ghcn", "wban", "usaf", "mosmix", "icao", "iata"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}, "history": {"type": "array", "items": {}}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone", "history"], "$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"}, "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" : "71", "regencyId" : "01", "districtId" : "35", "name" : "Ibolian"}, {"id" : "2002", "provinceId" : "71", "regencyId" : "01", "districtId" : "35", "name" : "Ibolian Satu"}, {"id" : "2003", "provinceId" : "71", "regencyId" : "01", "districtId" : "35", "name" : "Kinomalingan"}, {"id" : "2004", "provinceId" : "71", "regencyId" : "01", "districtId" : "35", "name" : "Kosio"}, {"id" : "2005", "provinceId" : "71", "regencyId" : "01", "districtId" : "35", "name" : "Kosio Timur"}, {"id" : "2006", "provinceId" : "71", "regencyId" : "01", "districtId" : "35", "name" : "Kasio Barat"}, {"id" : "2007", "provinceId" : "71", "regencyId" : "01", "districtId" : "35", "name" : "Werdhi Agung"}, {"id" : "2008", "provinceId" : "71", "regencyId" : "01", "districtId" : "35", "name" : "Werdhi Agung Selatan"}, {"id" : "2009", "provinceId" : "71", "regencyId" : "01", "districtId" : "35", "name" : "Werdhi Agung Utara"}, {"id" : "2010", "provinceId" : "71", "regencyId" : "01", "districtId" : "35", "name" : "Werdhi Agung Timur"}]
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": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"localities" : ["Keene, ND", "Johnsons Corner, ND"], "state" : "ND", "postal_code" : "58847", "locality" : "Keene, ND", "lat" : 47.910892, "region" : {"fips" : "38", "abbr" : "ND", "name" : "North Dakota"}, "city" : "Keene", "type" : "STANDARD", "lng" : -102.907792, "counties" : [{"fips" : "053", "name" : "McKenzie County"}]}
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "FABIAN", "frequency" : 14955, "gender" : "male"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$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"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1174030003", "district_id" : "1174030", "name" : "PUSONG LAMA"}
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#"}
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" : "1702040015", "district_id" : "1702040", "name" : "ADIREJO"}
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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "string"}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-connect": {"type": "string"}, "grunt-contrib-qunit": {"type": "string"}}, "required": ["grunt", "grunt-contrib-concat", "grunt-contrib-watch", "grunt-contrib-uglify", "grunt-contrib-jshint", "grunt-contrib-connect", "grunt-contrib-qunit"]}, "dependencies": {"type": "object", "properties": {"lodash": {"type": "string"}, "peerjs": {"type": "string"}, "when": {"type": "string"}, "baconjs": {"type": "string"}, "bencode-js": {"type": "string"}, "mori": {"type": "string"}}, "required": ["lodash", "peerjs", "when", "baconjs", "bencode-js", "mori"]}}, "required": ["name", "version", "description", "homepage", "author", "repository", "bugs", "licenses", "engines", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "peer", "version" : "0.0.1", "description" : "In-browser distributed hashtable (DHT)", "homepage" : "https://github.com/hallettj/peer", "author" : {"name" : "Jesse Hallett", "email" : "jesse@sitr.us", "url" : "http://sitr.us/"}, "repository" : {"type" : "git", "url" : "git://github.com/hallettj/peer.git"}, "bugs" : "https://github.com/hallettj/peer/issues", "licenses" : [{"type" : "Apache-2.0", "url" : "https://github.com/hallettj/peer/blob/master/LICENSE-Apache-2.0"}], "engines" : {"node" : ">= 0.10.0"}, "scripts" : {"test" : "grunt test"}, "devDependencies" : {"grunt" : "~0.4.2", "grunt-contrib-concat" : "~0.3.0", "grunt-contrib-watch" : "~0.5.3", "grunt-contrib-uglify" : "~0.4.0", "grunt-contrib-jshint" : "~0.8.0", "grunt-contrib-connect" : "~0.7.1", "grunt-contrib-qunit" : "~0.4.0"}, "dependencies" : {"lodash" : "~2.4.1", "peerjs" : "~0.3.6", "when" : "~2.8.0", "baconjs" : "~0.7.6", "bencode-js" : "0.0.7", "mori" : "~0.2.5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "string"}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-connect": {"type": "string"}, "grunt-contrib-qunit": {"type": "string"}}, "required": ["grunt", "grunt-contrib-concat", "grunt-contrib-watch", "grunt-contrib-uglify", "grunt-contrib-jshint", "grunt-contrib-connect", "grunt-contrib-qunit"]}, "dependencies": {"type": "object", "properties": {"lodash": {"type": "string"}, "peerjs": {"type": "string"}, "when": {"type": "string"}, "baconjs": {"type": "string"}, "bencode-js": {"type": "string"}, "mori": {"type": "string"}}, "required": ["lodash", "peerjs", "when", "baconjs", "bencode-js", "mori"]}}, "required": ["name", "version", "description", "homepage", "author", "repository", "bugs", "licenses", "engines", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"symbol": {"type": "string"}, "address": {"type": "string"}, "overview": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "email": {"type": "string"}, "website": {"type": "string"}, "state": {"type": "string"}, "links": {"type": "object", "properties": {"blog": {"type": "string"}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "github": {"type": "string"}}, "required": ["blog", "twitter", "telegram", "github"]}}, "required": ["symbol", "address", "overview", "email", "website", "state", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"symbol" : "BUNNY", "address" : "0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51", "overview" : {"en" : ""}, "email" : "", "website" : "https://pancakebunny.finance", "state" : "NORMAL", "links" : {"blog" : "https://pancakebunny-finance.readthedocs.io/en/main/", "twitter" : "https://twitter.com/PancakeBunnyFin", "telegram" : "", "github" : ""}}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "address": {"type": "string"}, "overview": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "email": {"type": "string"}, "website": {"type": "string"}, "state": {"type": "string"}, "links": {"type": "object", "properties": {"blog": {"type": "string"}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "github": {"type": "string"}}, "required": ["blog", "twitter", "telegram", "github"]}}, "required": ["symbol", "address", "overview", "email", "website", "state", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"description": {"type": "string"}, "number": {"type": "string"}, "class": {"type": "string"}}, "required": ["description", "number", "class"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "Methallyl alcohol", "number" : "2614", "class" : "3"}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "number": {"type": "string"}, "class": {"type": "string"}}, "required": ["description", "number", "class"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : [[[133.625, 43.083333333333336], [133.625, 43.166666666666664], [133.75, 43.166666666666664], [133.75, 43.083333333333336], [133.625, 43.083333333333336]]]}, "properties" : {"code" : 643355, "url" : "http://madefor.github.io/0410/api/v1/643355.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/643355.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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"elm-lang/virtual-dom": {"type": "string"}, "elm-lang/dom": {"type": "string"}, "elm-lang/html": {"type": "string"}, "elm-lang/keyboard": {"type": "string"}, "elm-lang/http": {"type": "string"}, "NoRedInk/elm-decode-pipeline": {"type": "string"}, "thebritican/elm-autocomplete": {"type": "string"}, "elm-lang/core": {"type": "string"}}, "required": ["elm-lang/virtual-dom", "elm-lang/dom", "elm-lang/html", "elm-lang/keyboard", "elm-lang/http", "NoRedInk/elm-decode-pipeline", "thebritican/elm-autocomplete", "elm-lang/core"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"elm-lang/virtual-dom" : "2.0.4", "elm-lang/dom" : "1.1.1", "elm-lang/html" : "2.0.0", "elm-lang/keyboard" : "1.0.1", "elm-lang/http" : "1.0.0", "NoRedInk/elm-decode-pipeline" : "3.0.1", "thebritican/elm-autocomplete" : "4.0.3", "elm-lang/core" : "5.1.1"}
json_instruct
{"type": "object", "properties": {"elm-lang/virtual-dom": {"type": "string"}, "elm-lang/dom": {"type": "string"}, "elm-lang/html": {"type": "string"}, "elm-lang/keyboard": {"type": "string"}, "elm-lang/http": {"type": "string"}, "NoRedInk/elm-decode-pipeline": {"type": "string"}, "thebritican/elm-autocomplete": {"type": "string"}, "elm-lang/core": {"type": "string"}}, "required": ["elm-lang/virtual-dom", "elm-lang/dom", "elm-lang/html", "elm-lang/keyboard", "elm-lang/http", "NoRedInk/elm-decode-pipeline", "thebritican/elm-autocomplete", "elm-lang/core"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"DTD_z0p00025_bw100_1.25<mwd<1.32_3e-08<mdot<1.8e-07": {"type": "array", "items": {"type": "number"}}, "arrbool": {"type": "boolean"}}, "required": ["DTD_z0p00025_bw100_1.25<mwd<1.32_3e-08<mdot<1.8e-07", "arrbool"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"DTD_z0p00025_bw100_1.25<mwd<1.32_3e-08<mdot<1.8e-07" : [1.5537758347618005e-06, 0.0, 0.0, 0.001372055886059237, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.50697766054424e-06, 1.0922934345264368e-05, 0.0, 0.0, 0.0, 0.0005033626077744246, 0.00016462422693930235, 0.0008551234308671416, 0.056596260835818604, 0.0, 0.0001461083905086244, 0.00033423687005416924, 3.930364535222053e-05, 0.0028058794858873692, 0.012011788095248374, 0.0, 0.0004121374940623673, 0.001167424518809912, 0.00018350318387938547, 6.294314846680416e-05, 0.0, 0.00044996820088204215, 0.0, 0.0, 0.0003730339755649986, 0.0, 0.00026353179582409847, 0.00010409035200630024, 2.102701358863701e-05, 0.0, 0.0, 0.00026412748164755806, 0.0, 0.0, 0.0, 0.0, 0.0, 4.045878218769672e-05, 0.0, 0.0, 0.00020221769741340934, 0.0, 0.00016078158679957988, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "arrbool" : true}
json_instruct
{"type": "object", "properties": {"DTD_z0p00025_bw100_1.25<mwd<1.32_3e-08<mdot<1.8e-07": {"type": "array", "items": {"type": "number"}}, "arrbool": {"type": "boolean"}}, "required": ["DTD_z0p00025_bw100_1.25<mwd<1.32_3e-08<mdot<1.8e-07", "arrbool"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"ExcelExtractor": {"type": "object", "properties": {"ExcelFile": {"type": "string"}, "SheetName": {"type": "string"}}, "required": ["ExcelFile", "SheetName"]}, "SqlServerLoader": {"type": "object", "properties": {"Server": {"type": "string"}, "Database": {"type": "string"}, "Table": {"type": "string"}}, "required": ["Server", "Database", "Table"]}}, "required": ["ExcelExtractor", "SqlServerLoader"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ExcelExtractor" : {"ExcelFile" : "..\\..\\..\\..\\data\\names-500.xlsx", "SheetName" : "us-500"}, "SqlServerLoader" : {"Server" : "localhost", "Database" : "EtlTest", "Table" : "string_test"}}
json_instruct
{"type": "object", "properties": {"ExcelExtractor": {"type": "object", "properties": {"ExcelFile": {"type": "string"}, "SheetName": {"type": "string"}}, "required": ["ExcelFile", "SheetName"]}, "SqlServerLoader": {"type": "object", "properties": {"Server": {"type": "string"}, "Database": {"type": "string"}, "Table": {"type": "string"}}, "required": ["Server", "Database", "Table"]}}, "required": ["ExcelExtractor", "SqlServerLoader"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"openapi": {"type": "string"}, "paths": {"type": "object", "properties": {"/v1": {"type": "object", "properties": {"post": {"type": "object", "properties": {"summary": {"type": "string"}, "requestBody": {"type": "object", "properties": {"content": {"type": "object", "properties": {"application/json": {"type": "object", "properties": {"schema": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "format": {"type": "string"}}, "required": ["type", "format"]}}, "required": ["type", "items"]}}, "required": ["schema"]}}, "required": ["application/json"]}}, "required": ["content"]}, "responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"description": {"type": "string"}, "content": {"type": "object", "properties": {"application/json": {"type": "object", "properties": {"schema": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "format": {"type": "string"}}, "required": ["type", "format"]}}, "required": ["type", "items"]}}, "required": ["schema"]}}, "required": ["application/json"]}}, "required": ["description", "content"]}}, "required": ["200"]}}, "required": ["summary", "requestBody", "responses"]}}, "required": ["post"]}}, "required": ["/v1"]}}, "required": ["openapi", "paths"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"openapi" : "3.0.1", "paths" : {"/v1" : {"post" : {"summary" : "Convert an array of doubles to an array of floats", "requestBody" : {"content" : {"application/json" : {"schema" : {"type" : "array", "items" : {"type" : "number", "format" : "double"}}}}}, "responses" : {"200" : {"description" : "OK", "content" : {"application/json" : {"schema" : {"type" : "array", "items" : {"type" : "number", "format" : "float"}}}}}}}}}}
json_instruct
{"type": "object", "properties": {"openapi": {"type": "string"}, "paths": {"type": "object", "properties": {"/v1": {"type": "object", "properties": {"post": {"type": "object", "properties": {"summary": {"type": "string"}, "requestBody": {"type": "object", "properties": {"content": {"type": "object", "properties": {"application/json": {"type": "object", "properties": {"schema": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "format": {"type": "string"}}, "required": ["type", "format"]}}, "required": ["type", "items"]}}, "required": ["schema"]}}, "required": ["application/json"]}}, "required": ["content"]}, "responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"description": {"type": "string"}, "content": {"type": "object", "properties": {"application/json": {"type": "object", "properties": {"schema": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "format": {"type": "string"}}, "required": ["type", "format"]}}, "required": ["type", "items"]}}, "required": ["schema"]}}, "required": ["application/json"]}}, "required": ["description", "content"]}}, "required": ["200"]}}, "required": ["summary", "requestBody", "responses"]}}, "required": ["post"]}}, "required": ["/v1"]}}, "required": ["openapi", "paths"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "hospital": {"type": "string"}, "rich-menu": {"type": "string"}, "refresh": {"type": "string"}}, "required": ["lint", "hospital", "rich-menu", "refresh"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/eslint": {"type": "string"}, "@types/ioredis": {"type": "string"}, "@types/superagent": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "cross-env": {"type": "string"}, "dotenv": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-google": {"type": "string"}, "eslint-plugin-jsdoc": {"type": "string"}, "rimraf": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}, "typesync": {"type": "string"}}, "required": ["@types/eslint", "@types/ioredis", "@types/superagent", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "cross-env", "dotenv", "eslint", "eslint-config-google", "eslint-plugin-jsdoc", "rimraf", "ts-node", "typescript", "typesync"]}, "dependencies": {"type": "object", "properties": {"@line/bot-sdk": {"type": "string"}, "@now/node": {"type": "string"}, "date-fns": {"type": "string"}, "date-fns-tz": {"type": "string"}, "ioredis": {"type": "string"}, "superagent": {"type": "string"}}, "required": ["@line/bot-sdk", "@now/node", "date-fns", "date-fns-tz", "ioredis", "superagent"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "covid19-line-bot", "version" : "1.0.0", "description" : "An educational LINE chatbot about COVID-19 status in Indonesia", "main" : "index.js", "scripts" : {"lint" : "eslint src/**/*.ts api/**/*.ts", "hospital" : "tsc ./src/scripts/scraper.ts --esModuleInterop && node ./src/scripts/scraper.js", "rich-menu" : "tsc ./src/scripts/rich-menu.ts --esModuleInterop && node ./src/scripts/rich-menu.js", "refresh" : "rm -rf node_modules/ dist/ build/ && npm i"}, "keywords" : ["chatbot", "line", "eslint", "typescript"], "author" : "Namchee", "license" : "MIT", "devDependencies" : {"@types/eslint" : "^6.1.8", "@types/ioredis" : "^4.14.9", "@types/superagent" : "^4.1.7", "@typescript-eslint/eslint-plugin" : "^2.24.0", "@typescript-eslint/parser" : "^2.24.0", "cross-env" : "^7.0.2", "dotenv" : "^8.2.0", "eslint" : "^6.8.0", "eslint-config-google" : "^0.14.0", "eslint-plugin-jsdoc" : "^22.1.0", "rimraf" : "^3.0.2", "ts-node" : "^8.7.0", "typescript" : "^3.8.3", "typesync" : "^0.6.1"}, "dependencies" : {"@line/bot-sdk" : "^6.8.4", "@now/node" : "^1.6.1", "date-fns" : "^2.11.0", "date-fns-tz" : "^1.0.10", "ioredis" : "^4.16.0", "superagent" : "^5.2.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "hospital": {"type": "string"}, "rich-menu": {"type": "string"}, "refresh": {"type": "string"}}, "required": ["lint", "hospital", "rich-menu", "refresh"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/eslint": {"type": "string"}, "@types/ioredis": {"type": "string"}, "@types/superagent": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "cross-env": {"type": "string"}, "dotenv": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-google": {"type": "string"}, "eslint-plugin-jsdoc": {"type": "string"}, "rimraf": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}, "typesync": {"type": "string"}}, "required": ["@types/eslint", "@types/ioredis", "@types/superagent", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "cross-env", "dotenv", "eslint", "eslint-config-google", "eslint-plugin-jsdoc", "rimraf", "ts-node", "typescript", "typesync"]}, "dependencies": {"type": "object", "properties": {"@line/bot-sdk": {"type": "string"}, "@now/node": {"type": "string"}, "date-fns": {"type": "string"}, "date-fns-tz": {"type": "string"}, "ioredis": {"type": "string"}, "superagent": {"type": "string"}}, "required": ["@line/bot-sdk", "@now/node", "date-fns", "date-fns-tz", "ioredis", "superagent"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$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"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "babel-eslint": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-config-react-app": {"type": "string"}, "eslint-plugin-flowtype": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "eslint-plugin-react-hooks": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "babel-eslint", "eslint", "eslint-config-airbnb", "eslint-config-react-app", "eslint-plugin-flowtype", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react", "eslint-plugin-react-hooks", "typescript"]}}, "required": ["name", "version", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@react-x/eslint-config", "version" : "3.4.1", "main" : "src/eslintrc.js", "dependencies" : {"@typescript-eslint/eslint-plugin" : "1.13.0", "@typescript-eslint/parser" : "1.13.0", "babel-eslint" : "10.0.3", "eslint" : "5.16.0", "eslint-config-airbnb" : "18.0.1", "eslint-config-react-app" : "4.0.1", "eslint-plugin-flowtype" : "2.50.3", "eslint-plugin-import" : "2.18.2", "eslint-plugin-jsx-a11y" : "6.2.3", "eslint-plugin-react" : "7.16.0", "eslint-plugin-react-hooks" : "1.7.0", "typescript" : "3.6.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "babel-eslint": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-config-react-app": {"type": "string"}, "eslint-plugin-flowtype": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "eslint-plugin-react-hooks": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "babel-eslint", "eslint", "eslint-config-airbnb", "eslint-config-react-app", "eslint-plugin-flowtype", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react", "eslint-plugin-react-hooks", "typescript"]}}, "required": ["name", "version", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "generate-vapid-keys": {"type": "string"}}, "required": ["build", "generate-vapid-keys"]}, "dependencies": {"type": "object", "properties": {"@koa/cors": {"type": "string"}, "koa": {"type": "string"}, "koa-bodyparser": {"type": "string"}, "koa-router": {"type": "string"}, "web-push": {"type": "string"}}, "required": ["@koa/cors", "koa", "koa-bodyparser", "koa-router", "web-push"]}, "devDependencies": {"type": "object", "properties": {"@types/koa": {"type": "string"}, "@types/koa-bodyparser": {"type": "string"}, "@types/koa-router": {"type": "string"}, "@types/koa__cors": {"type": "string"}, "@types/web-push": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/koa", "@types/koa-bodyparser", "@types/koa-router", "@types/koa__cors", "@types/web-push", "typescript"]}}, "required": ["name", "version", "repository", "author", "license", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "push-server", "version" : "0.0.0", "repository" : "https://github.com/tirr-c/pwa-exercise.git", "author" : "Wonwoo Choi", "license" : "MIT", "private" : true, "scripts" : {"build" : "tsc", "generate-vapid-keys" : "web-push generate-vapid-keys --json"}, "dependencies" : {"@koa/cors" : "^2.2.3", "koa" : "^2.6.2", "koa-bodyparser" : "^4.2.1", "koa-router" : "^7.4.0", "web-push" : "^3.3.3"}, "devDependencies" : {"@types/koa" : "^2.0.48", "@types/koa-bodyparser" : "^4.2.1", "@types/koa-router" : "^7.0.37", "@types/koa__cors" : "^2.2.3", "@types/web-push" : "^3.3.0", "typescript" : "^3.2.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "generate-vapid-keys": {"type": "string"}}, "required": ["build", "generate-vapid-keys"]}, "dependencies": {"type": "object", "properties": {"@koa/cors": {"type": "string"}, "koa": {"type": "string"}, "koa-bodyparser": {"type": "string"}, "koa-router": {"type": "string"}, "web-push": {"type": "string"}}, "required": ["@koa/cors", "koa", "koa-bodyparser", "koa-router", "web-push"]}, "devDependencies": {"type": "object", "properties": {"@types/koa": {"type": "string"}, "@types/koa-bodyparser": {"type": "string"}, "@types/koa-router": {"type": "string"}, "@types/koa__cors": {"type": "string"}, "@types/web-push": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/koa", "@types/koa-bodyparser", "@types/koa-router", "@types/koa__cors", "@types/web-push", "typescript"]}}, "required": ["name", "version", "repository", "author", "license", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}