input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "prop...
{"name" : "gulp-docker-notify", "version" : "0.1.0", "description" : "gulp plugin to send messages from a gulp watch within a docker container to the host notification center", "keywords" : ["gulpplugin", "notify", "gulp", "notification", "mac notification", "docker"], "main" : "index.js", "scripts" : {"test" : "cd exa...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author...
The schema below describes a JSON structure. Generate a valid example: {"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"...
{"id" : 27506, "title" : ["[A Piercing Scream]"], "description" : ["A subtle swirling pattern of gold and silver threads climbs the walls of this spacious, square tent. A single golden pole in the center raises the ceiling high enough to fit even the tallest of giantkin, ornamented with a spiraling string of glitterin...
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": {"26541"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"ty...
{"code" : 5107010001, "parent" : 5107010, "name" : "PESABAN", "latitude" : null, "longitude" : null, "postal" : [80863], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "n...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "request": {"type": "string"}}, "required": ["cors", "dotenv", "express", "re...
{"dependencies" : {"cors" : "^2.8.4", "dotenv" : "^6.0.0", "express" : "^4.16.3", "request" : "^2.87.0"}}
json_instruct
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "request": {"type": "string"}}, "required": ["cors", "dotenv", "express", "request"]}}, "required": ["dependencies"], "$schema": "http://json-schem...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "strin...
{"name" : "ongr/cookies-bundle", "description" : "Cookie model for using cookies as Symfony services", "keywords" : ["cookies", "cookie", "model", "symfony", "service", "ongr"], "type" : "symfony-bundle", "homepage" : "http://ongr.io", "license" : "MIT", "authors" : [{"name" : "ONGR team", "homepage" : "http://www.nfq....
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, ...
[{"manufacturer" : "Lenovo", "market_name" : "", "codename" : "mi_350", "model" : "Spice Mi-350"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies 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" : "1707021009", "district_id" : "1707021", "name" : "BUNGIN"}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "woodenutilities:block/wooden_furnace"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "version": {"type": "string"}, "meta": {"type": "object", "properties": {"label": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "icon": {"type": "string"}, "tags": ...
{"id" : "google-calendar", "version" : "1.0.0", "meta" : {"label" : "Google Calendar", "description" : "Retrieve data from your Google Calendar account", "author" : "Dataiku (Alex Bourret)", "icon" : "icon-calendar", "tags" : ["Google"], "url" : "https://www.dataiku.com/product/plugins/google-calendar/", "licenseInfo" ...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "version": {"type": "string"}, "meta": {"type": "object", "properties": {"label": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "icon": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "url": {"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 91640, "date" : "2016-09-12 08:36:45", "user" : "yusufg90", "post" : "Our VPS hosting is running on uk on servers with E3-1270 v5 CPU's, DDR4 RAM and brand new hard drives as well as fully redundant networking and power.\r\n\r\nSome other bits you might be interested in\r\n\r\n IPv6, request extra for FREE!...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "requ...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[-2.42611, 50.96653], [-2.43097, 50.97791], [-2.45233, 50.9807], [-2.45386, 50.98371], [-2.44751, 50.99132], [-2.43583, 50.9985], [-2.43595, 51.00009], [-2.44837, 51.00309], [-2.45266, 51.00185], [-2.46462, 51.00381], [-2.46368, 51.00716], [-2.469...
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": "ob...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"106": {"type": "integer"}, "107": {"type": "integer"}, "108": {"type": "integer"}, "111": {"type": "integer"}, "113": {"type": "integer"}, "12": {"type": "integer"}, "124": {"type": "integer"}, "13": {"type": "integer"}, "137"...
{"106" : 73369, "107" : 187136, "108" : 189065, "111" : 446788, "113" : 132962, "12" : 295498, "124" : 92116, "13" : 434250, "137" : 140938, "138" : 240787, "140" : 78663, "141" : 107844, "147" : 51755, "149" : 201805, "15" : 234961, "151" : 44162, "152" : 26583, "164" : 122621, "177" : 180966, "18" : 1357, "19" : 1024...
json_instruct
{"type": "object", "properties": {"106": {"type": "integer"}, "107": {"type": "integer"}, "108": {"type": "integer"}, "111": {"type": "integer"}, "113": {"type": "integer"}, "12": {"type": "integer"}, "124": {"type": "integer"}, "13": {"type": "integer"}, "137": {"type": "integer"}, "138": {"type": "integer"}, "140": {...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["130523102201", "\u91d1\u5e97\u6751\u59d4\u4f1a", "121", "0"], ["130523102202", "\u5927\u8f9b\u65fa\u6751\u59d4\u4f1a", "220", "0"], ["130523102203", "\u5c0f\u8f9b\u65fa\u6751\u59d4\u4f1a", "220", "0"], ["130523102204", "\u5c0f\u9a6c\u6751\u59d4\u4f1a", "220", "0"], ["130523102205", "\u94c1\u9876\u5893\u6751\u59d4\u4...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"@context": {"type": "string"}, "@type": {"type": "string"}, "type": {"type": "string"}, "config": {"type": "object", "properties": {"rows": {"type": "array", "items": {"type": "object", "properties": {"columns": {"type": "array"...
{"@context" : "/api/3/contexts/SystemViewTemplate", "@type" : "SystemViewTemplate", "type" : "rows", "config" : {"rows" : [{"columns" : [{"style" : "col-lg-12", "widgets" : [{"config" : {"actionButtons" : [], "checkboxStatus" : false, "columns" : ["id", "priority", "assignedToPerson", "name", "status", "dueBy", "type",...
json_instruct
{"type": "object", "properties": {"@context": {"type": "string"}, "@type": {"type": "string"}, "type": {"type": "string"}, "config": {"type": "object", "properties": {"rows": {"type": "array", "items": {"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "object", "properties": {"style": {"t...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema...
[{"name" : "FUAD", "frequency" : 2772, "males" : "99.27849927849928 %", "females" : "0.7215007215007215 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "req...
{"name" : "component-raf", "description" : "request animation frame", "version" : "1.2.0", "keywords" : ["animate", "requestAnimationFrame", "performance"], "dependencies" : {}, "component" : {"scripts" : {"raf/index.js" : "index.js"}}, "main" : "index.js", "repository" : {"type" : "git", "url" : "https://github.com/co...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "component": {"type": "object", "properties": {"scripts": {"ty...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type...
{"name" : "getkirby/layouts", "description" : "Kirby Layouts Plugin", "license" : "MIT", "type" : "kirby-plugin", "version" : "1.0.1", "homepage" : "https://github.com/getkirby/layouts", "authors" : [{"name" : "Bastian Allgeier", "email" : "bastian@getkirby.com"}], "require" : {"getkirby/composer-installer" : "^1.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"app": {"type": "array", "items": {"type": "string"}}, "component---node-modules-gatsby-plugin-offline-app-shell-js": {"type": "array", "items": {"type": "string"}}, "component---src-templates-post-js": {"type": "array", "it...
{"app" : ["/app-408f985cbb2305417a18.js"], "component---node-modules-gatsby-plugin-offline-app-shell-js" : ["/component---node-modules-gatsby-plugin-offline-app-shell-js-9466aa3099e85210abfb.js"], "component---src-templates-post-js" : ["/component---src-templates-post-js-c58a5c4c489ce4814265.js"], "component---src-page...
json_instruct
{"type": "object", "properties": {"app": {"type": "array", "items": {"type": "string"}}, "component---node-modules-gatsby-plugin-offline-app-shell-js": {"type": "array", "items": {"type": "string"}}, "component---src-templates-post-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-404-it-js": ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], ...
{"code" : "MET002", "lang" : "de", "description" : "\nRohstahl\n\nErl\u00e4uterung f\u00fcr folgende Statistik(en):\n42311 Eisen- und Stahlstatistik\n\nBegriffsinhalt:\nRohstahl ist der in Stahlwerken oder Stahlgie\u00dfereien\nerschmolzene Stahl. Er beinhaltet alle Herstellungsverfahren\nund alle Stahlg\u00fcten. Unte...
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"HostConfigHash" : "569178d", "CardHash" : "509e162", "Error" : null}
json_instruct
{"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"typ...
{"name" : "nogo/feedbox", "description" : "A feed reader like google reader", "keywords" : ["feed reader", "atom", "rss", "reader"], "homepage" : "http://github.com/nogo/feedbox", "license" : "MIT", "authors" : [{"name" : "Danilo K\u00fchn", "email" : "dk@nogo-software.de", "homepage" : "http://nogo-software.de"}], "re...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"layers": {"type": "array", "items": {"type": "object", "properties": {"num_neurons": {"type": "integer"}, "init": {"type": "string"}, "activation": {"type": "string"}}, "required": ["num_neurons", "init", "activation"]}}}, "re...
{"layers" : [{"num_neurons" : 250, "init" : "uniform", "activation" : "relu"}, {"num_neurons" : 200, "init" : "uniform", "activation" : "relu"}, {"num_neurons" : 150, "init" : "uniform", "activation" : "relu"}, {"num_neurons" : 100, "init" : "uniform", "activation" : "relu"}, {"num_neurons" : 50, "init" : "uniform", "a...
json_instruct
{"type": "object", "properties": {"layers": {"type": "array", "items": {"type": "object", "properties": {"num_neurons": {"type": "integer"}, "init": {"type": "string"}, "activation": {"type": "string"}}, "required": ["num_neurons", "init", "activation"]}}}, "required": ["layers"], "$schema": "http://json-schema.org/dra...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"widgets": {"type": "object", "properties": {}, "required": []}, "tracking": {"type": "object", "properties": {}, "required": []}}, "required": ["widgets", "tracking"], "$schema": "http://json-schema.org/draft-07/sch...
{"widgets" : {}, "tracking" : {}}
json_instruct
{"type": "object", "properties": {"widgets": {"type": "object", "properties": {}, "required": []}, "tracking": {"type": "object", "properties": {}, "required": []}}, "required": ["widgets", "tracking"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"solution_size": {"type": "integer"}, "ok": {"type": "boolean"}, "resemblance": {"type": "number"}, "problem_id": {"type": "integer"}, "solution_spec_hash": {"type": "string"}}, "required": ["solution_size", "ok...
{"solution_size" : 1987, "ok" : true, "resemblance" : 0.660486, "problem_id" : 2915, "solution_spec_hash" : "05c88bccbb20c268ea8f2cf50c1ad4216081fdc9"}
json_instruct
{"type": "object", "properties": {"solution_size": {"type": "integer"}, "ok": {"type": "boolean"}, "resemblance": {"type": "number"}, "problem_id": {"type": "integer"}, "solution_spec_hash": {"type": "string"}}, "required": ["solution_size", "ok", "resemblance", "problem_id", "solution_spec_hash"], "$schema": "http://j...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"author": {"type": "string"}, "version": {"type": "string"}, "category": {"type": "string"}, "title": {"type": "string"}, "blocks": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "str...
{"author" : "Pavel Langweil", "version" : "0.1", "category" : "Test", "title" : "Test block", "blocks" : [{"type" : "com.rainbowcreatures.test.testBlock", "name" : "Test block"}]}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "version": {"type": "string"}, "category": {"type": "string"}, "title": {"type": "string"}, "blocks": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}}}, "re...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-sche...
[{"year" : 1985, "sex" : "F", "n" : 5, "prop" : 2.71e-06}, {"year" : 1986, "sex" : "F", "n" : 7, "prop" : 3.79e-06}, {"year" : 1987, "sex" : "F", "n" : 8, "prop" : 4.27e-06}, {"year" : 1988, "sex" : "F", "n" : 7, "prop" : 3.64e-06}, {"year" : 1990, "sex" : "F", "n" : 9, "prop" : 4.38e-06}, {"year" : 1991, "sex" : "F", ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"text": {"type": "string"}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["titl...
{"text" : "\n\u00a0 \u00a0 \u00a0Unless the context otherwise requires, the terms defined in this Article shall have the following meanings. Defined terms used in this Article but not defined in this Article have the meaning given them in the Act. \n\u00a0 \u00a0 \u00a0(a)\u00a0 \u00a0 \u00a0\"Act\" means the Meilo-Roo...
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "requi...
Please provide a valid JSON object following this schema: {"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"}}}}}, "requ...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[135.875, 42.083333333333336], [135.875, 42.166666666666664], [136.0, 42.166666666666664], [136.0, 42.083333333333336], [135.875, 42.083333333333336]]]}, "properties" : {"code" : 633517, "url" : "http://madefor.github.io/0410/api/v1/633517.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": "ob...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"\ub9ac\uc2a4\ud2b8\uac00": {"type": "array", "items": {"type": "integer"}}}, "required": ["\ub9ac\uc2a4\ud2b8\uac00"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\ub9ac\uc2a4\ud2b8\uac00" : [983041]}
json_instruct
{"type": "object", "properties": {"\ub9ac\uc2a4\ud2b8\uac00": {"type": "array", "items": {"type": "integer"}}}, "required": ["\ub9ac\uc2a4\ud2b8\uac00"], "$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", "pr...
{"type" : "MultiPolygon", "coordinates" : [[[[-96.90665162299993, 32.95541432900006], [-96.90663478799995, 32.95634307400007], [-96.90419095299994, 32.957888663000055], [-96.89904488999996, 32.95995704400007], [-96.89906594199991, 32.95832066500002], [-96.89880077799992, 32.95812761200005], [-96.89880077799992, 32.9575...
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": {...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-112.16544, 33.715574], [-112.165409, 33.71887], [-112.164359, 33.720784], [-112.165211, 33.723875], [-112.160751, 33.72996], [-112.156875, 33.728824], [-112.143697, 33.727383], [-112.13868, 33.723911], [-112.136703, 33.7...
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": "numbe...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"comment": {"type": "string"}, "status": {"type": "string"}, "message": {"type": "string"}, "data": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "url": {"type": "string"}, ...
{"comment" : "\u66f4\u65b0\u53cb\u94fe", "status" : "success", "message" : "\u53cb\u94fe\u4fee\u6539\u6210\u529f", "data" : {"id" : 11, "name" : "new name", "url" : "https://www.chaosxy.com", "created_at" : "1609723407", "updated_at" : "1609723756", "editAble" : false}}
json_instruct
{"type": "object", "properties": {"comment": {"type": "string"}, "status": {"type": "string"}, "message": {"type": "string"}, "data": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "url": {"type": "string"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "e...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"feedId": {"type": "string"}, "id": {"type": "string"}, "title": {"type": "string"}, "updated": {"type": "integer"}, "velocity": {"type": "number"}, "subscribers": {"type": "integer"}, "website": {"type": "string"}, "language": {...
{"feedId" : "feed/https://wujingquan.com/atom.xml", "id" : "feed/https://wujingquan.com/atom.xml", "title" : "\u641e\u641e\u9707", "updated" : 1538976730000, "velocity" : 0.0, "subscribers" : 0, "website" : "https://wujingquan.com/", "language" : "en", "state" : "dormant"}
json_instruct
{"type": "object", "properties": {"feedId": {"type": "string"}, "id": {"type": "string"}, "title": {"type": "string"}, "updated": {"type": "integer"}, "velocity": {"type": "number"}, "subscribers": {"type": "integer"}, "website": {"type": "string"}, "language": {"type": "string"}, "state": {"type": "string"}}, "require...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "it...
{"directions" : ["Prepare stuffing according to package directions, and set aside in a large bowl.", "Preheat oven to 350 degrees F (175 degrees C).", "Bring water to boil in a medium saucepan over medium heat, and stir in the onion, celery and sage. Boil 10 minutes, or until the onion is soft. Stir into the prepared s...
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"}}, "r...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"declares": {"type": "array", "items": {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "members": {"type": "array", "items": {"type": "object", "properties": {"kind": ...
{"declares" : [{"kind" : "class", "name" : "A", "members" : [{"kind" : "constructor"}]}]}
json_instruct
{"type": "object", "properties": {"declares": {"type": "array", "items": {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "members": {"type": "array", "items": {"type": "object", "properties": {"kind": {"type": "string"}}, "required": ["kind"]}}}, "required": ["kind", "name", "m...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "declinature", "definition" : "The act of declining or refusing; as, the declinature of an office."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"HolidayEpisode": {"type": "array", "items": {"type": "string"}}}, "required": ["HolidayEpisode"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"HolidayEpisode" : ["ChristmasSpecial", "EasterSpecial", "HalloweenSpecial", "HolidayMode", "OutOfHolidayEpisode", "Supertrope", "AprilFoolsPlot", "ComedyTropes", "Jerkass", "ChristmasEpisode", "ChristmasTropes", "FestivalEpisode", "FoundingDay", "HalloweenEpisode", "NewYearHasCome", "ThanksgivingEpisode", "Valentines...
json_instruct
{"type": "object", "properties": {"HolidayEpisode": {"type": "array", "items": {"type": "string"}}}, "required": ["HolidayEpisode"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "...
{"issuer_ca_id" : 16418, "issuer_name" : "C=US, O=Let's Encrypt, CN=Let's Encrypt Authority X3", "name_value" : "mail.shashank.124.37.1.194.xip.io", "min_cert_id" : 964745239, "min_entry_timestamp" : "2018-11-21T11:11:04.621", "not_before" : "2018-11-21T10:11:03", "not_after" : "2019-02-19T10:11:03"}
json_instruct
{"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "iss...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "st...
{"name" : "Datepicker.js", "version" : "0.1.1", "description" : "A pure JS datepicker", "main" : "dist/datepicker.js", "repository" : {"type" : "git", "url" : "git+https://github.com/wwilsman/Datepicker.js.git"}, "keywords" : ["datepicker", "date", "picker", "pikaday"], "author" : "Wil Wilsman", "license" : "MIT", "bug...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": ...
{"code" : "200", "messages" : "Successfully received data", "value" : [{"id" : "6305041001", "id_kecamatan" : "630504", "name" : "Rangda Malingkung"}, {"id" : "6305041002", "id_kecamatan" : "630504", "name" : "Kupang"}, {"id" : "6305041003", "id_kecamatan" : "630504", "name" : "Rantau Kanan"}, {"id" : "6305041004", "id...
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kecamatan", "name"]}}}, "required": ["code...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["grunt-flag-sprite", "mergus-icons", "payment-icons"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "created": {"type": "string"}, "modified": {"type": "string"}, "lastBackedUp": {"type": "string"}, "accessed": {"type": "string"}, "clonedFrom": {"type": "nu...
{"name" : "Spring 2019 TEALS Project Student's Guide", "id" : "sp19-teals-azure-project", "created" : "4/23/2019 8:02:51 PM +00:00", "modified" : "4/23/2019 8:02:51 PM +00:00", "lastBackedUp" : "", "accessed" : "11/13/2019 9:07:11 PM +00:00", "clonedFrom" : null, "cloneCount" : 24, "gitRepositoryUrl" : null, "public" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "created": {"type": "string"}, "modified": {"type": "string"}, "lastBackedUp": {"type": "string"}, "accessed": {"type": "string"}, "clonedFrom": {"type": "null"}, "cloneCount": {"type": "integer"}, "gitRepositoryUrl": {"type": "null...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "...
{"author" : {"id" : "t2_6b9oas", "name" : "knappsalot"}, "date" : {"day" : 1570492800, "full" : 1570505974, "month" : 1569888000, "week" : 1570320000}, "id" : "t3_deum41", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 94832, "fullUrl" : "https://preview.redd.it/9pd6k7qsm8r31.jpg?auto=webp&s=0b544ebe0d9277d...
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}},...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}, "keep": {"type": "string"}, "draw": {"type": "integer"}, "pick": {"type": "integer"}, "source": {"type": "string"}}, "required": ["type", "valu...
[{"type" : "Question", "value" : "The most controversial game at PAX this year is an 8-bit indie platformer about %s.", "keep" : "Yes", "draw" : 0, "pick" : 1, "source" : "PAX Prime 2013 Expansion"}, {"type" : "Question", "value" : "What made Spock cry?", "keep" : "Yes", "draw" : 0, "pick" : 1, "source" : "PAX Prime 20...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}, "keep": {"type": "string"}, "draw": {"type": "integer"}, "pick": {"type": "integer"}, "source": {"type": "string"}}, "required": ["type", "value", "keep", "draw", "pick", "source"]}, "$schema": "http://...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-...
{"variants" : {"" : {"model" : "primalmagick:block/runescribing_altar_basic"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"allowed_clans": {"type": "array", "items": {"type": "string"}}, "clan": {"type": "string"}, "cost": {"type": "string"}, "deck_limit": {"type": "integer"}, "element": {"type": "array", "items": {}}, "...
[{"allowed_clans" : ["unicorn"], "clan" : "unicorn", "cost" : "2", "deck_limit" : 3, "element" : [], "fate" : null, "glory" : 1, "honor" : null, "id" : "reckless-avenger", "influence_cost" : null, "influence_pool" : null, "is_banned" : false, "is_banned_in_jade" : false, "is_banned_in_skirmish" : false, "is_restricted"...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"allowed_clans": {"type": "array", "items": {"type": "string"}}, "clan": {"type": "string"}, "cost": {"type": "string"}, "deck_limit": {"type": "integer"}, "element": {"type": "array", "items": {}}, "fate": {"type": "null"}, "glory": {"type": "integer"}, "hon...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "rankine:block/lime_fiber_block"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$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"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["...
{"name" : "internet-drum-pattern-queue-service-test", "version" : "1.0.0", "description" : "Functionally tests the HTTP API of the Internet of Drums pattern queue service.", "scripts" : {"test" : "tslint -c tslint.json 'test/**/*.ts' && tsc -p .", "start" : "mocha --bail --require ts-node/register test/*.ts"}, "reposit...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "repository": {"type": "object", "properties": {"type": {...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "...
{"name" : "BroadNibber", "description" : "Glyphs.app plugin that simulates the broad-nib pen (a.k.a. BrdaNibber)", "license" : {"key" : "apache-2.0", "name" : "Apache License 2.0", "spdx_id" : "Apache-2.0", "url" : "https://api.github.com/licenses/apache-2.0"}, "starNum" : 24, "folkNum" : 4, "watchNum" : 24, "topic" : ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"typ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "i...
{"directions" : ["Puree all ingredients in processor until smooth. Transfer to bowl. Cover and refrigerate until ready to use. (Can be prepared 1 day ahead. Keep refrigerated.)"], "ingredients" : ["1 large papaya, peeled, seeded, coarsely chopped (about 1 1/2 cups)", "5 tablespoons sugar", "3 tablespoons fresh lime jui...
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"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Proxies Scraper", "description" : "Default LazyLeech proxies scraper plugin."}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"botium": {"type": "object", "properties": {"Capabilities": {"type": "object", "properties": {"PROJECTNAME": {"type": "string"}, "CONTAINERMODE": {"type": "string"}, "LEX_VERSION": {"type": "string"}, "LEX_REGION": {"type": "st...
{"botium" : {"Capabilities" : {"PROJECTNAME" : "Botium Project Lex", "CONTAINERMODE" : "lex", "LEX_VERSION" : "V2", "LEX_REGION" : "...", "LEX_ACCESS_KEY_ID" : "...", "LEX_SECRET_ACCESS_KEY" : "...", "LEX_PROJECT_NAME" : "...", "LEX_PROJECT_ALIAS" : "...", "LEX_SESSION_ATTRIBUTES" : {"aa" : "aa"}, "LEX_ACCEPT" : "audio...
json_instruct
{"type": "object", "properties": {"botium": {"type": "object", "properties": {"Capabilities": {"type": "object", "properties": {"PROJECTNAME": {"type": "string"}, "CONTAINERMODE": {"type": "string"}, "LEX_VERSION": {"type": "string"}, "LEX_REGION": {"type": "string"}, "LEX_ACCESS_KEY_ID": {"type": "string"}, "LEX_SECRE...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "item...
{"name" : "The SNKRZ Token", "symbol" : "SKZ", "logoURI" : "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/6piwLtPi6sYjvE1reSEpmAXfcJqJtyGp3fahhEU7VF2C/logo.png", "decimals" : 9, "address" : "6piwLtPi6sYjvE1reSEpmAXfcJqJtyGp3fahhEU7VF2C", "chainId" : 101, "tags" : ["utility-token"], "exten...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "extensions": {"type": "object", "properties"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "590622922ee2b359a2e1fc93c9f4dcfa60221320"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "github": {"type": "string"}, "ecopy": {"type": "string"}}, "required": ["name", "email", "phone", "github", "ecopy"], "$schema": ...
{"name" : "Xuefeng Zhu", "email" : "xzhu15@illinois.edu", "phone" : "217-607-6680", "github" : "github.com/Xuefeng-Zhu", "ecopy" : "http://xuefeng-zhu.github.io/My_Resume/"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "github": {"type": "string"}, "ecopy": {"type": "string"}}, "required": ["name", "email", "phone", "github", "ecopy"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-87.586232, 41.76241], [-87.576221, 41.762515], [-87.576142, 41.758876], [-87.586136, 41.758764], [-87.586232, 41.76241]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 23359}}]}
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": "numbe...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "default_locale": {"type": "string"}, "short_name": {"type": "string"}, "author": {"type": "string"}, "background": {"type": "object", ...
{"name" : "__MSG_appName__", "version" : "1.0.6", "description" : "__MSG_appDesc__", "default_locale" : "en", "short_name" : "http 451", "author" : "Codarren Velvindron", "background" : {"scripts" : ["background.js"]}, "permissions" : ["<all_urls>", "tabs"], "browser_action" : {"default_title" : "__MSG_appAction__", "d...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "default_locale": {"type": "string"}, "short_name": {"type": "string"}, "author": {"type": "string"}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"ty...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}...
[{"postal_code" : "39859", "place_name" : "Centro de Convenciones", "place_type" : "Gran usuario", "county" : "Acapulco de Ju\u00e1rez", "state" : "Guerrero", "city" : "Acapulco de Ju\u00e1rez"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "s...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "atlas": {"type": "string"}, "rect": {"type": "array", "items": {"type": ...
{"__type__" : "cc.SpriteFrame", "content" : {"name" : "btn_yellow_02", "texture" : "6d1e4c54-aef2-4d8e-b322-590d2a837174", "atlas" : "aed22114-8b02-4196-9768-4f9d3560f524", "rect" : [264, 0, 187, 59], "offset" : [0, 0], "originalSize" : [187, 59]}}
json_instruct
{"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "atlas": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "items": {"type": "integer"}}, "orig...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val...
{"n_dim" : 13, "n_trials" : 340, "objective" : "griewank_on_cube", "white" : "ultraopt_etpe", "black" : "pymoo_nelder", "traceback" : ["passing", "passing"], "best_val" : [181.43033261675686, 10.613833020969091], "best_x" : [[0.7327499587531968, 0.4428959082499499, 0.4548469995669097, 0.4451888272518315, 0.595662996837...
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"},...
{"body" : "Hi Mike,\n\n\nUnless you're really, really careful, the communication with the FPGA \nwill kill any savings you make in the ray tracing times on a hardware \nimplementation. This has been found time and again for the past \ndecades by the numerous people who have written or attempted \nray-tracing on ha...
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"error": {"type": "string"}, "error_unknown": {"type": "string"}, "reloadPage": {"type": "string"}, "loginInformation": {"type": "string"}, "login": {"type": "string"}, "enterUsernamePassword": {"type": "strin...
{"error" : "Erro", "error_unknown" : "Produciuse un erro. Por favor, volva cargar a p\u00e1xina.", "reloadPage" : "Recargar p\u00e1xina", "loginInformation" : "Inicie sesi\u00f3n coa s\u00faa conta de usuario de Opencast", "login" : "Iniciar sesi\u00f3n", "enterUsernamePassword" : "Por favor, introduza o seu nome de us...
json_instruct
{"type": "object", "properties": {"error": {"type": "string"}, "error_unknown": {"type": "string"}, "reloadPage": {"type": "string"}, "loginInformation": {"type": "string"}, "login": {"type": "string"}, "enterUsernamePassword": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "remembe...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "proper...
{"name" : "GangguBot", "version" : "1.0.0", "main" : "index.js", "repository" : "https://github.com/GBSWHS/GangguBot.git", "author" : "Park Min Hyeok <pmhstudio.pmh@gmail.com>", "license" : "MIT", "dependencies" : {"cheerio" : "^1.0.0-rc.6", "discord.js" : "^12.5.3", "superagent" : "^6.1.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cheerio": {"type": "string"}, "discord.js": {"type": ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"900779765": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900779766": {"type": "object", "properties": {"nama": {"type":...
{"900779765" : {"nama" : "TPS 1", "dapil" : [3601, 13609, 2360101]}, "900779766" : {"nama" : "TPS 2", "dapil" : [3601, 13609, 2360101]}, "900779767" : {"nama" : "TPS 3", "dapil" : [3601, 13609, 2360101]}, "900779768" : {"nama" : "TPS 4", "dapil" : [3601, 13609, 2360101]}}
json_instruct
{"type": "object", "properties": {"900779765": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900779766": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "...
{"directions" : ["Place eggs in a saucepan and cover with water. Bring to a boil, remove from heat, and let eggs stand in hot water for 15 minutes. Remove eggs from hot water, cool under cold running water, and peel. Chop eggs and transfer to a salad bowl.", "Mash avocado in a separate bowl using a fork. Mix mashed avo...
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"}}, "r...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["small", "normal", "medium", "large"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "540625206201", "text" : "\u4e9a\u8272\u6751"}, {"id" : "540625206202", "text" : "\u4e1c\u70ed\u6751"}, {"id" : "540625206203", "text" : "\u624e\u743c\u6751"}, {"id" : "540625206204", "text" : "\u679c\u8292\u6751"}, {"id" : "540625206205", "text" : "\u9c81\u4e45\u6751"}]
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produ...
{"userId" : 61932, "cartId" : "b735eb40-8aa7-4886-9b18-83525c59e6f0", "preferredProducts" : [23, 3414, 2255, 3160, 3593, 995, 3920], "productReviews" : [{"productId" : 395, "reviewText" : "The box this comes in is 5 light-year by 6 foot and weights 17 megaton!!!", "reviewDate" : "2020-02-27T13:16:00.7938527+02:00"}, {"...
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
Based on the schema below, produce a valid JSON object: {"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" : "MEINTJE", "frequency" : 3, "gender" : "female"}]
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#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
[110.48259378961419, 111.96922733448285, 115.93358345413263, 117.4202169990013]
json_instruct
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}, "parserOpts": {"type": "object", "properties": {"allowReturnOutsideFunction": {"type": "boolean"}}, "required": ["allowReturnOutsideFunction"]}}, "req...
{"plugins" : ["transform-async-to-generator", "transform-es2015-destructuring", "transform-es2015-parameters"], "parserOpts" : {"allowReturnOutsideFunction" : true}}
json_instruct
{"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}, "parserOpts": {"type": "object", "properties": {"allowReturnOutsideFunction": {"type": "boolean"}}, "required": ["allowReturnOutsideFunction"]}}, "required": ["plugins", "parserOpts"], "$schema": "http://json-schema.org/draft-0...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"expid": {"type": "string"}, "expname": {"type": "string"}, "freqgain1": {"type": "string"}, "freqgain2": {"type": "string"}, "freqgain3": {"type": "string"}, "finalgain1": {"type": "string"}, "finalgain2": {"ty...
{"expid" : "lo", "expname" : "Crispness-Low pass", "freqgain1" : "15", "freqgain2" : "0", "freqgain3" : "-15", "finalgain1" : "-40", "finalgain2" : "-20", "finalgain3" : "0", "measname" : "Crunchiness of chips", "scalemin" : "Soft / Soggy / Stale", "scalemax" : "Crisp / Crunchy / Fresh", "repetitions" : "2", "freqs" : ...
json_instruct
{"type": "object", "properties": {"expid": {"type": "string"}, "expname": {"type": "string"}, "freqgain1": {"type": "string"}, "freqgain2": {"type": "string"}, "freqgain3": {"type": "string"}, "finalgain1": {"type": "string"}, "finalgain2": {"type": "string"}, "finalgain3": {"type": "string"}, "measname": {"type": "str...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "st...
{"name" : "RENAPEPSA TABLET", "harga" : " Rp. 127.050/ kemasan", "golongan" : "http://medicastore.com/image_banner/obat_keras_dan_psikotropika.gif", "kandungan" : "Famotidine.", "indikasi" : "Pengobatan jangka pendek ulkus duodenum aktif. Terapi pemeliharaan/lanjutan untuk pasien ulkus duodenum. Pengobatan kondisi hip...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"fromUser": {"type": "object", "properties": {"avatarUrl": {"type": "string"}, "displayName": {"type": "string"}, "gv": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "stri...
[{"fromUser" : {"avatarUrl" : "https://avatars-02.gitter.im/gh/uv/4/username", "displayName" : "User Full Name", "gv" : "4", "id" : "54d7876c15522ed4b3dbbefb", "url" : "/user1", "username" : "username1", "v" : 17}, "html" : "test message", "id" : "57509d0ef44fde236e52f395", "issues" : [], "meta" : [], "readBy" : 8, "se...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"fromUser": {"type": "object", "properties": {"avatarUrl": {"type": "string"}, "displayName": {"type": "string"}, "gv": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "username": {"type": "string"}, "v": {"type": "integer"}}, "requir...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"env": {"type": "object", "properties": {"NOTE": {"type": "string"}, "distroversion": {"type": "string"}, "sdkversion": {"type": "string"}, "gccversion": {"type": "string"}, "hosttriplet": {"type": "string"}, "targettriplet": {"t...
{"env" : {"NOTE" : "This is a temporary workaround for vscode-cpptools issue 6037", "distroversion" : "10.20.33.0", "sdkversion" : "20.33", "gccversion" : "10.1.0", "hosttriplet" : "x86_64-wrlinuxsdk-linux", "targettriplet" : "corei7-64-wrs-linux", "targetarchtriplet" : "x86_64-wrs-linux", "sdkroot" : "/home/rcwoolley/...
json_instruct
{"type": "object", "properties": {"env": {"type": "object", "properties": {"NOTE": {"type": "string"}, "distroversion": {"type": "string"}, "sdkversion": {"type": "string"}, "gccversion": {"type": "string"}, "hosttriplet": {"type": "string"}, "targettriplet": {"type": "string"}, "targetarchtriplet": {"type": "string"},...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Bio": {"type": "string"}, "Country": {"type": "string"}, "Director": {"type": "array", "items": {"type": "string"}}, "Genres": {"type": "array", "items": {"type": "string"}}, "Language": {"type": "array", "items": {...
{"Bio" : "A politically-minded enforcer's misguided trust in his lieutenant leads him to suspect his wife of infidelity in this adaptation of Shakespeare's 'Othello'.", "Country" : "India", "Director" : ["Vishal Bhardwaj"], "Genres" : [" Action", " Crime", " Drama", " Thriller"], "Language" : ["Hindi"], "Name" : "Omkar...
json_instruct
{"type": "object", "properties": {"Bio": {"type": "string"}, "Country": {"type": "string"}, "Director": {"type": "array", "items": {"type": "string"}}, "Genres": {"type": "array", "items": {"type": "string"}}, "Language": {"type": "array", "items": {"type": "string"}}, "Name": {"type": "string"}, "Poster URL": {"type":...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors"...
{"contract" : "0x2562cd7b3f502821efb5aca239d000369d87381d", "tool" : "honeybadger", "start" : 1565800593.2154286, "end" : 1565800651.6676881, "duration" : 58.45225954055786, "analysis" : [{"errors" : [], "file" : "/unique_chucks/31/0x2562cd7b3f502821efb5aca239d000369d87381d.sol", "name" : "MaiaToken"}, {"errors" : [], ...
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "strin...
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"}...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[124.875, 36.75], [124.875, 36.833333333333336], [125.0, 36.833333333333336], [125.0, 36.75], [124.875, 36.75]]]}, "properties" : {"code" : 552417, "url" : "http://madefor.github.io/0410/api/v1/552417.geojson", "view" : "https://github.com/madefor...
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": "ob...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"ajaxify.js": {"type": "string"}, "ajaxify.min.js": {"type": "string"}}, "required": ["ajaxify.js", "ajaxify.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ajaxify.js" : "sha256-iJW8Drz/q2SOSKVUd9EvhbeqWJcLC8fSzlG7/EB1jW8=", "ajaxify.min.js" : "sha256-2ew684rOKutdqE3asRQE5XRoFMq9OY/aoUN9z1RGJso="}
json_instruct
{"type": "object", "properties": {"ajaxify.js": {"type": "string"}, "ajaxify.min.js": {"type": "string"}}, "required": ["ajaxify.js", "ajaxify.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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"}, "ti...
{"body" : "trying to figure out how to compile all `*.cpp` from python:\r\n```\r\n==> '/Users/davydden/spack/lib/spack/env/cc' '-c' '-fPIC' '*.cpp'\r\nclang: error: no such file or directory: '*.cpp'\r\nclang: error: no input files\r\n```", "user" : "davydden", "url" : "https://api.github.com/repos/spack/spack/issues/5...
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": ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@flair/common", "dependencies" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "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"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "old_test": {"type": "string"}, "test": {"ty...
{"name" : "ApiServe1", "version" : "0.0.0", "private" : true, "scripts" : {"start" : "node ./api_server.js", "old_test" : "mocha", "test" : "SET NODE_ENV=test & nodemon --exec \"mocha --recursive -R min\""}, "keywords" : ["REST API", "mongodb", "IoT"], "author" : "Sathyanesh Krishnan", "license" : "Apache License", "de...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "old_test": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "old_test", "test"]}, "keywords": {"ty...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"location_history": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "title": {"type": "string"}}, "required": ["url", "title"]}}, "outline": {"type": "array", "items": {"type": "object...
{"location_history" : [{"url" : "/api", "title" : "Keras API reference"}, {"url" : "/api/layers", "title" : "Layers API"}, {"url" : "/api/layers/reshaping_layers", "title" : "Reshaping layers"}], "outline" : [{"title" : "RepeatVector layer", "url" : "#repeatvector-layer", "depth" : 1}, {"title" : "<code>RepeatVector</c...
json_instruct
{"type": "object", "properties": {"location_history": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "title": {"type": "string"}}, "required": ["url", "title"]}}, "outline": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type":...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {"type": "object", "properties": {"ULAN": {"type": "object", "properties": {"Name": {"type": "string"}, "UlanIdNo": {"type": "string"}}, ...
{"accession_number" : "1983.41", "actors" : [{"ULAN" : {"Name" : "Tworkov, Jack", "UlanIdNo" : "500009670"}, "after_follower" : null, "birth_date" : "1900", "collaboration" : null, "death_date" : "1982", "display_name" : "Tworkov, Jack", "first" : "Jack", "fullname" : "Jack Tworkov", "irn" : 609436, "last" : "Tworkov",...
json_instruct
{"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {"type": "object", "properties": {"ULAN": {"type": "object", "properties": {"Name": {"type": "string"}, "UlanIdNo": {"type": "string"}}, "required": ["Name", "UlanIdNo"]}, "after_follower": {"type": "null"}, "...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"pl_cbflag": {"type": "string"}, "pl_disc": {"type": "string"}, "pl_pelink": {"type": "string"}, "pl_imgflag": {"type": "string"}, "pl_facility": {"type": "string"}, "pl_astflag": {"type": "string"}, "hip_name": {"...
{"pl_cbflag" : "0", "pl_disc" : "2002", "pl_pelink" : "http://exoplanet.eu/catalog/hd_40979_b/", "pl_imgflag" : "0", "pl_facility" : "Multiple Observatories", "pl_astflag" : "0", "hip_name" : "HIP 28767", "pl_pnum" : "1", "st_optmag" : "6.735", "ra" : "91.124763", "pl_discmethod" : "Radial Velocity", "hd_name" : "HD 40...
json_instruct
{"type": "object", "properties": {"pl_cbflag": {"type": "string"}, "pl_disc": {"type": "string"}, "pl_pelink": {"type": "string"}, "pl_imgflag": {"type": "string"}, "pl_facility": {"type": "string"}, "pl_astflag": {"type": "string"}, "hip_name": {"type": "string"}, "pl_pnum": {"type": "string"}, "st_optmag": {"type": "...
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" : "DANIEL MARIAN", "frequency" : 121, "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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ...
{"id" : 3283, "children" : [{"id" : 23875, "name" : "California -- 1990 elections in"}, {"id" : 26784, "name" : "California -- and lawsuit against federal government for costs of undocumented felons"}, {"id" : 26779, "name" : "California -- anti-Chinese sentiment"}, {"id" : 3288, "name" : "California -- Appellate Proje...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$schema": "http://json-schema....
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"ty...
{"userId" : 43182, "cartId" : "c5a2532d-0cb2-498b-beb5-ac632b84da85", "preferredProducts" : [2615, 532, 886, 14, 854], "productReviews" : [{"productId" : 3006, "reviewText" : "The box this comes in is 4 yard by 5 inch and weights 12 pound!", "reviewDate" : "2016-08-18T08:07:36.6956603+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
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", "it...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-117.18003, 46.73166], [-117.175583, 46.735879], [-117.1728, 46.73977], [-117.16029, 46.73592], [-117.15917, 46.73494], [-117.15873, 46.73294], [-117.16002, 46.72952], [-117.1678, 46.72635], [-117.17374, 46.72948], [-117....
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": "numbe...
Construct a JSON document that adheres to this schema specification: {"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" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-89.9017, 32.00076], [-89.89945, 32.00886], [-89.899901, 32.011677], [-89.89698, 32.01507], [-89.895677, 32.02212], [-89.889752, 32.031661], [-89.88965, 32.03794], [-89.88817, 32.04121], [-89.881981, 32.047502], [-89.6620...
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": "numbe...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}, "package": {"type": "string"}}, "required": ["generated_at", "required_b...
{"generated_at" : "2017-01-27T09:37:25.673475", "required_by" : ["pytomo3d"], "requires" : [], "package" : "pyadjoint"}
json_instruct
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "pricket", "definition" : "A buck in his second year. See Note under 3d Buck. Shak."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"status_code": {"type": "integer"}, "data": {"type": "object", "properties": {"Subscriptions": {"type": "array", "items": {"type": "object", "properties": {"SubscriptionArn": {"type": "string"}, "Owner": {"type": "str...
{"status_code" : 200, "data" : {"Subscriptions" : [{"SubscriptionArn" : "arn:aws:sns:us-east-1:644160558196:test:78a0cf8e-b309-44f4-844c-9ebfcb3a9b19", "Owner" : "644160558196", "Protocol" : "sqs", "Endpoint" : "arn:aws:sqs:us-east-1:644160558196:test-queue", "TopicArn" : "arn:aws:sns:us-east-1:644160558196:test"}], "R...
json_instruct
{"type": "object", "properties": {"status_code": {"type": "integer"}, "data": {"type": "object", "properties": {"Subscriptions": {"type": "array", "items": {"type": "object", "properties": {"SubscriptionArn": {"type": "string"}, "Owner": {"type": "string"}, "Protocol": {"type": "string"}, "Endpoint": {"type": "string"}...
The schema below describes a JSON structure. Generate a valid example: {"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...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[145.5, 39.666666666666664], [145.5, 39.75], [145.625, 39.75], [145.625, 39.666666666666664], [145.5, 39.666666666666664]]]}, "properties" : {"code" : 594544, "url" : "http://madefor.github.io/0410/api/v1/594544.geojson", "view" : "https://github....
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": "ob...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "lint:fix": {"type": "string"}, "postinstall": {"type": "str...
{"name" : "lerna-mern", "version" : "1.0.0", "description" : "MERN App in monorepository using Lerna", "scripts" : {"lint" : "eslint --ignore-path .gitignore .", "lint:fix" : "eslint --fix --ignore-path .gitignore .", "postinstall" : "lerna bootstrap", "purge" : "npm run clear:test && npm run clear:locks && npm run cle...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "lint:fix": {"type": "string"}, "postinstall": {"type": "string"}, "purge": {"type": "string"}, "compose:tools": {"type...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "...
{"nom" : "Eu", "circ" : "6\u00e8me circonscription", "dpt" : "Seine-Maritime", "inscrits" : 5732, "abs" : 3109, "votants" : 2623, "blancs" : 145, "nuls" : 68, "exp" : 2410, "res" : [{"nuance" : "COM", "nom" : "M. S\u00e9bastien JUMEL", "voix" : 1211}, {"nuance" : "REM", "nom" : "M. Philippe DUFOUR", "voix" : 1199}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array"...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "humanize", "definition" : "1. To render human or humane; to soften; to make gentle by overcoming cruel dispositions and rude habits; to refine or civilize. Was it the business of magic to humanize our natures with compassion Addison. 2. To give a human character or expression to. \"Humanized divinities.\" Ca...
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string...
{"name" : "spb-test-2", "description" : "\ud83d\udc4c", "version" : "1.0.0", "author" : "al4str", "license" : "MIT", "repository" : {"type" : "git", "url" : "git@github.com:al4str/spb-test-2.git"}, "scripts" : {}, "devDependencies" : {"autoprefixer" : "^9.1.5", "cssnano" : "^4.1.0", "express" : "^4.16.3", "parcel-bundl...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "n...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[150.875, 30.166666666666668], [150.875, 30.25], [151.0, 30.25], [151.0, 30.166666666666668], [150.875, 30.166666666666668]]]}, "properties" : {"code" : 455027, "url" : "http://madefor.github.io/0410/api/v1/455027.geojson", "view" : "https://githu...
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": "ob...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"normal": {"type": "object", "properties": {"120000000": {"type": "integer"}, "180000000": {"type": "integer"}, "225000000": {"type": "integer"}, "240000000": {"type": "integer"}, "300000000": {"type": "integer"...
{"normal" : {"120000000" : 48, "180000000" : 52, "225000000" : 56, "240000000" : 60, "300000000" : 64, "500000000" : 70, "750000000" : 84, "1000000000" : 108}, "hard" : {"120000000" : 48, "180000000" : 52, "225000000" : 56, "240000000" : 60, "300000000" : 64, "500000000" : 70, "750000000" : 84, "1000000000" : 108}, "le...
json_instruct
{"type": "object", "properties": {"normal": {"type": "object", "properties": {"120000000": {"type": "integer"}, "180000000": {"type": "integer"}, "225000000": {"type": "integer"}, "240000000": {"type": "integer"}, "300000000": {"type": "integer"}, "500000000": {"type": "integer"}, "750000000": {"type": "integer"}, "100...