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", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "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"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "lodash.template": {"type": "string"}, "plugin-error": {"type": "string"}, "through2": {"type": "string"}}, "required": ["gulp", "lodash.template", "plugin-error", "through2"]}}, "required": ["name", "version", "description", "keywords", "main", "scripts", "author", "repository", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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 examples && gulp"}, "author" : {"name" : "codemonauts UG (haftungsbeschr\u00e4nkt)", "email" : "crew@codemonauts.com", "url" : "https://github.com/codemonauts"}, "repository" : {"type" : "git", "url" : "git://github.com/codemonauts/gulp-docker-notify.git"}, "license" : "MIT", "dependencies" : {"gulp" : "^4.0.2", "lodash.template" : "^4.5.0", "plugin-error" : "^1.0.1", "through2" : "^4.0.2"}}
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": {"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"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "lodash.template": {"type": "string"}, "plugin-error": {"type": "string"}, "through2": {"type": "string"}}, "required": ["gulp", "lodash.template", "plugin-error", "through2"]}}, "required": ["name", "version", "description", "keywords", "main", "scripts", "author", "repository", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"type": "string"}, "wayto": {"type": "object", "properties": {"26541": {"type": "string"}, "28569": {"type": "string"}}, "required": ["26541", "28569"]}, "timeto": {"type": "object", "properties": {"26541": {"type": "number"}, "28569": {"type": "number"}}, "required": ["26541", "28569"]}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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 glittering crystal beads.", "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, its polished surface ornamented with a spiraling string of glittering crystal beads."], "paths" : ["Obvious exits: out"], "location" : "Caligos Isle", "wayto" : {"26541" : "out", "28569" : "go crushed curtain"}, "timeto" : {"26541" : 0.2, "28569" : 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": {"26541": {"type": "string"}, "28569": {"type": "string"}}, "required": ["26541", "28569"]}, "timeto": {"type": "object", "properties": {"26541": {"type": "number"}, "28569": {"type": "number"}}, "required": ["26541", "28569"]}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "request"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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-schema.org/draft-07/schema#"}
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": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/symfony": {"type": "string"}, "symfony/assetic-bundle": {"type": "string"}, "cocur/slugify": {"type": "string"}, "symfony/monolog-bundle": {"type": "string"}, "symfony/monolog-bridge": {"type": "string"}, "tedivm/stash-bundle": {"type": "string"}}, "required": ["php", "symfony/symfony", "symfony/assetic-bundle", "cocur/slugify", "symfony/monolog-bundle", "symfony/monolog-bridge", "tedivm/stash-bundle"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}, "ongr/ongr-strict-standard": {"type": "string"}}, "required": ["phpunit/phpunit", "squizlabs/php_codesniffer", "ongr/ongr-strict-standard"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ONGR\\CookiesBundle\\": {"type": "string"}}, "required": ["ONGR\\CookiesBundle\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "type", "homepage", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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.com"}], "require" : {"php" : ">=5.4", "symfony/symfony" : "~2.3", "symfony/assetic-bundle" : "~2.3", "cocur/slugify" : "0.2.2", "symfony/monolog-bundle" : "~2.4", "symfony/monolog-bridge" : "~2.4", "tedivm/stash-bundle" : "0.4.*"}, "require-dev" : {"phpunit/phpunit" : "~4.1", "squizlabs/php_codesniffer" : "~1.5", "ongr/ongr-strict-standard" : "~1.0.0-beta"}, "autoload" : {"psr-4" : {"ONGR\\CookiesBundle\\" : ""}}}
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": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/symfony": {"type": "string"}, "symfony/assetic-bundle": {"type": "string"}, "cocur/slugify": {"type": "string"}, "symfony/monolog-bundle": {"type": "string"}, "symfony/monolog-bridge": {"type": "string"}, "tedivm/stash-bundle": {"type": "string"}}, "required": ["php", "symfony/symfony", "symfony/assetic-bundle", "cocur/slugify", "symfony/monolog-bundle", "symfony/monolog-bridge", "tedivm/stash-bundle"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}, "ongr/ongr-strict-standard": {"type": "string"}}, "required": ["phpunit/phpunit", "squizlabs/php_codesniffer", "ongr/ongr-strict-standard"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ONGR\\CookiesBundle\\": {"type": "string"}}, "required": ["ONGR\\CookiesBundle\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "type", "homepage", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"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": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}, "licenseInfo": {"type": "string"}}, "required": ["label", "description", "author", "icon", "tags", "url", "licenseInfo"]}}, "required": ["id", "version", "meta"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : "Apache Software License"}}
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": {"type": "string"}, "licenseInfo": {"type": "string"}}, "required": ["label", "description", "author", "icon", "tags", "url", "licenseInfo"]}}, "required": ["id", "version", "meta"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 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!\r\n Internal networking on request\r\n 24/7 staffed support, 1-2 hours ticket response time\r\n Free weekly on-site backups\r\n Redundant power and networking\r\n Automatic IPv4 and IPv6 rDNS from SolusVM\r\n Extra IP's are \u00a37.53 a year\r\n\r\n\r\nPlease [Read TOS before ordering](https://golden-hosts.com/billing//knowledgebase.php?action=displayarticle&id=1)\r\n\r\n\r\n3GB DDR3 RAM\r\n100GB SSD Disk Space\r\n2 CPU Cores\r\n1TB Bandwidth at 1Gbps\r\n1 IPv4, 5 IPv6 Addresses\r\n600Gbps DDoS Protected\r\nLocation Uk\r\n\r\n\u00a39.05/year\r\n\r\n[Order now](https://golden-hosts.com/billing//cart.php?a=confproduct&i=0)\r\n\r\n\r\n"}
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"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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.46995, 51.01464], [-2.4677, 51.02127], [-2.47316, 51.02409], [-2.48427, 51.02003], [-2.48883, 51.01966], [-2.49551, 51.02641], [-2.51025, 51.02311], [-2.51683, 51.01728], [-2.52577, 51.01744], [-2.53043, 51.01353], [-2.53889, 51.00933], [-2.54117, 51.00665], [-2.53614, 51.00091], [-2.55033, 50.99607], [-2.55046, 50.98801], [-2.55387, 50.98155], [-2.55232, 50.97857], [-2.56228, 50.97497], [-2.56512, 50.98156], [-2.56967, 50.98099], [-2.57548, 50.98607], [-2.57938, 50.98626], [-2.58542, 50.98192], [-2.59519, 50.98194], [-2.59836, 50.97664], [-2.59465, 50.96894], [-2.59627, 50.96266], [-2.59201, 50.95871], [-2.59742, 50.94952], [-2.59517, 50.93964], [-2.59689, 50.93756], [-2.60829, 50.93338], [-2.60922, 50.931], [-2.60414, 50.92689], [-2.5991, 50.92569], [-2.59433, 50.91673], [-2.60066, 50.9128], [-2.60416, 50.90808], [-2.60787, 50.90748], [-2.61572, 50.89975], [-2.61408, 50.89562], [-2.60827, 50.88925], [-2.59924, 50.88817], [-2.59312, 50.87982], [-2.58438, 50.87635], [-2.58369, 50.87341], [-2.57584, 50.86257], [-2.56225, 50.8586], [-2.56194, 50.85588], [-2.54653, 50.85022], [-2.53607, 50.85162], [-2.5337, 50.85672], [-2.52944, 50.85884], [-2.51786, 50.85943], [-2.51198, 50.86162], [-2.50654, 50.87135], [-2.48686, 50.86749], [-2.48531, 50.86075], [-2.47316, 50.85285], [-2.46566, 50.85539], [-2.453, 50.85605], [-2.45026, 50.86546], [-2.4444, 50.86828], [-2.43442, 50.86956], [-2.43075, 50.87589], [-2.42993, 50.88288], [-2.41722, 50.8854], [-2.41295, 50.88869], [-2.40648, 50.88903], [-2.4041, 50.89467], [-2.39761, 50.89992], [-2.41176, 50.90053], [-2.4159, 50.90687], [-2.41097, 50.91213], [-2.41018, 50.91705], [-2.42078, 50.92219], [-2.42335, 50.93242], [-2.43329, 50.93435], [-2.43712, 50.93768], [-2.4384, 50.94629], [-2.42141, 50.95041], [-2.42681, 50.95735], [-2.42611, 50.96653]]]}, "properties" : {"name" : "DT9"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"type": "integer"}, "138": {"type": "integer"}, "140": {"type": "integer"}, "141": {"type": "integer"}, "147": {"type": "integer"}, "149": {"type": "integer"}, "15": {"type": "integer"}, "151": {"type": "integer"}, "152": {"type": "integer"}, "164": {"type": "integer"}, "177": {"type": "integer"}, "18": {"type": "integer"}, "19": {"type": "integer"}, "20": {"type": "integer"}, "25": {"type": "integer"}, "27": {"type": "integer"}, "29": {"type": "integer"}, "3": {"type": "integer"}, "33": {"type": "integer"}, "35": {"type": "integer"}, "42": {"type": "integer"}, "45": {"type": "integer"}, "46": {"type": "integer"}, "48": {"type": "integer"}, "52": {"type": "integer"}, "56": {"type": "integer"}, "63": {"type": "integer"}, "68": {"type": "integer"}, "69": {"type": "integer"}, "75": {"type": "integer"}, "78": {"type": "integer"}, "79": {"type": "integer"}, "83": {"type": "integer"}, "87": {"type": "integer"}, "89": {"type": "integer"}, "94": {"type": "integer"}, "99": {"type": "integer"}}, "required": ["106", "107", "108", "111", "113", "12", "124", "13", "137", "138", "140", "141", "147", "149", "15", "151", "152", "164", "177", "18", "19", "20", "25", "27", "29", "3", "33", "35", "42", "45", "46", "48", "52", "56", "63", "68", "69", "75", "78", "79", "83", "87", "89", "94", "99"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : 102480, "20" : 93821, "25" : 40870, "27" : 344113, "29" : 369792, "3" : 47896, "33" : 155461, "35" : 199303, "42" : 77613, "45" : 6143, "46" : 10440, "48" : 249797, "52" : 52936, "56" : 2862, "63" : 234586, "68" : 172964, "69" : 24870, "75" : 59778, "78" : 356638, "79" : 210483, "83" : 129282, "87" : 2285, "89" : 22682, "94" : 27941, "99" : 248528}
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": {"type": "integer"}, "141": {"type": "integer"}, "147": {"type": "integer"}, "149": {"type": "integer"}, "15": {"type": "integer"}, "151": {"type": "integer"}, "152": {"type": "integer"}, "164": {"type": "integer"}, "177": {"type": "integer"}, "18": {"type": "integer"}, "19": {"type": "integer"}, "20": {"type": "integer"}, "25": {"type": "integer"}, "27": {"type": "integer"}, "29": {"type": "integer"}, "3": {"type": "integer"}, "33": {"type": "integer"}, "35": {"type": "integer"}, "42": {"type": "integer"}, "45": {"type": "integer"}, "46": {"type": "integer"}, "48": {"type": "integer"}, "52": {"type": "integer"}, "56": {"type": "integer"}, "63": {"type": "integer"}, "68": {"type": "integer"}, "69": {"type": "integer"}, "75": {"type": "integer"}, "78": {"type": "integer"}, "79": {"type": "integer"}, "83": {"type": "integer"}, "87": {"type": "integer"}, "89": {"type": "integer"}, "94": {"type": "integer"}, "99": {"type": "integer"}}, "required": ["106", "107", "108", "111", "113", "12", "124", "13", "137", "138", "140", "141", "147", "149", "15", "151", "152", "164", "177", "18", "19", "20", "25", "27", "29", "3", "33", "35", "42", "45", "46", "48", "52", "56", "63", "68", "69", "75", "78", "79", "83", "87", "89", "94", "99"], "$schema": "http://json-schema.org/draft-07/schema#"}
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\u4f1a", "220", "0"], ["130523102206", "\u4faf\u6587\u5b5d\u6751\u59d4\u4f1a", "220", "0"], ["130523102207", "\u897f\u6587\u5b5d\u6751\u59d4\u4f1a", "220", "0"], ["130523102208", "\u6b66\u6587\u5b5d\u6751\u59d4\u4f1a", "220", "0"], ["130523102209", "\u4e1c\u6587\u5b5d\u6751\u59d4\u4f1a", "220", "0"], ["130523102210", "\u6ee9\u91cc\u6751\u59d4\u4f1a", "220", "0"], ["130523102211", "\u5e38\u4e30\u6751\u59d4\u4f1a", "220", "0"], ["130523102212", "\u5927\u5792\u4e1c\u6751\u59d4\u4f1a", "220", "0"], ["130523102213", "\u5c0f\u5792\u4e1c\u6751\u59d4\u4f1a", "220", "0"], ["130523102214", "\u524d\u590f\u4faf\u6751\u59d4\u4f1a", "220", "0"], ["130523102215", "\u540e\u590f\u4faf\u6751\u59d4\u4f1a", "220", "0"], ["130523102216", "\u5c0f\u8f9b\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130523102217", "\u5927\u8f9b\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130523102218", "\u4e2d\u8f9b\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130523102219", "\u540e\u6cb3\u6751\u59d4\u4f1a", "220", "0"], ["130523102220", "\u738b\u5bb6\u5c6f\u6751\u59d4\u4f1a", "220", "0"], ["130523102221", "\u5f20\u5bb6\u5c6f\u6751\u59d4\u4f1a", "220", "0"], ["130523102222", "\u6753\u5b50\u5c6f\u6751\u59d4\u4f1a", "220", "0"], ["130523102223", "\u9b4f\u5bb6\u5c6f\u6751\u59d4\u4f1a", "220", "0"], ["130523102224", "\u94c1\u5320\u5c6f\u6751\u59d4\u4f1a", "220", "0"], ["130523102225", "\u9ec4\u91dc\u6751\u59d4\u4f1a", "220", "0"], ["130523102226", "\u97e9\u90dd\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130523102227", "\u51a2\u572a\u5854\u6751\u59d4\u4f1a", "220", "0"], ["130523102228", "\u5317\u5f20\u9ebb\u6751\u59d4\u4f1a", "220", "0"], ["130523102229", "\u4e1c\u5f20\u9ebb\u6751\u59d4\u4f1a", "220", "0"], ["130523102230", "\u897f\u5f20\u9ebb\u6751\u59d4\u4f1a", "220", "0"], ["130523102231", "\u5927\u539f\u6751\u59d4\u4f1a", "220", "0"], ["130523102232", "\u5927\u7559\u6751\u6751\u59d4\u4f1a", "122", "0"], ["130523102233", "\u897f\u5317\u5149\u6751\u59d4\u4f1a", "220", "0"], ["130523102234", "\u5357\u5317\u5149\u6751\u59d4\u4f1a", "220", "0"], ["130523102235", "\u4e1c\u5317\u5149\u6751\u59d4\u4f1a", "220", "0"], ["130523102236", "\u4e2d\u5317\u5149\u6751\u59d4\u4f1a", "220", "0"], ["130523102237", "\u6cb3\u5de8\u6751\u59d4\u4f1a", "220", "0"], ["130523102238", "\u6cb3\u6e20\u94fa\u6751\u59d4\u4f1a", "220", "0"], ["130523102239", "\u793c\u4e49\u6751\u59d4\u4f1a", "220", "0"], ["130523102240", "\u5341\u91cc\u94fa\u6751\u59d4\u4f1a", "220", "0"], ["130523102241", "\u5317\u8f9b\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["130523102242", "\u6e05\u4fee\u6751\u59d4\u4f1a", "220", "0"], ["130523102243", "\u9ad8\u671b\u6751\u59d4\u4f1a", "220", "0"], ["130523102244", "\u897f\u5f20\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130523102245", "\u4e2d\u5f20\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130523102246", "\u4e1c\u5f20\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130523102247", "\u91d1\u5e97\u5357\u5173\u6751\u59d4\u4f1a", "122", "0"]]
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", "items": {"type": "object", "properties": {"style": {"type": "string"}, "widgets": {"type": "array", "items": {"type": "object", "properties": {"config": {"type": "object", "properties": {"actionButtons": {"type": "array", "items": {}}, "checkboxStatus": {"type": "boolean"}, "columns": {"type": "array", "items": {"type": "string"}}, "expandableCol": {"type": "array", "items": {}}, "module": {"type": "string"}, "query": {"type": "object", "properties": {"sort": {"type": "array", "items": {}}, "limit": {"type": "integer"}, "logic": {"type": "string"}, "filters": {"type": "array", "items": {}}}, "required": ["sort", "limit", "logic", "filters"]}, "relationshipField": {"type": "array", "items": {}}, "wid": {"type": "string"}}, "required": ["actionButtons", "checkboxStatus", "columns", "expandableCol", "module", "query", "relationshipField", "wid"]}, "type": {"type": "string"}}, "required": ["config", "type"]}}}, "required": ["style", "widgets"]}}, "wid": {"type": "string"}, "_collapsed": {"type": "boolean"}}, "required": ["columns", "wid", "_collapsed"]}}, "wid": {"type": "string"}}, "required": ["rows", "wid"]}, "uuid": {"type": "string"}}, "required": ["@context", "@type", "type", "config", "uuid"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@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", "tenant"], "expandableCol" : [], "module" : "tasks", "query" : {"sort" : [], "limit" : 30, "logic" : "AND", "filters" : []}, "relationshipField" : [], "wid" : "627228b7-0399-4570-a6e1-a410b9cdd07e"}, "type" : "grid"}]}], "wid" : "4d8cc005-9b69-4d2b-a22a-8f3232435e8d", "_collapsed" : false}], "wid" : "b772abe4-0180-45cf-9966-c23c7bd9e82c"}, "uuid" : "modules-tasks-list"}
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": {"type": "string"}, "widgets": {"type": "array", "items": {"type": "object", "properties": {"config": {"type": "object", "properties": {"actionButtons": {"type": "array", "items": {}}, "checkboxStatus": {"type": "boolean"}, "columns": {"type": "array", "items": {"type": "string"}}, "expandableCol": {"type": "array", "items": {}}, "module": {"type": "string"}, "query": {"type": "object", "properties": {"sort": {"type": "array", "items": {}}, "limit": {"type": "integer"}, "logic": {"type": "string"}, "filters": {"type": "array", "items": {}}}, "required": ["sort", "limit", "logic", "filters"]}, "relationshipField": {"type": "array", "items": {}}, "wid": {"type": "string"}}, "required": ["actionButtons", "checkboxStatus", "columns", "expandableCol", "module", "query", "relationshipField", "wid"]}, "type": {"type": "string"}}, "required": ["config", "type"]}}}, "required": ["style", "widgets"]}}, "wid": {"type": "string"}, "_collapsed": {"type": "boolean"}}, "required": ["columns", "wid", "_collapsed"]}}, "wid": {"type": "string"}}, "required": ["rows", "wid"]}, "uuid": {"type": "string"}}, "required": ["@context", "@type", "type", "config", "uuid"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "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": {}, "required": []}, "component": {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"raf/index.js": {"type": "string"}}, "required": ["raf/index.js"]}}, "required": ["scripts"]}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "_from": {"type": "string"}, "_resolved": {"type": "string"}}, "required": ["name", "description", "version", "keywords", "dependencies", "component", "main", "repository", "_from", "_resolved"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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/component/raf.git"}, "_from" : "component-raf@1.2.0", "_resolved" : "http://registry.npm.alibaba-inc.com/component-raf/download/component-raf-1.2.0.tgz"}
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": {"type": "object", "properties": {"raf/index.js": {"type": "string"}}, "required": ["raf/index.js"]}}, "required": ["scripts"]}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "_from": {"type": "string"}, "_resolved": {"type": "string"}}, "required": ["name", "description", "version", "keywords", "dependencies", "component", "main", "repository", "_from", "_resolved"], "$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"}, "license": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"getkirby/composer-installer": {"type": "string"}}, "required": ["getkirby/composer-installer"]}}, "required": ["name", "description", "license", "type", "version", "homepage", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"getkirby/composer-installer": {"type": "string"}}, "required": ["getkirby/composer-installer"]}}, "required": ["name", "description", "license", "type", "version", "homepage", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "items": {"type": "string"}}, "component---src-pages-404-it-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-404-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-about-it-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-about-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-blog-it-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-blog-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-contact-it-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-contact-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-index-it-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-index-js": {"type": "array", "items": {"type": "string"}}}, "required": ["app", "component---node-modules-gatsby-plugin-offline-app-shell-js", "component---src-templates-post-js", "component---src-pages-404-it-js", "component---src-pages-404-js", "component---src-pages-about-it-js", "component---src-pages-about-js", "component---src-pages-blog-it-js", "component---src-pages-blog-js", "component---src-pages-contact-it-js", "component---src-pages-contact-js", "component---src-pages-index-it-js", "component---src-pages-index-js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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-pages-404-it-js" : ["/component---src-pages-404-it-js-37dc9022a314303a54f8.js"], "component---src-pages-404-js" : ["/component---src-pages-404-js-05ca8ac79af20e19bd02.js"], "component---src-pages-about-it-js" : ["/component---src-pages-about-it-js-f723e20ac013054df1a3.js"], "component---src-pages-about-js" : ["/component---src-pages-about-js-cd60999db6beea05eb94.js"], "component---src-pages-blog-it-js" : ["/component---src-pages-blog-it-js-2880af9387c21739cb83.js"], "component---src-pages-blog-js" : ["/component---src-pages-blog-js-f79599a01f1e7bf1f78b.js"], "component---src-pages-contact-it-js" : ["/component---src-pages-contact-it-js-8dba7126b53f171d62fe.js"], "component---src-pages-contact-js" : ["/component---src-pages-contact-js-86f7e11c548d06b6fe5d.js"], "component---src-pages-index-it-js" : ["/component---src-pages-index-it-js-35b7e3e8960e6b54477a.js"], "component---src-pages-index-js" : ["/component---src-pages-index-js-075eca79b6e40c21e9b6.js"]}
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": {"type": "array", "items": {"type": "string"}}, "component---src-pages-404-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-about-it-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-about-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-blog-it-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-blog-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-contact-it-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-contact-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-index-it-js": {"type": "array", "items": {"type": "string"}}, "component---src-pages-index-js": {"type": "array", "items": {"type": "string"}}}, "required": ["app", "component---node-modules-gatsby-plugin-offline-app-shell-js", "component---src-templates-post-js", "component---src-pages-404-it-js", "component---src-pages-404-js", "component---src-pages-about-it-js", "component---src-pages-about-js", "component---src-pages-blog-it-js", "component---src-pages-blog-js", "component---src-pages-contact-it-js", "component---src-pages-contact-js", "component---src-pages-index-it-js", "component---src-pages-index-js"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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. Unterschieden wird einerseits nach\nMassen- und Qualit\u00e4tsst\u00e4hlen und andererseits nach\nEdelst\u00e4hlen. In beiden Gruppen gibt es unlegierte und\nlegierte Stahlsorten. Im Stahlwerk wird Rohstahl zu\nRohbl\u00f6cken oder \u00fcber die Stranggussanlage verarbeitet, in\nStahlgie\u00dfereien \u00fcber Formen zum Gussteil.\n\n\u00a9 Statistisches Bundesamt, Wiesbaden 2003", "name" : "Erzeugung von Rohstahl", "type" : "Merkmal"}
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": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "slim/slim": {"type": "string"}, "aura/sql": {"type": "string"}, "guzzle/guzzle": {"type": "string"}, "symfony/yaml": {"type": "string"}, "twig/twig": {"type": "string"}, "zendframework/zend-feed": {"type": "string"}, "zendframework/zend-servicemanager": {"type": "string"}, "ezyang/htmlpurifier": {"type": "string"}, "hampel/json": {"type": "string"}, "ircmaxell/password-compat": {"type": "string"}}, "required": ["php", "slim/slim", "aura/sql", "guzzle/guzzle", "symfony/yaml", "twig/twig", "zendframework/zend-feed", "zendframework/zend-servicemanager", "ezyang/htmlpurifier", "hampel/json", "ircmaxell/password-compat"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"": {"type": "string"}}, "required": [""]}}, "required": ["psr-0"]}, "config": {"type": "object", "properties": {"bin-dir": {"type": "string"}}, "required": ["bin-dir"]}}, "required": ["name", "description", "keywords", "homepage", "license", "authors", "require", "require-dev", "autoload", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"}], "require" : {"php" : ">=5.4.0", "slim/slim" : "2.*", "aura/sql" : "1.*", "guzzle/guzzle" : "3.7.*", "symfony/yaml" : "2.3.*", "twig/twig" : "1.15.*", "zendframework/zend-feed" : "2.2.*", "zendframework/zend-servicemanager" : "2.2.*", "ezyang/htmlpurifier" : ">=4.5.0", "hampel/json" : "dev-master", "ircmaxell/password-compat" : "1.*"}, "require-dev" : {"phpunit/phpunit" : "3.7.*"}, "autoload" : {"psr-0" : {"" : "src/"}}, "config" : {"bin-dir" : "bin"}}
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"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "slim/slim": {"type": "string"}, "aura/sql": {"type": "string"}, "guzzle/guzzle": {"type": "string"}, "symfony/yaml": {"type": "string"}, "twig/twig": {"type": "string"}, "zendframework/zend-feed": {"type": "string"}, "zendframework/zend-servicemanager": {"type": "string"}, "ezyang/htmlpurifier": {"type": "string"}, "hampel/json": {"type": "string"}, "ircmaxell/password-compat": {"type": "string"}}, "required": ["php", "slim/slim", "aura/sql", "guzzle/guzzle", "symfony/yaml", "twig/twig", "zendframework/zend-feed", "zendframework/zend-servicemanager", "ezyang/htmlpurifier", "hampel/json", "ircmaxell/password-compat"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"": {"type": "string"}}, "required": [""]}}, "required": ["psr-0"]}, "config": {"type": "object", "properties": {"bin-dir": {"type": "string"}}, "required": ["bin-dir"]}}, "required": ["name", "description", "keywords", "homepage", "license", "authors", "require", "require-dev", "autoload", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"]}}}, "required": ["layers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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", "activation" : "relu"}, {"num_neurons" : 1, "init" : "uniform", "activation" : "sigmoid"}]}
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/draft-07/schema#"}
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/schema#"}
{"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", "resemblance", "problem_id", "solution_spec_hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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://json-schema.org/draft-07/schema#"}
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": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}}}, "required": ["author", "version", "category", "title", "blocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"]}}}, "required": ["author", "version", "category", "title", "blocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"year" : 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", "n" : 9, "prop" : 4.43e-06}, {"year" : 1992, "sex" : "F", "n" : 8, "prop" : 3.99e-06}, {"year" : 1994, "sex" : "F", "n" : 7, "prop" : 3.59e-06}, {"year" : 1995, "sex" : "F", "n" : 12, "prop" : 6.25e-06}, {"year" : 1997, "sex" : "F", "n" : 11, "prop" : 5.76e-06}, {"year" : 1998, "sex" : "F", "n" : 8, "prop" : 4.13e-06}, {"year" : 1999, "sex" : "F", "n" : 12, "prop" : 6.17e-06}, {"year" : 2000, "sex" : "F", "n" : 8, "prop" : 4.01e-06}, {"year" : 2001, "sex" : "F", "n" : 10, "prop" : 5.05e-06}, {"year" : 2002, "sex" : "F", "n" : 14, "prop" : 7.09e-06}, {"year" : 2003, "sex" : "F", "n" : 7, "prop" : 3.49e-06}, {"year" : 2004, "sex" : "F", "n" : 9, "prop" : 4.46e-06}, {"year" : 2007, "sex" : "F", "n" : 5, "prop" : 2.36e-06}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
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": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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-Roos Community Facilities Act of 1982 (Chapter 2.5, commencing with Section 53311 of Part 1, Division 2, Title 5 of the California Government Code), as amended from time to time, \n\u00a0 \u00a0 \u00a0(b)\u00a0 \u00a0 \u00a0\"Board of Supervisors\" means the Board of Supervisors of the City and County of San Francisco.\n\u00a0 \u00a0 \u00a0(c)\u00a0 \u00a0 \u00a0\"City\" means the City and County of San Francisco.\n\u00a0 \u00a0 \u00a0(d)\u00a0 \u00a0 \u00a0\"Services\" means, in addition to the \"Services\" defined in Section 53317 of the Act, operation and maintenance of any improvements that may be financed under this Article or the Act, and any related studies, testing or monitoring. \n(Ord. 216-09, File No. 090938, App. 10/29/2009)\n\nTITLE 2 - - PROVISIONS RELATING TO FORMATION OF DISTRICTS\n\n", "heading" : {"title" : "43", "chaptersection" : "10.12", "identifier" : "43.10.12", "catch_text" : "DEFINITIONS."}}
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"]}}, "required": ["text", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}}}}}, "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" : [[[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", "view" : "https://github.com/madefor/0410/blob/gh-pages/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": "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#"}
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", "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" : [[[[-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.957507513000046], [-96.89795340299996, 32.95729426700006], [-96.89701563799996, 32.95748202500004], [-96.89699355799995, 32.95598331000007], [-96.89800206999995, 32.95591375700007], [-96.8980235499999, 32.95460062400007], [-96.90151087099994, 32.954559587000055], [-96.90149722599992, 32.95515899400004], [-96.90219657899993, 32.95511916900005], [-96.90221825699993, 32.95598627200007], [-96.90305567399996, 32.95600376000004], [-96.90307142699996, 32.95572635700005], [-96.90414036299993, 32.955748228000054], [-96.90512522599991, 32.95575103400005], [-96.90511119699991, 32.95533576400003], [-96.90665162299993, 32.95541432900006]]]], "properties" : {"id" : "usa-tx-carrollton-carrollton-heights-neighborhood", "type" : "neighborhood", "name" : "Carrollton Heights", "code" : "761517"}}
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#"}
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": "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" : [[[-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.72476], [-112.135349, 33.724137], [-112.135044, 33.723114], [-112.136112, 33.721585], [-112.135169, 33.720467], [-112.135587, 33.716554], [-112.134948, 33.712812], [-112.165424, 33.712544], [-112.16544, 33.715574]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 2023}}]}
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#"}
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"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "editAble": {"type": "boolean"}}, "required": ["id", "name", "url", "created_at", "updated_at", "editAble"]}}, "required": ["comment", "status", "message", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"}, "editAble": {"type": "boolean"}}, "required": ["id", "name", "url", "created_at", "updated_at", "editAble"]}}, "required": ["comment", "status", "message", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"type": "string"}, "state": {"type": "string"}}, "required": ["feedId", "id", "title", "updated", "velocity", "subscribers", "website", "language", "state"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"}}, "required": ["feedId", "id", "title", "updated", "velocity", "subscribers", "website", "language", "state"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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 stuffing.", "Rinse turkey, and pat dry. Loosely fill the body and neck cavities with the stuffing mixture.", "Place turkey in a large roasting pan and cook 3 to 3 1/2 hours in the preheated oven, or until the internal temperature of the thigh meat is 180 degrees F (80 degrees C) and the stuffing is at least 165 degrees F (75 degrees C)."], "ingredients" : ["1 (12 ounce) package dry bread stuffing mix", "5 cups water", "1 large onion, chopped", "4 celery, chopped", "4 tablespoons dried sage", "12 pounds whole turkey, neck and giblets removed"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Turkey and Stuffing", "url" : "http://allrecipes.com/recipe/21431/turkey-and-stuffing/"}
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 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": {"type": "string"}}, "required": ["kind"]}}}, "required": ["kind", "name", "members"]}}}, "required": ["declares"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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", "members"]}}}, "required": ["declares"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "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", "ValentinesDayEpisodes", "LoveTropes", "WaterGunsAndBalloons", "SwappedRoles", "RuleOfCute", "FestivalEpisode", "MakesJustAsMuchSenseInContext"]}
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": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "issuer_name", "name_value", "min_cert_id", "min_entry_timestamp", "not_before", "not_after"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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", "issuer_name", "name_value", "min_cert_id", "min_entry_timestamp", "not_before", "not_after"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "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"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "start", "build"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-plugin-external-helpers": {"type": "string"}, "babel-preset-env": {"type": "string"}, "babel-preset-stage-2": {"type": "string"}, "babel-preset-stage-3": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-babel": {"type": "string"}, "rollup-plugin-uglify": {"type": "string"}}, "required": ["babel-core", "babel-plugin-external-helpers", "babel-preset-env", "babel-preset-stage-2", "babel-preset-stage-3", "rollup", "rollup-plugin-babel", "rollup-plugin-uglify"]}}, "required": ["name", "version", "description", "main", "repository", "keywords", "author", "license", "bugs", "homepage", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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", "bugs" : {"url" : "https://github.com/wwilsman/Datepicker.js/issues"}, "homepage" : "https://wwilsman.github.io/Datepicker.js", "scripts" : {"test" : "phantomjs tests/run-jasmine.js tests/index.html", "start" : "rollup --config --watch", "build" : "rollup --config"}, "devDependencies" : {"babel-core" : "^6.26.0", "babel-plugin-external-helpers" : "^6.22.0", "babel-preset-env" : "^1.6.1", "babel-preset-stage-2" : "^6.24.1", "babel-preset-stage-3" : "^6.24.1", "rollup" : "^0.56.2", "rollup-plugin-babel" : "^3.0.3", "rollup-plugin-uglify" : "^3.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "start", "build"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-plugin-external-helpers": {"type": "string"}, "babel-preset-env": {"type": "string"}, "babel-preset-stage-2": {"type": "string"}, "babel-preset-stage-3": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-babel": {"type": "string"}, "rollup-plugin-uglify": {"type": "string"}}, "required": ["babel-core", "babel-plugin-external-helpers", "babel-preset-env", "babel-preset-stage-2", "babel-preset-stage-3", "rollup", "rollup-plugin-babel", "rollup-plugin-uglify"]}}, "required": ["name", "version", "description", "main", "repository", "keywords", "author", "license", "bugs", "homepage", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "string"}}, "required": ["id", "id_kecamatan", "name"]}}}, "required": ["code", "messages", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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_kecamatan" : "630504", "name" : "Rantau Kiwa"}, {"id" : "6305042005", "id_kecamatan" : "630504", "name" : "Keramat"}, {"id" : "6305042006", "id_kecamatan" : "630504", "name" : "Antasari"}, {"id" : "6305042007", "id_kecamatan" : "630504", "name" : "Jingah Babaris"}, {"id" : "6305042008", "id_kecamatan" : "630504", "name" : "Banua Hanyar"}, {"id" : "6305042009", "id_kecamatan" : "630504", "name" : "Banua Halat Kiri"}, {"id" : "6305042010", "id_kecamatan" : "630504", "name" : "Banua Halat Kanan"}, {"id" : "6305042011", "id_kecamatan" : "630504", "name" : "Perintis Raya"}, {"id" : "6305042012", "id_kecamatan" : "630504", "name" : "Kakaran"}, {"id" : "6305042013", "id_kecamatan" : "630504", "name" : "Antasan Hilir"}, {"id" : "6305042014", "id_kecamatan" : "630504", "name" : "Lumbu Raya"}, {"id" : "6305042015", "id_kecamatan" : "630504", "name" : "Banua Halar Hulu"}, {"id" : "6305042016", "id_kecamatan" : "630504", "name" : "Badaun"}]}
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", "messages", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "null"}, "cloneCount": {"type": "integer"}, "gitRepositoryUrl": {"type": "null"}, "public": {"type": "string"}, "starCount": {"type": "integer"}, "setupSteps": {"type": "array", "items": {}}}, "required": ["name", "id", "created", "modified", "lastBackedUp", "accessed", "clonedFrom", "cloneCount", "gitRepositoryUrl", "public", "starCount", "setupSteps"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : "True", "starCount" : 3, "setupSteps" : []}
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"}, "public": {"type": "string"}, "starCount": {"type": "integer"}, "setupSteps": {"type": "array", "items": {}}}, "required": ["name", "id", "created", "modified", "lastBackedUp", "accessed", "clonedFrom", "cloneCount", "gitRepositoryUrl", "public", "starCount", "setupSteps"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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=0b544ebe0d9277d11481f7d82edc532ccc3003e5", "hash" : "9bf98d7405", "height" : 480, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAMABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAQQFB//EACAQAQABAwUAAwAAAAAAAAAAAAECAAMRBBITITEFQXH/xAAVAQEBAAAAAAAAAAAAAAAAAAABA//EABkRAAIDAQAAAAAAAAAAAAAAAAERAAIDBP/aAAwDAQACEQMRAD8Az+x8dC7ZIxns5AjuMCyPc5+uym+GGm0m2UpXUh0odfrUk1NyMLcTvCIq0Z626ss7UfcnvtQ1CKhzu9GZ/9k=", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/Bi541iV5-A_mw_3EiC7laGTI7tVF7H-tyTdTL2Vzeqc.jpg", "url" : "https://preview.redd.it/9pd6k7qsm8r31.jpg?width=640&crop=smart&auto=webp&s=bc9b8ce50adce678771840072bac6a7926c2fce6", "width" : 640}, "score" : {"comments" : 2, "downs" : 0, "isCurated" : false, "ratio" : 0.99, "ups" : 112, "value" : 112}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["City"], "title" : "Center of the City of bridges in my setting", "url" : "https://www.reddit.com/r/dndmaps/comments/deum41/center_of_the_city_of_bridges_in_my_setting/"}
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"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "value", "keep", "draw", "pick", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"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 2013 Expansion"}, {"type" : "Question", "value" : "In the new DLC for Mass Effect, Shepard must save the galaxy from %s.", "keep" : "Yes", "draw" : 0, "pick" : 1, "source" : "PAX Prime 2013 Expansion"}, {"type" : "Question", "value" : "No Enforcer wants to manage the panel on %s.", "keep" : "Yes", "draw" : 0, "pick" : 1, "source" : "PAX Prime 2013 Expansion"}, {"type" : "Question", "value" : "%s: Achievement unlocked.", "keep" : "Yes", "draw" : 0, "pick" : 1, "source" : "PAX Prime 2013 Expansion"}, {"type" : "Question", "value" : "There was a riot at the Gearbox panel where they gave the attendees %s.", "keep" : "Yes", "draw" : 0, "pick" : 1, "source" : "PAX Prime 2013 Expansion"}, {"type" : "Question", "value" : "What's the latest bullshit that's troubling this quaint fantasy town?", "keep" : "Yes", "draw" : 0, "pick" : 1, "source" : "PAX Prime 2013 Expansion"}]
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://json-schema.org/draft-07/schema#"}
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-schema.org/draft-07/schema#"}
{"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": {}}, "fate": {"type": "null"}, "glory": {"type": "integer"}, "honor": {"type": "null"}, "id": {"type": "string"}, "influence_cost": {"type": "null"}, "influence_pool": {"type": "null"}, "is_banned": {"type": "boolean"}, "is_banned_in_jade": {"type": "boolean"}, "is_banned_in_skirmish": {"type": "boolean"}, "is_restricted": {"type": "boolean"}, "is_restricted_in_jade": {"type": "boolean"}, "military": {"type": "string"}, "military_bonus": {"type": "null"}, "name": {"type": "string"}, "name_extra": {"type": "null"}, "political": {"type": "string"}, "political_bonus": {"type": "null"}, "role_restriction": {"type": "null"}, "side": {"type": "string"}, "strength": {"type": "null"}, "strength_bonus": {"type": "null"}, "text": {"type": "string"}, "traits": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "unicity": {"type": "boolean"}}, "required": ["allowed_clans", "clan", "cost", "deck_limit", "element", "fate", "glory", "honor", "id", "influence_cost", "influence_pool", "is_banned", "is_banned_in_jade", "is_banned_in_skirmish", "is_restricted", "is_restricted_in_jade", "military", "military_bonus", "name", "name_extra", "political", "political_bonus", "role_restriction", "side", "strength", "strength_bonus", "text", "traits", "type", "unicity"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"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" : false, "is_restricted_in_jade" : false, "military" : "2", "military_bonus" : null, "name" : "Reckless Avenger", "name_extra" : null, "political" : "2", "political_bonus" : null, "role_restriction" : null, "side" : "dynasty", "strength" : null, "strength_bonus" : null, "text" : "Support. <i>(Another player may help pay this card's fate cost.)</i>\n<b>Action:</b> Each player in turn order may choose a character they control - ready the first chosen character, honor the second chosen character, and taint each other chosen character.", "traits" : ["shugenja", "water"], "type" : "character", "unicity" : false}]
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"}, "honor": {"type": "null"}, "id": {"type": "string"}, "influence_cost": {"type": "null"}, "influence_pool": {"type": "null"}, "is_banned": {"type": "boolean"}, "is_banned_in_jade": {"type": "boolean"}, "is_banned_in_skirmish": {"type": "boolean"}, "is_restricted": {"type": "boolean"}, "is_restricted_in_jade": {"type": "boolean"}, "military": {"type": "string"}, "military_bonus": {"type": "null"}, "name": {"type": "string"}, "name_extra": {"type": "null"}, "political": {"type": "string"}, "political_bonus": {"type": "null"}, "role_restriction": {"type": "null"}, "side": {"type": "string"}, "strength": {"type": "null"}, "strength_bonus": {"type": "null"}, "text": {"type": "string"}, "traits": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "unicity": {"type": "boolean"}}, "required": ["allowed_clans", "clan", "cost", "deck_limit", "element", "fate", "glory", "honor", "id", "influence_cost", "influence_pool", "is_banned", "is_banned_in_jade", "is_banned_in_skirmish", "is_restricted", "is_restricted_in_jade", "military", "military_bonus", "name", "name_extra", "political", "political_bonus", "role_restriction", "side", "strength", "strength_bonus", "text", "traits", "type", "unicity"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
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": ["test", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/mocha": {"type": "string"}, "@types/node-fetch": {"type": "string"}, "mocha": {"type": "string"}, "node-fetch": {"type": "string"}, "ts-node": {"type": "string"}, "tslint": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/mocha", "@types/node-fetch", "mocha", "node-fetch", "ts-node", "tslint", "typescript"]}}, "required": ["name", "version", "description", "scripts", "repository", "author", "contributors", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"}, "repository" : {"type" : "git", "url" : "git+https://github.com/internetofdrums/internet-drum-pattern-queue-service-test.git"}, "author" : "Piet van Dongen", "contributors" : ["Piet van Dongen"], "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/internetofdrums/internet-drum-pattern-queue-service-test/issues"}, "homepage" : "https://github.com/internetofdrums/internet-drum-pattern-queue-service-test#readme", "devDependencies" : {"@types/mocha" : "5.2.5", "@types/node-fetch" : "2.1.2", "mocha" : "5.2.0", "node-fetch" : "2.2.0", "ts-node" : "7.0.0", "tslint" : "5.11.0", "typescript" : "^3.0.1"}}
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": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/mocha": {"type": "string"}, "@types/node-fetch": {"type": "string"}, "mocha": {"type": "string"}, "node-fetch": {"type": "string"}, "ts-node": {"type": "string"}, "tslint": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/mocha", "@types/node-fetch", "mocha", "node-fetch", "ts-node", "tslint", "typescript"]}}, "required": ["name", "version", "description", "scripts", "repository", "author", "contributors", "license", "bugs", "homepage", "devDependencies"], "$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"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}, "contributors": {"type": "array", "items": {"type": "string"}}, "packages": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic", "contributors", "packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : [], "contributors" : ["mekkablue"], "packages" : ["os", "site", "GlyphsApp", "sys #", "math", "objc"]}
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": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}, "contributors": {"type": "array", "items": {"type": "string"}}, "packages": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic", "contributors", "packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "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" : ["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 juice", "1 1/2 tablespoons coarsely chopped fresh mint"], "language" : "en-US", "source" : "www.epicurious.com", "tags" : ["Sauce", "Citrus", "Fruit", "Low Sodium", "Papaya", "Mint", "Summer"], "title" : "Papaya-Mint Sauce", "url" : "http://www.epicurious.com/recipes/food/views/papaya-mint-sauce-5244"}
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": "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": "string"}, "LEX_ACCESS_KEY_ID": {"type": "string"}, "LEX_SECRET_ACCESS_KEY": {"type": "string"}, "LEX_PROJECT_NAME": {"type": "string"}, "LEX_PROJECT_ALIAS": {"type": "string"}, "LEX_SESSION_ATTRIBUTES": {"type": "object", "properties": {"aa": {"type": "string"}}, "required": ["aa"]}, "LEX_ACCEPT": {"type": "string"}, "USER_INPUTS": {"type": "array", "items": {"type": "object", "properties": {"ref": {"type": "string"}, "src": {"type": "string"}, "args": {"type": "object", "properties": {"downloadMedia": {"type": "boolean"}}, "required": ["downloadMedia"]}}, "required": ["ref", "src", "args"]}}}, "required": ["PROJECTNAME", "CONTAINERMODE", "LEX_VERSION", "LEX_REGION", "LEX_ACCESS_KEY_ID", "LEX_SECRET_ACCESS_KEY", "LEX_PROJECT_NAME", "LEX_PROJECT_ALIAS", "LEX_SESSION_ATTRIBUTES", "LEX_ACCEPT", "USER_INPUTS"]}}, "required": ["Capabilities"]}}, "required": ["botium"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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/pcm", "USER_INPUTS" : [{"ref" : "MEDIA", "src" : "MediaInput", "args" : {"downloadMedia" : true}}]}}}
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_SECRET_ACCESS_KEY": {"type": "string"}, "LEX_PROJECT_NAME": {"type": "string"}, "LEX_PROJECT_ALIAS": {"type": "string"}, "LEX_SESSION_ATTRIBUTES": {"type": "object", "properties": {"aa": {"type": "string"}}, "required": ["aa"]}, "LEX_ACCEPT": {"type": "string"}, "USER_INPUTS": {"type": "array", "items": {"type": "object", "properties": {"ref": {"type": "string"}, "src": {"type": "string"}, "args": {"type": "object", "properties": {"downloadMedia": {"type": "boolean"}}, "required": ["downloadMedia"]}}, "required": ["ref", "src", "args"]}}}, "required": ["PROJECTNAME", "CONTAINERMODE", "LEX_VERSION", "LEX_REGION", "LEX_ACCESS_KEY_ID", "LEX_SECRET_ACCESS_KEY", "LEX_PROJECT_NAME", "LEX_PROJECT_ALIAS", "LEX_SESSION_ATTRIBUTES", "LEX_ACCEPT", "USER_INPUTS"]}}, "required": ["Capabilities"]}}, "required": ["botium"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "items": {"type": "string"}}, "extensions": {"type": "object", "properties": {"website": {"type": "string"}, "twitter": {"type": "string"}, "discord": {"type": "string"}, "description": {"type": "string"}}, "required": ["website", "twitter", "discord", "description"]}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"], "extensions" : {"website" : "https://www.thesnkrz.com/", "twitter" : "https://twitter.com/theSNKRZ", "discord" : "https://discord.com/invite/thesnkrz", "description" : "A Klaytn-based Walk-To-Earn social fitness platform"}}
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": {"website": {"type": "string"}, "twitter": {"type": "string"}, "discord": {"type": "string"}, "description": {"type": "string"}}, "required": ["website", "twitter", "discord", "description"]}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "http://json-schema.org/draft-07/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": "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" : [[[-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": "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#"}
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", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"default_title": {"type": "string"}, "default_icon": {"type": "string"}}, "required": ["default_title", "default_icon"]}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "32": {"type": "string"}, "48": {"type": "string"}, "64": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "32", "48", "64", "128"]}, "manifest_version": {"type": "integer"}}, "required": ["name", "version", "description", "default_locale", "short_name", "author", "background", "permissions", "browser_action", "icons", "manifest_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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__", "default_icon" : "icons/icon_16.png"}, "icons" : {"16" : "icons/icon_16.png", "32" : "icons/icon_32.png", "48" : "icons/icon_48.png", "64" : "icons/icon_64.png", "128" : "icons/icon_128.png"}, "manifest_version" : 2}
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": {"type": "string"}}}, "required": ["scripts"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"default_title": {"type": "string"}, "default_icon": {"type": "string"}}, "required": ["default_title", "default_icon"]}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "32": {"type": "string"}, "48": {"type": "string"}, "64": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "32", "48", "64", "128"]}, "manifest_version": {"type": "integer"}}, "required": ["name", "version", "description", "default_locale", "short_name", "author", "background", "permissions", "browser_action", "icons", "manifest_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"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", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
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": "integer"}}, "offset": {"type": "array", "items": {"type": "integer"}}, "originalSize": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "texture", "atlas", "rect", "offset", "originalSize"]}}, "required": ["__type__", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"__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"}}, "originalSize": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "texture", "atlas", "rect", "offset", "originalSize"]}}, "required": ["__type__", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"n_dim" : 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.595662996837138, 0.5111016126041269, 0.4236803200433717, 0.4666310305398666, 0.42645530522636316, 0.4110323901372408, 0.5327264440724093, 0.7735299374525325, 0.8086561888798207], [0.5620125806416767, 0.5598073020376189, 0.5729150138177959, 0.5506218932153272, 0.5715366110002537, 0.5843045557888686, 0.5365364088043797, 0.5662734406028203, 0.5607589066134959, 0.5506465940668442, 0.5537984951271646, 0.5578881504553641, 0.5619556507641442]], "feval_count" : [340, 341], "n_trials_instructed" : [340, 340], "passing" : [true, true], "completed" : true, "points" : 0.0, "winner" : "pymoo_nelder_cube", "loser" : "ultraopt_etpe_cube"}
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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 hardware. The literature is extensive in this area, and \nI suggest you start with one of the textbooks on parallel rendering \nalgorithms, such as:\n\n\nPractical Parallel Rendering\nby Alan Chalmers (Editor), Timothy Davis (Editor), Erik Reinhard\n\n\nhttp://www.amazon.com/exec/obidos/tg/detail/-/1568811799/ \nqid=1109613036/sr=1-1/ref=sr_1_1/104-1366464-7333544?v=glance&s=books\n\n\nRegarding oconv, you might have better luck converting some larger \nmodels into a Radiance mesh, which uses less memory to represent \ntriangular tesselations. Most CAD software these days spits out \nhundreds of thousands of polygons, even when they aren't needed, such \nas for large, flat surfaces. Using Alias/Wavefront .OBJ as your export \nformat, obj2mesh can convert these models much more efficiently into \nRadiance.\n\n\n-Greg\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2005-February/002471.html).</sup>", "attachments" : [], "created_by_name" : "Greg Ward", "created_at" : "February 28, 2005 at 06:52PM", "created_by" : "Greg_Ward", "parent_id" : "radiance-general_002469", "id" : "radiance-general_002471"}
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_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "rememberMe": {"type": "string"}, "cancel": {"type": "string"}, "loginSuccessful": {"type": "string"}, "logoutSuccessful": {"type": "string"}, "loginFailed": {"type": "string"}, "description": {"type": "string"}, "slideText": {"type": "string"}, "shortcuts": {"type": "string"}}, "required": ["error", "error_unknown", "reloadPage", "loginInformation", "login", "enterUsernamePassword", "username", "password", "rememberMe", "cancel", "loginSuccessful", "logoutSuccessful", "loginFailed", "description", "slideText", "shortcuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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 usuario e contrasinal:", "username" : "Nome de usuario", "password" : "Contrasinal", "rememberMe" : "Lembrarme", "cancel" : "Cancelar", "loginSuccessful" : "Sesi\u00f3n iniciada correctamente. Por favor, volva cargar a p\u00e1xina se esta non o fai automaticamente.", "logoutSuccessful" : "Sesi\u00f3n pechada correctamente. Por favor, volva cargar a p\u00e1xina se esta non o fai automaticamente.", "loginFailed" : "Erro \u00f3 iniciar sesi\u00f3n.", "description" : "Descrici\u00f3n", "slideText" : "Texto da diapositiva", "shortcuts" : "Atallos"}
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"}, "rememberMe": {"type": "string"}, "cancel": {"type": "string"}, "loginSuccessful": {"type": "string"}, "logoutSuccessful": {"type": "string"}, "loginFailed": {"type": "string"}, "description": {"type": "string"}, "slideText": {"type": "string"}, "shortcuts": {"type": "string"}}, "required": ["error", "error_unknown", "reloadPage", "loginInformation", "login", "enterUsernamePassword", "username", "password", "rememberMe", "cancel", "loginSuccessful", "logoutSuccessful", "loginFailed", "description", "slideText", "shortcuts"], "$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"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cheerio": {"type": "string"}, "discord.js": {"type": "string"}, "superagent": {"type": "string"}}, "required": ["cheerio", "discord.js", "superagent"]}}, "required": ["name", "version", "main", "repository", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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": "string"}, "superagent": {"type": "string"}}, "required": ["cheerio", "discord.js", "superagent"]}}, "required": ["name", "version", "main", "repository", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900779767": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900779768": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900779765", "900779766", "900779767", "900779768"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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": "integer"}}}, "required": ["nama", "dapil"]}, "900779767": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900779768": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900779765", "900779766", "900779767", "900779768"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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 avocado, yellow mustard, and paprika into eggs until thoroughly combined. Season with salt and black pepper."], "ingredients" : ["8 eggs", "1/2 avocado, peeled and pitted", "1/4 cup chopped green onion (optional)", "1 teaspoon prepared yellow mustard", "1/4 teaspoon paprika", "salt and ground black pepper to taste"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Light Avocado Egg Salad", "url" : "http://allrecipes.com/recipe/232565/light-avocado-egg-salad/"}
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#"}
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": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"}, {"productId" : 1027, "reviewText" : "i use it every Tuesday when i'm in my store.", "reviewDate" : "2019-04-08T04:35:41.2774229+03:00"}, {"productId" : 3995, "reviewText" : "My neighbor Elisha has one of these. She works as a fortune teller and she says it looks floppy.", "reviewDate" : "2017-12-16T18:10:24.779031+02:00"}, {"productId" : 2033, "reviewText" : "My co-worker Tyron has one of these. He says it looks stout.", "reviewDate" : "2019-03-28T10:53:49.1783606+02:00"}, {"productId" : 797, "reviewText" : "heard about this on bouyon radio, decided to give it a try.", "reviewDate" : "2016-08-06T05:10:45.2185879+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"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"]}}, "required": ["plugins", "parserOpts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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-07/schema#"}
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": {"type": "string"}, "finalgain3": {"type": "string"}, "measname": {"type": "string"}, "scalemin": {"type": "string"}, "scalemax": {"type": "string"}, "repetitions": {"type": "string"}, "freqs": {"type": "string"}}, "required": ["expid", "expname", "freqgain1", "freqgain2", "freqgain3", "finalgain1", "finalgain2", "finalgain3", "measname", "scalemin", "scalemax", "repetitions", "freqs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : "lopass"}
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": "string"}, "scalemin": {"type": "string"}, "scalemax": {"type": "string"}, "repetitions": {"type": "string"}, "freqs": {"type": "string"}}, "required": ["expid", "expname", "freqgain1", "freqgain2", "freqgain3", "finalgain1", "finalgain2", "finalgain3", "measname", "scalemin", "scalemax", "repetitions", "freqs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {"type": "string"}, "kemasan": {"type": "string"}, "dosis": {"type": "string"}, "penyajian": {"type": "string"}, "pabrik": {"type": "string"}, "id": {"type": "string"}, "category_id": {"type": "string"}}, "required": ["name", "harga", "golongan", "kandungan", "indikasi", "kontraindikasi", "perhatian", "efeksamping", "indeksamanwanitahamil", "kemasan", "dosis", "penyajian", "pabrik", "id", "category_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "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 hipersekretorik patologikal (sindroma Zollinger-Ellison).", "kontraindikasi" : "", "perhatian" : "Insufisiensi ginjal berat.Disfungsi hati.", "efeksamping" : "Susah buang air besar, diare, muntah-muntah, mual, sakit kepala, pusing, trombositopenia, nyeri sendi, anoreksia (kehilangan nafsu makan).", "indeksamanwanitahamil" : "B: Baik penelitian reproduksi hewan tidak menunjukkan risiko pada janin maupun penelitian terkendali pada wanita hamil atau hewan coba tidak memperlihatkan efek merugikan (kecuali penurunan kesuburan) dimana tidak ada penelitian terkendali yang mengkonfirmasi risiko pada wanita hamil semester pertama (dan tidak ada bukti risiko pada trisemester selanjutnya).", "kemasan" : "Tablet 20 mg x 30 biji.", "dosis" : "Ulkus duodenum : - terapi akut : 40 mg sekali sehari pada malam hari sebelum tidur atau 2 kali sehari 20 mg selama 4 minggu. - dosis rumat/pemeliharaan : 20 mg sekali sehari pada malam hari sebelum tidur.", "penyajian" : "Dikonsumsi bersamaan dengan makanan atau tidak", "pabrik" : "Fahrenheit.", "id" : "5137", "category_id" : "1"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {"type": "string"}, "kemasan": {"type": "string"}, "dosis": {"type": "string"}, "penyajian": {"type": "string"}, "pabrik": {"type": "string"}, "id": {"type": "string"}, "category_id": {"type": "string"}}, "required": ["name", "harga", "golongan", "kandungan", "indikasi", "kontraindikasi", "perhatian", "efeksamping", "indeksamanwanitahamil", "kemasan", "dosis", "penyajian", "pabrik", "id", "category_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "string"}, "username": {"type": "string"}, "v": {"type": "integer"}}, "required": ["avatarUrl", "displayName", "gv", "id", "url", "username", "v"]}, "html": {"type": "string"}, "id": {"type": "string"}, "issues": {"type": "array", "items": {}}, "meta": {"type": "array", "items": {}}, "readBy": {"type": "integer"}, "sent": {"type": "string"}, "text": {"type": "string"}, "unread": {"type": "boolean"}, "urls": {"type": "array", "items": {}}, "v": {"type": "integer"}}, "required": ["fromUser", "html", "id", "issues", "meta", "readBy", "sent", "text", "unread", "urls", "v"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"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, "sent" : "2016-06-02T20:54:38.747Z", "text" : "test message", "unread" : false, "urls" : [], "v" : 1}, {"fromUser" : {"avatarUrl" : "https://avatars-02.gitter.im/gh/uv/4/username", "displayName" : "User Full Name 2", "gv" : "3", "id" : "54d7876c15522ed4b3dbtest", "url" : "/user2", "username" : "username2", "v" : 17}, "html" : "test message 2", "id" : "57509d0ef44fde236e52f395", "issues" : [], "meta" : [], "readBy" : 8, "sent" : "2016-07-02T19:54:38.747Z", "text" : "test message 2", "unread" : false, "urls" : [], "v" : 1}]
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"}}, "required": ["avatarUrl", "displayName", "gv", "id", "url", "username", "v"]}, "html": {"type": "string"}, "id": {"type": "string"}, "issues": {"type": "array", "items": {}}, "meta": {"type": "array", "items": {}}, "readBy": {"type": "integer"}, "sent": {"type": "string"}, "text": {"type": "string"}, "unread": {"type": "boolean"}, "urls": {"type": "array", "items": {}}, "v": {"type": "integer"}}, "required": ["fromUser", "html", "id", "issues", "meta", "readBy", "sent", "text", "unread", "urls", "v"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"type": "string"}, "targetarchtriplet": {"type": "string"}, "sdkroot": {"type": "string"}}, "required": ["NOTE", "distroversion", "sdkversion", "gccversion", "hosttriplet", "targettriplet", "targetarchtriplet", "sdkroot"]}, "configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includePath": {"type": "array", "items": {"type": "string"}}, "defines": {"type": "array", "items": {"type": "string"}}, "browse": {"type": "object", "properties": {"path": {"type": "array", "items": {"type": "string"}}, "limitSymbolsToIncludedHeaders": {"type": "boolean"}, "databaseFilename": {"type": "string"}}, "required": ["path", "limitSymbolsToIncludedHeaders", "databaseFilename"]}, "cStandard": {"type": "string"}, "cppStandard": {"type": "string"}, "intelliSenseMode": {"type": "string"}, "compilerPath": {"type": "string"}}, "required": ["name", "includePath", "defines", "browse", "cStandard", "cppStandard", "intelliSenseMode", "compilerPath"]}}, "version": {"type": "integer"}}, "required": ["env", "configurations", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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/wrlinuxcd/sdk/intel-x86-64"}, "configurations" : [{"name" : "WRLinux", "includePath" : ["${workspaceFolder}/**", "${env.sdkroot}/sysroots/${env.targettriplet}/usr/include", "${env.sdkroot}/sysroots/${env.hosttriplet}/usr/lib/${env.targetarchtriplet}/gcc/${env.targetarchtriplet}/${env.gccversion}/include"], "defines" : ["__linux__", "__x86_64__", "_GNU_SOURCE"], "browse" : {"path" : ["${workspaceFolder}", "${config:wrlinuxsdk.sdkroot}/sysroots/${env.targettriplet}/usr/include", "${config:wrlinuxsdk.sdkroot}/sysroots/${env.hosttriplet}/usr/lib/${env.targetarchtriplet}/gcc/${env.targetarchtriplet}/${env.gccversion}/include"], "limitSymbolsToIncludedHeaders" : true, "databaseFilename" : ""}, "cStandard" : "c11", "cppStandard" : "c++17", "intelliSenseMode" : "gcc-x64", "compilerPath" : ""}], "version" : 4}
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"}, "sdkroot": {"type": "string"}}, "required": ["NOTE", "distroversion", "sdkversion", "gccversion", "hosttriplet", "targettriplet", "targetarchtriplet", "sdkroot"]}, "configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includePath": {"type": "array", "items": {"type": "string"}}, "defines": {"type": "array", "items": {"type": "string"}}, "browse": {"type": "object", "properties": {"path": {"type": "array", "items": {"type": "string"}}, "limitSymbolsToIncludedHeaders": {"type": "boolean"}, "databaseFilename": {"type": "string"}}, "required": ["path", "limitSymbolsToIncludedHeaders", "databaseFilename"]}, "cStandard": {"type": "string"}, "cppStandard": {"type": "string"}, "intelliSenseMode": {"type": "string"}, "compilerPath": {"type": "string"}}, "required": ["name", "includePath", "defines", "browse", "cStandard", "cppStandard", "intelliSenseMode", "compilerPath"]}}, "version": {"type": "integer"}}, "required": ["env", "configurations", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"type": "string"}}, "Name": {"type": "string"}, "Poster URL": {"type": "string"}, "Runtime": {"type": "string"}}, "required": ["Bio", "Country", "Director", "Genres", "Language", "Name", "Poster URL", "Runtime"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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" : "Omkara", "Poster URL" : "https://m.media-amazon.com/images/M/MV5BY2NmNjlhYzQtMWU5MS00YTVmLWIyOWEtOGFmY2ZjMjY2ZGRkXkEyXkFqcGdeQXVyMTMxMTY0OTQ@._V1_UX182_CR0,0,182,268_AL__QL50.jpg", "Runtime" : "155 min"}
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": "string"}, "Runtime": {"type": "string"}}, "required": ["Bio", "Country", "Director", "Genres", "Language", "Name", "Poster URL", "Runtime"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x2562cd7b3f502821efb5aca239d000369d87381d", "tool" : "honeybadger", "start" : 1565800593.2154286, "end" : 1565800651.6676881, "duration" : 58.45225954055786, "analysis" : [{"errors" : [], "file" : "/unique_chucks/31/0x2562cd7b3f502821efb5aca239d000369d87381d.sol", "name" : "MaiaToken"}, {"errors" : [], "file" : "/unique_chucks/31/0x2562cd7b3f502821efb5aca239d000369d87381d.sol", "name" : "StandardToken"}, {"errors" : [], "file" : "/unique_chucks/31/0x2562cd7b3f502821efb5aca239d000369d87381d.sol", "name" : "Token"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : [[[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/0410/blob/gh-pages/api/v1/552417.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#"}
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"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "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" : "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/5035", "updated_at" : "2017-08-09 19:42:11", "created_at" : "2017-08-09 12:31:22", "closed_at" : "2017-08-09 16:10:26", "state" : "closed", "title" : "Alglib : new package", "number" : 5035, "milestone" : null, "labels" : ["new-package"], "id" : 249015003, "html_url" : "https://github.com/spack/spack/pull/5035", "assignees" : [], "comments" : 8}
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": {"type": "string"}}, "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#"}
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": {"type": "string"}}, "required": ["start", "old_test", "test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "fs": {"type": "string"}, "mocha": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "nodemon": {"type": "string"}, "supertest": {"type": "string"}}, "required": ["body-parser", "express", "fs", "mocha", "mongoose", "morgan", "nodemon", "supertest"]}}, "required": ["name", "version", "private", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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", "dependencies" : {"body-parser" : "^1.18.3", "express" : "^4.16.3", "fs" : "0.0.1-security", "mocha" : "^7.0.1", "mongoose" : "^5.4.18", "morgan" : "^1.9.1", "nodemon" : "^1.18.10", "supertest" : "^4.0.0"}}
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": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "fs": {"type": "string"}, "mocha": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "nodemon": {"type": "string"}, "supertest": {"type": "string"}}, "required": ["body-parser", "express", "fs", "mocha", "mongoose", "morgan", "nodemon", "supertest"]}}, "required": ["name", "version", "private", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"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": "string"}, "depth": {"type": "integer"}}, "required": ["title", "url", "depth"]}}, "location": {"type": "string"}, "url": {"type": "string"}, "title": {"type": "string"}}, "required": ["location_history", "outline", "location", "url", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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</code> class", "url" : "#repeatvector-class", "depth" : 3}], "location" : "/api/layers/reshaping_layers/repeat_vector", "url" : "/api/layers/reshaping_layers/repeat_vector/", "title" : "RepeatVector layer"}
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": "string"}, "depth": {"type": "integer"}}, "required": ["title", "url", "depth"]}}, "location": {"type": "string"}, "url": {"type": "string"}, "title": {"type": "string"}}, "required": ["location_history", "outline", "location", "url", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}}, "required": ["Name", "UlanIdNo"]}, "after_follower": {"type": "null"}, "birth_date": {"type": "string"}, "collaboration": {"type": "null"}, "death_date": {"type": "string"}, "display_name": {"type": "string"}, "first": {"type": "string"}, "fullname": {"type": "string"}, "irn": {"type": "integer"}, "last": {"type": "string"}, "middle": {"type": "null"}, "nationality": {"type": "null"}, "organization": {"type": "null"}, "party_type": {"type": "string"}, "role": {"type": "string"}}, "required": ["ULAN", "after_follower", "birth_date", "collaboration", "death_date", "display_name", "first", "fullname", "irn", "last", "middle", "nationality", "organization", "party_type", "role"]}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "string"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "string"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"accession_number" : "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", "middle" : null, "nationality" : null, "organization" : null, "party_type" : "Ulan", "role" : "Artist"}], "creation_date" : "1979", "credit_line" : "Carl H. Lieber Memorial and Miscellaneous Print Funds", "cultures" : [], "dimensions" : "9 3/4 x 9 3/4 in (image) \n16 1/2 x 16 1/2 in (sheet)", "dynasty" : null, "images" : [], "irn" : 2903, "materials" : "hard-ground etching and aquatint", "on_view" : false, "period" : null, "printers" : [], "publishers" : [], "rights" : "\u00a9 Jack Tworkov", "title" : "L - SF - ES #2"}
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"}, "birth_date": {"type": "string"}, "collaboration": {"type": "null"}, "death_date": {"type": "string"}, "display_name": {"type": "string"}, "first": {"type": "string"}, "fullname": {"type": "string"}, "irn": {"type": "integer"}, "last": {"type": "string"}, "middle": {"type": "null"}, "nationality": {"type": "null"}, "organization": {"type": "null"}, "party_type": {"type": "string"}, "role": {"type": "string"}}, "required": ["ULAN", "after_follower", "birth_date", "collaboration", "death_date", "display_name", "first", "fullname", "irn", "last", "middle", "nationality", "organization", "party_type", "role"]}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "string"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "string"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"type": "string"}, "pl_pnum": {"type": "string"}, "st_optmag": {"type": "string"}, "ra": {"type": "string"}, "pl_discmethod": {"type": "string"}, "hd_name": {"type": "string"}, "pl_hostname": {"type": "string"}, "pl_tranflag": {"type": "string"}, "pl_name": {"type": "string"}, "pl_rvflag": {"type": "string"}, "pl_orbeccen": {"type": "string"}, "rowupdate": {"type": "string"}, "st_dist": {"type": "string"}, "pl_telescope": {"type": "string"}, "pl_edelink": {"type": "string"}, "pl_omflag": {"type": "string"}, "pl_orbper": {"type": "string"}, "dec": {"type": "string"}}, "required": ["pl_cbflag", "pl_disc", "pl_pelink", "pl_imgflag", "pl_facility", "pl_astflag", "hip_name", "pl_pnum", "st_optmag", "ra", "pl_discmethod", "hd_name", "pl_hostname", "pl_tranflag", "pl_name", "pl_rvflag", "pl_orbeccen", "rowupdate", "st_dist", "pl_telescope", "pl_edelink", "pl_omflag", "pl_orbper", "dec"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pl_cbflag" : "0", "pl_disc" : "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 40979", "pl_hostname" : "HD 40979", "pl_tranflag" : "0", "pl_name" : "HD 40979 b", "pl_rvflag" : "1", "pl_orbeccen" : "0.252000", "rowupdate" : "2014-05-14", "st_dist" : "33.33", "pl_telescope" : "Multiple Telescopes", "pl_edelink" : "http://exoplanets.org/detail/HD_40979_b", "pl_omflag" : "0", "pl_orbper" : "264.15000000", "dec" : "44.260445"}
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": "string"}, "ra": {"type": "string"}, "pl_discmethod": {"type": "string"}, "hd_name": {"type": "string"}, "pl_hostname": {"type": "string"}, "pl_tranflag": {"type": "string"}, "pl_name": {"type": "string"}, "pl_rvflag": {"type": "string"}, "pl_orbeccen": {"type": "string"}, "rowupdate": {"type": "string"}, "st_dist": {"type": "string"}, "pl_telescope": {"type": "string"}, "pl_edelink": {"type": "string"}, "pl_omflag": {"type": "string"}, "pl_orbper": {"type": "string"}, "dec": {"type": "string"}}, "required": ["pl_cbflag", "pl_disc", "pl_pelink", "pl_imgflag", "pl_facility", "pl_astflag", "hip_name", "pl_pnum", "st_optmag", "ra", "pl_discmethod", "hd_name", "pl_hostname", "pl_tranflag", "pl_name", "pl_rvflag", "pl_orbeccen", "rowupdate", "st_dist", "pl_telescope", "pl_edelink", "pl_omflag", "pl_orbper", "dec"], "$schema": "http://json-schema.org/draft-07/schema#"}
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", "children", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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 Project"}, {"id" : 26780, "name" : "California -- Business Roundtable"}, {"id" : 26781, "name" : "California -- Commission on Immigration and Housing"}, {"id" : 6911, "name" : "California -- continuation high school in"}, {"id" : 42633, "name" : "California -- defense spending in"}, {"id" : 3289, "name" : "California -- Department of Corrections and Rehabilitation"}, {"id" : 3290, "name" : "California -- Disability Rights"}, {"id" : 26782, "name" : "California -- economy and role of immigrants"}, {"id" : 3291, "name" : "California -- fires"}, {"id" : 26783, "name" : "California -- foreign miners tax"}, {"id" : 6913, "name" : "California -- high school dropout rate in"}, {"id" : 23876, "name" : "California -- political culture of"}, {"id" : 42634, "name" : "California -- poverty rates"}, {"id" : 3292, "name" : "California -- prison system"}, {"id" : 3293, "name" : "California -- Southern"}, {"id" : 6914, "children" : [{"id" : 9389, "name" : "California, University of -- Santa Barbara"}], "name" : "California -- University of"}], "name" : "California"}
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.org/draft-07/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": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$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" : [[[-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.17579, 46.72951], [-117.174905, 46.729907], [-117.178438, 46.73015], [-117.18003, 46.73166]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 79334}}]}
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#"}
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": "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" : [[[-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.662086, 32.047239], [-89.654426, 32.013678], [-89.654727, 31.872378], [-89.66972, 31.86707], [-89.6997, 31.86474], [-89.70078, 31.88448], [-89.70546, 31.88306], [-89.70712, 31.88059], [-89.71306, 31.88054], [-89.713798, 31.889183], [-89.71958, 31.88904], [-89.72067, 31.89257], [-89.72479, 31.8939], [-89.72656, 31.89643], [-89.72852, 31.89525], [-89.73099, 31.89504], [-89.735598, 31.890411], [-89.7412, 31.89639], [-89.74647, 31.89657], [-89.75114, 31.89946], [-89.75365, 31.89922], [-89.75737, 31.90226], [-89.759974, 31.902643], [-89.76427, 31.90243], [-89.76543, 31.8988], [-89.76539, 31.89468], [-89.82333, 31.92908], [-89.84623, 31.9526], [-89.86379, 31.97433], [-89.87819, 31.98539], [-89.88913, 31.98846], [-89.89247, 31.99027], [-89.90104, 31.996394], [-89.9017, 32.00076]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 35461}}]}
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#"}
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_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "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": "string"}, "Protocol": {"type": "string"}, "Endpoint": {"type": "string"}, "TopicArn": {"type": "string"}}, "required": ["SubscriptionArn", "Owner", "Protocol", "Endpoint", "TopicArn"]}}, "ResponseMetadata": {"type": "object", "properties": {"RequestId": {"type": "string"}, "HTTPStatusCode": {"type": "integer"}, "HTTPHeaders": {"type": "object", "properties": {"x-amzn-requestid": {"type": "string"}, "content-type": {"type": "string"}, "content-length": {"type": "string"}, "date": {"type": "string"}}, "required": ["x-amzn-requestid", "content-type", "content-length", "date"]}, "RetryAttempts": {"type": "integer"}}, "required": ["RequestId", "HTTPStatusCode", "HTTPHeaders", "RetryAttempts"]}}, "required": ["Subscriptions", "ResponseMetadata"]}}, "required": ["status_code", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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"}], "ResponseMetadata" : {"RequestId" : "6c66e76d-936e-5ac1-b383-b4bc7d1c42de", "HTTPStatusCode" : 200, "HTTPHeaders" : {"x-amzn-requestid" : "6c66e76d-936e-5ac1-b383-b4bc7d1c42de", "content-type" : "text/xml", "content-length" : "703", "date" : "Wed, 25 Jul 2018 03:19:14 GMT"}, "RetryAttempts" : 0}}}
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"}, "TopicArn": {"type": "string"}}, "required": ["SubscriptionArn", "Owner", "Protocol", "Endpoint", "TopicArn"]}}, "ResponseMetadata": {"type": "object", "properties": {"RequestId": {"type": "string"}, "HTTPStatusCode": {"type": "integer"}, "HTTPHeaders": {"type": "object", "properties": {"x-amzn-requestid": {"type": "string"}, "content-type": {"type": "string"}, "content-length": {"type": "string"}, "date": {"type": "string"}}, "required": ["x-amzn-requestid", "content-type", "content-length", "date"]}, "RetryAttempts": {"type": "integer"}}, "required": ["RequestId", "HTTPStatusCode", "HTTPHeaders", "RetryAttempts"]}}, "required": ["Subscriptions", "ResponseMetadata"]}}, "required": ["status_code", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}}}}}, "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" : [[[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.com/madefor/0410/blob/gh-pages/api/v1/594544.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#"}
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": "string"}, "purge": {"type": "string"}, "compose:tools": {"type": "string"}, "compose:tools:down": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}, "dev": {"type": "string"}, "start": {"type": "string"}}, "required": ["lint", "lint:fix", "postinstall", "purge", "compose:tools", "compose:tools:down", "build", "deploy", "dev", "start"]}, "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": {"lerna": {"type": "string"}}, "required": ["lerna"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import"]}}, "required": ["name", "version", "description", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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 clear:modules", "compose:tools" : "docker-compose -f docker/docker-compose.tools.yml up -d", "compose:tools:down" : "docker-compose -f docker/docker-compose.tools.yml down", "build" : "lerna run build --parallel", "deploy" : "lerna run deploy --parallel", "dev" : "lerna run start --parallel", "start" : "npm run build && npm run deploy"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Gabrirf/lerna-mern.git"}, "keywords" : ["node", "nodejs", "react", "reactjs", "mongodb", "api", "rest", "express", "lerna"], "author" : "Gabriel Rodr\u00edguez Flores <gabrirf.dev@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/Gabrirf/lerna-mern/issues"}, "homepage" : "https://github.com/Gabrirf/lerna-mern#readme", "dependencies" : {"lerna" : "^3.22.1"}, "devDependencies" : {"eslint" : "^7.18.0", "eslint-config-airbnb-base" : "^14.2.1", "eslint-plugin-import" : "^2.22.1"}}
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": "string"}, "compose:tools:down": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}, "dev": {"type": "string"}, "start": {"type": "string"}}, "required": ["lint", "lint:fix", "postinstall", "purge", "compose:tools", "compose:tools:down", "build", "deploy", "dev", "start"]}, "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": {"lerna": {"type": "string"}}, "required": ["lerna"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import"]}}, "required": ["name", "version", "description", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "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", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"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.\" Caird. 3. (Med.) To convert into something human or belonging to man; as, to humanize vaccine lymph.\n\nTo become or be made more humane; to become civilized; to be ameliorated. By the original law of nations, war and extirpation were the punishment of injury. Humanizing by degrees, it admitted slavery instead of death; a further step was the exchange of prisoners instead of slavery. Franklin."}
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"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "cssnano": {"type": "string"}, "express": {"type": "string"}, "parcel-bundler": {"type": "string"}, "postcss-cli": {"type": "string"}}, "required": ["autoprefixer", "cssnano", "express", "parcel-bundler", "postcss-cli"]}, "dependencies": {"type": "object", "properties": {"babel-polyfill": {"type": "string"}, "d3": {"type": "string"}}, "required": ["babel-polyfill", "d3"]}}, "required": ["name", "description", "version", "author", "license", "repository", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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-bundler" : "^1.9.7", "postcss-cli" : "^6.0.0"}, "dependencies" : {"babel-polyfill" : "^6.26.0", "d3" : "^5.7.0"}}
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"]}, "scripts": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "cssnano": {"type": "string"}, "express": {"type": "string"}, "parcel-bundler": {"type": "string"}, "postcss-cli": {"type": "string"}}, "required": ["autoprefixer", "cssnano", "express", "parcel-bundler", "postcss-cli"]}, "dependencies": {"type": "object", "properties": {"babel-polyfill": {"type": "string"}, "d3": {"type": "string"}}, "required": ["babel-polyfill", "d3"]}}, "required": ["name", "description", "version", "author", "license", "repository", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": "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" : [[[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://github.com/madefor/0410/blob/gh-pages/api/v1/455027.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#"}
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"}, "500000000": {"type": "integer"}, "750000000": {"type": "integer"}, "1000000000": {"type": "integer"}}, "required": ["120000000", "180000000", "225000000", "240000000", "300000000", "500000000", "750000000", "1000000000"]}, "hard": {"type": "object", "properties": {"120000000": {"type": "integer"}, "180000000": {"type": "integer"}, "225000000": {"type": "integer"}, "240000000": {"type": "integer"}, "300000000": {"type": "integer"}, "500000000": {"type": "integer"}, "750000000": {"type": "integer"}, "1000000000": {"type": "integer"}}, "required": ["120000000", "180000000", "225000000", "240000000", "300000000", "500000000", "750000000", "1000000000"]}, "legendary": {"type": "object", "properties": {"120000000": {"type": "integer"}, "180000000": {"type": "integer"}, "225000000": {"type": "integer"}, "240000000": {"type": "integer"}, "300000000": {"type": "integer"}, "500000000": {"type": "integer"}, "750000000": {"type": "integer"}, "1000000000": {"type": "integer"}}, "required": ["120000000", "180000000", "225000000", "240000000", "300000000", "500000000", "750000000", "1000000000"]}, "nightmare": {"type": "object", "properties": {"120000000": {"type": "integer"}, "180000000": {"type": "integer"}, "225000000": {"type": "integer"}, "240000000": {"type": "integer"}, "300000000": {"type": "integer"}, "500000000": {"type": "integer"}, "750000000": {"type": "integer"}, "1000000000": {"type": "integer"}}, "required": ["120000000", "180000000", "225000000", "240000000", "300000000", "500000000", "750000000", "1000000000"]}}, "required": ["normal", "hard", "legendary", "nightmare"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"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}, "legendary" : {"120000000" : 48, "180000000" : 52, "225000000" : 56, "240000000" : 60, "300000000" : 64, "500000000" : 70, "750000000" : 84, "1000000000" : 108}, "nightmare" : {"120000000" : 48, "180000000" : 52, "225000000" : 56, "240000000" : 60, "300000000" : 64, "500000000" : 70, "750000000" : 84, "1000000000" : 108}}
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"}, "1000000000": {"type": "integer"}}, "required": ["120000000", "180000000", "225000000", "240000000", "300000000", "500000000", "750000000", "1000000000"]}, "hard": {"type": "object", "properties": {"120000000": {"type": "integer"}, "180000000": {"type": "integer"}, "225000000": {"type": "integer"}, "240000000": {"type": "integer"}, "300000000": {"type": "integer"}, "500000000": {"type": "integer"}, "750000000": {"type": "integer"}, "1000000000": {"type": "integer"}}, "required": ["120000000", "180000000", "225000000", "240000000", "300000000", "500000000", "750000000", "1000000000"]}, "legendary": {"type": "object", "properties": {"120000000": {"type": "integer"}, "180000000": {"type": "integer"}, "225000000": {"type": "integer"}, "240000000": {"type": "integer"}, "300000000": {"type": "integer"}, "500000000": {"type": "integer"}, "750000000": {"type": "integer"}, "1000000000": {"type": "integer"}}, "required": ["120000000", "180000000", "225000000", "240000000", "300000000", "500000000", "750000000", "1000000000"]}, "nightmare": {"type": "object", "properties": {"120000000": {"type": "integer"}, "180000000": {"type": "integer"}, "225000000": {"type": "integer"}, "240000000": {"type": "integer"}, "300000000": {"type": "integer"}, "500000000": {"type": "integer"}, "750000000": {"type": "integer"}, "1000000000": {"type": "integer"}}, "required": ["120000000", "180000000", "225000000", "240000000", "300000000", "500000000", "750000000", "1000000000"]}}, "required": ["normal", "hard", "legendary", "nightmare"], "$schema": "http://json-schema.org/draft-07/schema#"}