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": {"h": {"type": "string"}, "c": {"type": "array", "items": {"type": "integer"}}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "e9096f7e80f06c56265f", "c" : [0]}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "array", "items": {"type": "integer"}}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"TraceFileName": {"type": "string"}, "TraceFileSize": {"type": "integer"}, "VerbosityLevel": {"type": "string"}}, "required": ["TraceFileName", "TraceFileSize", "VerbosityLevel"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"TraceFileName" : "/var/log/iqrf-daemon.log", "TraceFileSize" : 0, "VerbosityLevel" : "inf"}
json_instruct
{"type": "object", "properties": {"TraceFileName": {"type": "string"}, "TraceFileSize": {"type": "integer"}, "VerbosityLevel": {"type": "string"}}, "required": ["TraceFileName", "TraceFileSize", "VerbosityLevel"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 161048, "info" : {"name" : "Robinhood Dark", "description" : "A dark theme for https://robinhood.com", "additionalInfo" : null, "format" : "uso", "category" : "robinhood", "createdAt" : "2018-06-07T16:49:04.000Z", "updatedAt" : "2018-06-07T17:09:58.000Z", "license" : "CC0-1.0", "author" : {"id" : 661519, "name" : "Levi Olson"}}, "stats" : {"installs" : {"total" : 175, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "161048_after.png", "archived" : true}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain(robinhood.com) {\r\n\r\n/* Font Colors */\r\nbody, ._16Nq52hq5o_UMk9xgkzKc-, .caption-text, ._1Ye9iN5wkrIm1iyoJB1C_L, .uQY-3rKixTmTIcnEz5WPo > div, ._3HLJ3tNpwWnaSGO61Xz-VA, ._1gWWzOCQaCTOEFMTnlhp54, h3.copy-lg, a, a > div > p.bold, a > div > div > div > p {\r\n color: #DDDDDD !important;\r\n}\r\n.HLLcdC0Cx8ANzdVHjLC-E, a:hover, a.gPOnCaABfgFsBqOObIw0i:hover {\r\n color: #AAAAAA !important;\r\n}\r\nsvg {\r\n fill: #DDDDDD !important;\r\n}\r\n/* Dark Background */\r\nbody, ._1mATcUj0905mXscK3Xoeq4, ._203Qy0QZFOhcU3wYhTYKdj, ._2vr4H38-JhOR2qYnll232_, .v1uAnx34ALlhUxtDuyz1c, ._1Qi2Hhtmvh0TisujXGj-SE, ._1PdzwaD8O05hNmv47hFfx-, .PhuiSK8BrjnBiyEg1jI3j {\r\n background-color: #171718 !important;\r\n}\r\n/* LessDark Background */\r\n._3lnxfKaH1DTVmq6GlK0syC, ._3-OLNo3tnl0MlzrbPSrCni, ._3gWYbI2Ww21ztWF33BHU5-, .uQY-3rKixTmTIcnEz5WPo > div, main > div > div > div, a {\r\n background-color: #222223 !important;\r\n}\r\n/* EvenLessDark Background */\r\na.gPOnCaABfgFsBqOObIw0i:hover, a:hover {\r\n background-color: #323233 !important;\r\n}\r\n/* Overrides */\r\na._3H_ovP_hBHgEFxZ2IMIVD {\r\n background: none !important;\r\n}\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/armors/decorative/pandorasboxmonstermasks/pandorasboxiguarmorhat/pandorasboxiguarmorhat.head": {"type": "array", "items": {"type": "string"}}}, "required": ["items/armors/decorative/pandorasboxmonstermasks/pandorasboxiguarmorhat/pandorasboxiguarmorhat.head"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"DeniedAlternatives" : [], "Files" : {"items/armors/decorative/pandorasboxmonstermasks/pandorasboxiguarmorhat/pandorasboxiguarmorhat.head" : ["/description"]}, "Texts" : {"Chs" : "\u5c3d\u7ba1\u770b\u8d77\u6765\u5177\u6709\u4fdd\u62a4\u6027\uff0c\u4f46\u662f\u5e76\u4e0d\u80fd\u4f5c\u4e3a\u4e00\u9876\u5408\u9002\u7684\u5934\u76d4\u3002", "Eng" : "Despite its protective appearance, this will not serve as a replacement for a proper helmet."}}, {"DeniedAlternatives" : [], "Files" : {"items/armors/decorative/pandorasboxmonstermasks/pandorasboxiguarmorhat/pandorasboxiguarmorhat.head" : ["/shortdescription"]}, "Texts" : {"Chs" : "\u6b66\u88c5\u8725\u8734\u5e3d", "Eng" : "Iguarmor Hat"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/armors/decorative/pandorasboxmonstermasks/pandorasboxiguarmorhat/pandorasboxiguarmorhat.head": {"type": "array", "items": {"type": "string"}}}, "required": ["items/armors/decorative/pandorasboxmonstermasks/pandorasboxiguarmorhat/pandorasboxiguarmorhat.head"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:slug": {"type": "string"}, "test:gfm": {"type": "string"}, "test:diff": {"type": "string"}, "test:coverage": {"type": "string"}, "dev": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["test", "test:slug", "test:gfm", "test:diff", "test:coverage", "dev", "prepublishOnly"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-zob": {"type": "string"}, "http-server": {"type": "string"}, "mocha": {"type": "string"}, "uglify-js": {"type": "string"}}, "required": ["eslint", "eslint-config-zob", "http-server", "mocha", "uglify-js"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "zmdjs", "version" : "0.3.0", "description" : "Just a markdown parser", "main" : "zmd.js", "scripts" : {"test" : "npm run test:slug && npm run test:gfm && npm run test:diff && npm run test:coverage", "test:slug" : "mocha test/slug", "test:gfm" : "node test/gfm", "test:diff" : "node test/diff", "test:coverage" : "node test/coverage", "dev" : "http-server -p 2000 -s", "prepublishOnly" : "uglifyjs zmd.js --compress --mangle --comments --output zmd.min.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/xovel/zmd.git"}, "keywords" : ["markdown", "markup", "zmd", "regular expression", "lexer", "html"], "author" : {"name" : "xovel", "email" : "xovel@foxmail.com"}, "license" : "MIT", "bugs" : {"url" : "https://github.com/xovel/zmd/issues"}, "homepage" : "https://github.com/xovel/zmd#readme", "devDependencies" : {"eslint" : "^5.16.0", "eslint-config-zob" : "^0.0.4", "http-server" : "^0.10.0", "mocha" : "^6.1.4", "uglify-js" : "^2.7.5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:slug": {"type": "string"}, "test:gfm": {"type": "string"}, "test:diff": {"type": "string"}, "test:coverage": {"type": "string"}, "dev": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["test", "test:slug", "test:gfm", "test:diff", "test:coverage", "dev", "prepublishOnly"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-zob": {"type": "string"}, "http-server": {"type": "string"}, "mocha": {"type": "string"}, "uglify-js": {"type": "string"}}, "required": ["eslint", "eslint-config-zob", "http-server", "mocha", "uglify-js"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "partition": {"type": "array", "items": {"type": "object", "properties": {"device": {"type": "string"}, "mountpoint": {"type": "string"}, "size": {"type": "integer"}, "fstype": {"type": "string"}, "options": {"type": "string"}}, "required": ["device", "mountpoint", "size", "fstype", "options"]}}, "route": {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}, "gateway": {"type": "string"}, "subnet": {"type": "null"}, "netmask": {"type": "string"}, "interface": {"type": "string"}}, "required": ["address", "gateway", "subnet", "netmask", "interface"]}}, "firewall": {"type": "array", "items": {"type": "object", "properties": {"service": {"type": "string"}, "network": {"type": "null"}, "output_network": {"type": "null"}, "chain": {"type": "string"}, "action": {"type": "string"}, "protocol": {"type": "string"}, "flags": {"type": "null"}, "comment": {"type": "string"}, "table": {"type": "string"}, "name": {"type": "string"}}, "required": ["service", "network", "output_network", "chain", "action", "protocol", "flags", "comment", "table", "name"]}}, "controller": {"type": "array", "items": {"type": "object", "properties": {"enclosure": {"type": "string"}, "adapter": {"type": "string"}, "slot": {"type": "string"}, "raidlevel": {"type": "string"}, "arrayid": {"type": "string"}, "options": {"type": "string"}}, "required": ["enclosure", "adapter", "slot", "raidlevel", "arrayid", "options"]}}, "attr": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}}, "required": ["name", "partition", "route", "firewall", "controller", "attr"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "redhat", "partition" : [{"device" : "sdd", "mountpoint" : "/redhat", "size" : 23456, "fstype" : "ext4", "options" : ""}], "route" : [{"address" : "250.254.3.0", "gateway" : "250.254.3.1", "subnet" : null, "netmask" : "255.255.255.0", "interface" : "redhat"}], "firewall" : [{"service" : "redhat", "network" : null, "output_network" : null, "chain" : "INPUT", "action" : "ACCEPT", "protocol" : "all", "flags" : null, "comment" : "OS test firewall rule", "table" : "filter", "name" : "ACCEPT-OS"}], "controller" : [{"enclosure" : "1", "adapter" : "1", "slot" : "2", "raidlevel" : "1", "arrayid" : "2", "options" : "redhat"}], "attr" : [{"name" : "redhat_attr", "value" : "redhat_attr"}]}, {"name" : "sles", "partition" : [{"device" : "sdd", "mountpoint" : "/sles", "size" : 23456, "fstype" : "ext4", "options" : ""}], "route" : [{"address" : "250.254.3.0", "gateway" : "250.254.3.1", "subnet" : null, "netmask" : "255.255.255.0", "interface" : "sles"}], "firewall" : [{"service" : "sles", "network" : null, "output_network" : null, "chain" : "INPUT", "action" : "ACCEPT", "protocol" : "all", "flags" : null, "comment" : "OS test firewall rule", "table" : "filter", "name" : "ACCEPT-OS"}], "controller" : [{"enclosure" : "1", "adapter" : "1", "slot" : "2", "raidlevel" : "1", "arrayid" : "2", "options" : "sles"}], "attr" : [{"name" : "sles_attr", "value" : "sles_attr"}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "partition": {"type": "array", "items": {"type": "object", "properties": {"device": {"type": "string"}, "mountpoint": {"type": "string"}, "size": {"type": "integer"}, "fstype": {"type": "string"}, "options": {"type": "string"}}, "required": ["device", "mountpoint", "size", "fstype", "options"]}}, "route": {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}, "gateway": {"type": "string"}, "subnet": {"type": "null"}, "netmask": {"type": "string"}, "interface": {"type": "string"}}, "required": ["address", "gateway", "subnet", "netmask", "interface"]}}, "firewall": {"type": "array", "items": {"type": "object", "properties": {"service": {"type": "string"}, "network": {"type": "null"}, "output_network": {"type": "null"}, "chain": {"type": "string"}, "action": {"type": "string"}, "protocol": {"type": "string"}, "flags": {"type": "null"}, "comment": {"type": "string"}, "table": {"type": "string"}, "name": {"type": "string"}}, "required": ["service", "network", "output_network", "chain", "action", "protocol", "flags", "comment", "table", "name"]}}, "controller": {"type": "array", "items": {"type": "object", "properties": {"enclosure": {"type": "string"}, "adapter": {"type": "string"}, "slot": {"type": "string"}, "raidlevel": {"type": "string"}, "arrayid": {"type": "string"}, "options": {"type": "string"}}, "required": ["enclosure", "adapter", "slot", "raidlevel", "arrayid", "options"]}}, "attr": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}}, "required": ["name", "partition", "route", "firewall", "controller", "attr"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "conquest:block/graywacke_cobble_vertical_slab_4"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible 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" : [[[-72.501961, 44.050448], [-72.499917, 44.055592], [-72.49828, 44.057258], [-72.456006, 44.133085], [-72.443032, 44.128669], [-72.419747, 44.220979], [-72.30498, 44.183149], [-72.331384, 44.092546], [-72.348089, 44.096112], [-72.366771, 44.048529], [-72.367068, 44.045765], [-72.370907, 44.037562], [-72.382189, 44.008176], [-72.440384, 44.028817], [-72.453344, 44.033248], [-72.454935, 44.033099], [-72.470081, 44.039258], [-72.501961, 44.050448]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 76561}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"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" : 43134, "cartId" : "8115f873-0b9c-4385-a216-92482b6d86ff", "preferredProducts" : [2418, 484, 1025, 3851], "productReviews" : [{"productId" : 317, "reviewText" : "talk about pleasure.", "reviewDate" : "2019-02-11T00:28:27.5509871+02:00"}, {"productId" : 3178, "reviewText" : "My neighbor Betha has one of these. She works as a teacher and she says it looks wide.", "reviewDate" : "2018-02-20T04:16:01.7932581+02:00"}, {"productId" : 1046, "reviewText" : "My neighbor Frona has one of these. She works as a gambler and she says it looks bearded.", "reviewDate" : "2019-03-21T12:49:34.5517538+02:00"}, {"productId" : 3167, "reviewText" : "heard about this on wonky radio, decided to give it a try.", "reviewDate" : "2020-04-30T05:41:30.833078+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": "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" : 131039, "date" : "2017-11-27 04:08:56", "user" : "Debouncer", "post" : "50% recurring discount on Basic [blacklist monitoring](https://www.debouncer.com) plans.\r\nCoupon code: LET50\r\n\r\n* 8 hours blacklist check frequency\r\n* 10 monitors - <del>$35</del> $17.50 per year\r\n* 30 monitors - <del>$6.95</del> $3.47 per month\r\n* 50 monitors - <del>$9.95</del> $4.97 per month\r\n\r\n30% recurring discount on Professional [blacklist monitoring](https://www.debouncer.com) plans.\r\nCoupon code: LET30.\r\n\r\n* 4 hours blacklist check frequency\r\n* 100 monitors - <del>$29.95</del> $20.96 per month\r\n* 200 monitors - <del>$49.95</del> $34.96 per month\r\n* 600 monitors - <del>$64.95</del> $34.96 per month\r\n* 1500 monitors - <del>$84.95</del> $59.46 per month\r\n* 3000 monitors - <del>$119.95</del> $83.96 per month\r\n\r\nWebsite: [https://www.debouncer.com](https://www.debouncer.com)\r\n\r\nAll plans include\r\n\r\n* IPv4 addresses and domain names monitoring\r\n* Reverse DNS tests\r\n* [Outlook.com SNDS](https://postmaster.live.com/snds) blacklist, complaint rate and trap hits monitoring (requires [SNDS automated access key](https://postmaster.live.com/snds/auto.aspx))\r\n* 1 year blacklist status history\r\n* Email alerts on listings and delistings, email reports\r\n* API access\r\n\r\n\r\nPricing page: https://www.debouncer.com/prices\r\n\r\nTo secure the discount register free trial account at [https://www.debouncer.com](https://www.debouncer.com) and enter coupon code at checkout.\r\n\r\nPayments accepted via PayPal.\r\nOffer valid through November 28.\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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"vjs-video.js": {"type": "string"}, "vjs-video.min.js": {"type": "string"}}, "required": ["vjs-video.js", "vjs-video.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vjs-video.js" : "sha512-/k8Wr4qP77jQnwpSlS6khWi5BqkSXy5U9cRJDplv7N8YhfCfL9bbNyRWqPYIhvVH2uMesDJ4tZC3R+vRVQb38A==", "vjs-video.min.js" : "sha512-tmGuzs6aTqws2fdNFCrgNA7fDgtekJ0fFodC2VqD7ADtk88jJDYapuVryOd/tONUMBhcpK8FoexOAGIkktDFRA=="}
json_instruct
{"type": "object", "properties": {"vjs-video.js": {"type": "string"}, "vjs-video.min.js": {"type": "string"}}, "required": ["vjs-video.js", "vjs-video.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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" : "INT400", "lang" : "de", "description" : "\nPersonenkraftwagen je 1000 Einwohner\n\nErl\u00e4uterung f\u00fcr folgende Statistik(en):\n99911 Internationale Indikatoren\n\nBegriffsinhalt:\nAls Personenkraftwagen (Pkw) gelten alle zur\nPersonenbef\u00f6rderung vorgesehenen, motorisierten Fahrzeuge\nmit mehr als zwei R\u00e4dern und maximal neun Sitzen\n(einschlie\u00dflich Fahrersitz).\nDie Daten werden von der International Road Federation (IRF)\nerhoben und in der Online Datenbank der Weltbank publiziert.\n\nQuelle:\nEntwicklungsindikatoren, Weltbank\n\nWebseite: http://www.worldbank.org/\n\n\n\u00a9 Statistisches Bundesamt, Wiesbaden 2014", "name" : "Personenkraftwagen je 1000 Einwohner", "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#"}
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" : "embellishcraft:block/marble_button_inventory"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[2001, 6], [2003, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"label": {"type": "string"}, "id": {"type": "string"}, "_sink": {"type": "string"}, "_sinkLabel": {"type": "string"}, "_vertexId": {"type": "string"}, "_vertexLabel": {"type": "string"}, "_isEdge": {"type": "boolean"}, "_rid": {"type": "string"}, "_self": {"type": "string"}, "_etag": {"type": "string"}, "_attachments": {"type": "string"}, "_ts": {"type": "integer"}}, "required": ["label", "id", "_sink", "_sinkLabel", "_vertexId", "_vertexLabel", "_isEdge", "_rid", "_self", "_etag", "_attachments", "_ts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"label" : "seenIn", "id" : "75c73c23-d041-4e03-810f-25d4d9e14df3", "_sink" : "cb9f7508-6519-42c9-a532-e67d5b23a974", "_sinkLabel" : "comic", "_vertexId" : "37385ec6-c732-4fa8-bf9b-50423e567c73", "_vertexLabel" : "hero", "_isEdge" : true, "_rid" : "VyAjAPMRAAD1AwAAAAAAAA==", "_self" : "dbs/VyAjAA==/colls/VyAjAPMRAAA=/docs/VyAjAPMRAAD1AwAAAAAAAA==/", "_etag" : "\"50007fec-0000-0000-0000-595ebb260000\"", "_attachments" : "attachments/", "_ts" : 1499380517}
json_instruct
{"type": "object", "properties": {"label": {"type": "string"}, "id": {"type": "string"}, "_sink": {"type": "string"}, "_sinkLabel": {"type": "string"}, "_vertexId": {"type": "string"}, "_vertexLabel": {"type": "string"}, "_isEdge": {"type": "boolean"}, "_rid": {"type": "string"}, "_self": {"type": "string"}, "_etag": {"type": "string"}, "_attachments": {"type": "string"}, "_ts": {"type": "integer"}}, "required": ["label", "id", "_sink", "_sinkLabel", "_vertexId", "_vertexLabel", "_isEdge", "_rid", "_self", "_etag", "_attachments", "_ts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"definition": {"type": "string"}, "virus_id": {"type": "string"}, "isolate_id": {"type": "string"}, "_id": {"type": "string"}, "host": {"type": "string"}}, "required": ["definition", "virus_id", "isolate_id", "_id", "host"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"definition" : "Raspberry leaf blotch virus segment RNA2, complete genome.", "virus_id" : "d8e4e68a", "isolate_id" : "1dcbc73a", "_id" : "FR823300", "host" : ""}, {"definition" : "Raspberry leaf blotch virus isolate Pittenweem segment RNA8, complete sequence.", "virus_id" : "d8e4e68a", "isolate_id" : "1dcbc73a", "_id" : "KP970124", "host" : "raspberry plant"}, {"definition" : "Raspberry leaf blotch virus isolate Pittenweem segment RNA8, complete sequence.", "virus_id" : "d8e4e68a", "isolate_id" : "1dcbc73a", "_id" : "KP970123", "host" : "raspberry plant"}, {"definition" : "Raspberry leaf blotch virus isolate Pittenweem segment RNA7, complete sequence.", "virus_id" : "d8e4e68a", "isolate_id" : "1dcbc73a", "_id" : "KP970122", "host" : "raspberry plant"}, {"definition" : "Raspberry leaf blotch virus segment RNA1, complete genome.", "virus_id" : "d8e4e68a", "isolate_id" : "1dcbc73a", "_id" : "Fr823299", "host" : ""}, {"definition" : "Raspberry leaf blotch virus isolate Pittenweem segment RNA6, complete sequence.", "virus_id" : "d8e4e68a", "isolate_id" : "1dcbc73a", "_id" : "KP970121", "host" : "raspberry plant"}, {"definition" : "Raspberry leaf blotch virus segment RNA5, complete genome.", "virus_id" : "d8e4e68a", "isolate_id" : "1dcbc73a", "_id" : "FR823303", "host" : ""}, {"definition" : "Raspberry leaf blotch virus segment RNA4, complete genome.", "virus_id" : "d8e4e68a", "isolate_id" : "1dcbc73a", "_id" : "FR823302", "host" : ""}, {"definition" : "Raspberry leaf blotch virus segment RNA3, complete genome.", "virus_id" : "d8e4e68a", "isolate_id" : "1dcbc73a", "_id" : "FR823301", "host" : ""}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"definition": {"type": "string"}, "virus_id": {"type": "string"}, "isolate_id": {"type": "string"}, "_id": {"type": "string"}, "host": {"type": "string"}}, "required": ["definition", "virus_id", "isolate_id", "_id", "host"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id_4622": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_4622"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_4622" : {"publicdate" : "2010-11-25 21:37:56", "title" : "Toilers of the Sea"}}
json_instruct
{"type": "object", "properties": {"id_4622": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_4622"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "7311210008", "district_id" : "7311210", "name" : "OPO"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"country_code": {"type": "string"}, "parents": {"type": "array", "items": {"type": "string"}}, "locale": {"type": "string"}, "subdivisions": {"type": "object", "properties": {"Jingyuan Xian": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Longde Xian": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Pengyang Xian": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Xiji Xian": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Yuanzhou Qu": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}}, "required": ["Jingyuan Xian", "Longde Xian", "Pengyang Xian", "Xiji Xian", "Yuanzhou Qu"]}}, "required": ["country_code", "parents", "locale", "subdivisions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"country_code" : "CN", "parents" : ["CN", "Ningxia Huizuzizhiqu", "Guyuan Shi"], "locale" : "zh-Hans", "subdivisions" : {"Jingyuan Xian" : {"local_code" : "\u6cfe\u6e90\u53bf"}, "Longde Xian" : {"local_code" : "\u9686\u5fb7\u53bf"}, "Pengyang Xian" : {"local_code" : "\u5f6d\u9633\u53bf"}, "Xiji Xian" : {"local_code" : "\u897f\u5409\u53bf"}, "Yuanzhou Qu" : {"local_code" : "\u539f\u5dde\u533a"}}}
json_instruct
{"type": "object", "properties": {"country_code": {"type": "string"}, "parents": {"type": "array", "items": {"type": "string"}}, "locale": {"type": "string"}, "subdivisions": {"type": "object", "properties": {"Jingyuan Xian": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Longde Xian": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Pengyang Xian": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Xiji Xian": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}, "Yuanzhou Qu": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"]}}, "required": ["Jingyuan Xian", "Longde Xian", "Pengyang Xian", "Xiji Xian", "Yuanzhou Qu"]}}, "required": ["country_code", "parents", "locale", "subdivisions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "f01b7b5e3ef8f69588a276ac959a5cb2d8313bde"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"service": {"type": "object", "properties": {"name": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "port": {"type": "integer"}, "checks": {"type": "array", "items": {"type": "object", "properties": {"script": {"type": "string"}, "interval": {"type": "string"}}, "required": ["script", "interval"]}}}, "required": ["name", "tags", "port", "checks"]}}, "required": ["service"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"service" : {"name" : "mongos", "tags" : ["master"], "port" : 27017, "checks" : [{"script" : "/usr/local/bin/check-port 27017", "interval" : "10s"}]}}
json_instruct
{"type": "object", "properties": {"service": {"type": "object", "properties": {"name": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "port": {"type": "integer"}, "checks": {"type": "array", "items": {"type": "object", "properties": {"script": {"type": "string"}, "interval": {"type": "string"}}, "required": ["script", "interval"]}}}, "required": ["name", "tags", "port", "checks"]}}, "required": ["service"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"heading": {"type": "string"}, "headingText": {"type": "string"}, "question": {"type": "string"}, "answer": {"type": "string"}, "noResultsFound": {"type": "string"}, "resetSearch": {"type": "string"}}, "required": ["heading", "headingText", "question", "answer", "noResultsFound", "resetSearch"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"heading" : "# \u5e38\u89c1\u95ee\u9898", "headingText" : "\u6709\u4e00\u4e2a\u95ee\u9898?\u5728\u521b\u5efa\u95ee\u9898\u8868\u4e4b\u524d\uff0c\u8bf7\u68c0\u67e5\u4e00\u4e9b\u5e38\u89c1\u7684\u9519\u8bef\u3002\u5982\u679c\u4f60\u4ecd\u7136\u627e\u4e0d\u5230\u89e3\u51b3\u529e\u6cd5\uff0c\u4f60\u53ef\u4ee5\u5728 Github \u4e0a\u63d0\u4ea4\u4e00\u4e2a [issue](https://issues.vuetifyjs.com) \u6216\u8005\u5728\u6211\u4eec\u7684 [community](https://community.vuetifyjs.com) \u8fdb\u884c\u8be2\u95ee\u3002", "question" : "\u63d0\u95ee:", "answer" : "\u56de\u7b54", "noResultsFound" : "\u6ca1\u627e\u5230\u7ed3\u679c", "resetSearch" : "\u91cd\u7f6e\u641c\u7d22"}
json_instruct
{"type": "object", "properties": {"heading": {"type": "string"}, "headingText": {"type": "string"}, "question": {"type": "string"}, "answer": {"type": "string"}, "noResultsFound": {"type": "string"}, "resetSearch": {"type": "string"}}, "required": ["heading", "headingText", "question", "answer", "noResultsFound", "resetSearch"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Note 10+ 5G", "description" : "A 6.3 inch smartphone/tablet.", "url" : "https://en.wikipedia.org/wiki/Samsung_Galaxy_Note_10"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$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"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "string"}, "license": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"geojson-utils": {"type": "string"}, "jsts": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["geojson-utils", "jsts", "underscore"]}, "devDependencies": {"type": "object", "properties": {"grunt-cli": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-nodeunit": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "load-grunt-tasks": {"type": "string"}, "time-grunt": {"type": "string"}, "grunt-mocha-cli": {"type": "string"}, "jshint-stylish": {"type": "string"}, "browserify": {"type": "string"}, "chai": {"type": "string"}}, "required": ["grunt-cli", "grunt-contrib-jshint", "grunt-contrib-nodeunit", "grunt-contrib-watch", "load-grunt-tasks", "time-grunt", "grunt-mocha-cli", "jshint-stylish", "browserify", "chai"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "browser": {"type": "string"}}, "required": ["test", "browser"]}}, "required": ["name", "version", "description", "author", "repository", "license", "files", "keywords", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "deviationdetective", "version" : "0.1.1", "description" : "Have two geojson lines? Yes? Good! Use this tool to find differences between the two.", "author" : {"name" : "Julien Clifford", "email" : "jcliff90@gmail.com"}, "repository" : "StavroMueller/DeviationDetective", "license" : "MIT", "files" : ["index.js"], "keywords" : ["deviationdetective", "geojson", "line", "deviation", "difference", "split", "gis"], "dependencies" : {"geojson-utils" : "^1.1.0", "jsts" : "^0.15.0", "underscore" : "^1.7.0"}, "devDependencies" : {"grunt-cli" : "^0.1.13", "grunt-contrib-jshint" : "^0.10.0", "grunt-contrib-nodeunit" : "^0.4.1", "grunt-contrib-watch" : "^0.6.1", "load-grunt-tasks" : "^1.0.0", "time-grunt" : "^1.0.0", "grunt-mocha-cli" : "^1.11.0", "jshint-stylish" : "^1.0.0", "browserify" : "^7.0.0", "chai" : "^1.10.0"}, "scripts" : {"test" : "grunt", "browser" : "browserify index.js > browser.js"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "string"}, "license": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"geojson-utils": {"type": "string"}, "jsts": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["geojson-utils", "jsts", "underscore"]}, "devDependencies": {"type": "object", "properties": {"grunt-cli": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-nodeunit": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "load-grunt-tasks": {"type": "string"}, "time-grunt": {"type": "string"}, "grunt-mocha-cli": {"type": "string"}, "jshint-stylish": {"type": "string"}, "browserify": {"type": "string"}, "chai": {"type": "string"}}, "required": ["grunt-cli", "grunt-contrib-jshint", "grunt-contrib-nodeunit", "grunt-contrib-watch", "load-grunt-tasks", "time-grunt", "grunt-mocha-cli", "jshint-stylish", "browserify", "chai"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "browser": {"type": "string"}}, "required": ["test", "browser"]}}, "required": ["name", "version", "description", "author", "repository", "license", "files", "keywords", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-w29x-wmq5-qc5q", "modified" : "2022-05-01T06:38:00Z", "published" : "2022-05-01T06:38:00Z", "aliases" : ["CVE-2006-0197"], "details" : "The XClientMessageEvent struct used in certain components of X.Org 6.8.2 and earlier, possibly including (1) the X server and (2) Xlib, uses a \"long\" specifier for elements of the l array, which results in inconsistent sizes in the struct on 32-bit versus 64-bit platforms, and might allow attackers to cause a denial of service (application crash) and possibly conduct other attacks.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2006-0197"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/archive/1/421256/100/0/threaded"}], "database_specific" : {"cwe_ids" : [], "severity" : "MODERATE", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "scent", "definition" : "1. To perceive by the olfactory organs; to smell; as, to scent game, as a hound does. Methinks I scent the morning air. Shak. 2. To imbue or fill with odor; to perfume. Balm from a silver box distilled around, Shall all bedew the roots, and scent the sacred ground. Dryden.\n\n1. To have a smell. [Obs.] Thunderbolts . . . do scent strongly of brimstone. Holland. 2. To hunt animals by means of the sense of smell.\n\n1. That which, issuing from a body, affects the olfactory organs of animals; odor; smell; as, the scent of an orange, or of a rose; the scent of musk. With lavish hand diffuses scents ambrosial. prior. 2. Specifically, the odor left by an animal on the ground in passing over it; as, dogs find or lose the scent; hence, course of pursuit; track of discovery. He gained the observations of innumerable ages, and traveled upon the same scent into Ethiopia. Sir W. Temple. 3. The power of smelling; the sense of smell; as, a hound of nice scent; to divert the scent. I. Watts."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"expr": {"type": "string"}, "dataset": {"type": "null"}, "bindings": {"type": "object", "properties": {}, "required": []}, "result": {"type": "string"}}, "required": ["expr", "dataset", "bindings", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"expr" : "$replace(\"abracadabra\", /a(.)/, \"a$1$1\")", "dataset" : null, "bindings" : {}, "result" : "abbraccaddabbra"}
json_instruct
{"type": "object", "properties": {"expr": {"type": "string"}, "dataset": {"type": "null"}, "bindings": {"type": "object", "properties": {}, "required": []}, "result": {"type": "string"}}, "required": ["expr", "dataset", "bindings", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"average_occupancy" : [2.8364330564123694, 2.8106232655066536, 2.7406719933124397, 2.758407941396509, 2.7241095874340373, 2.861503012099123, 2.839152184430314, 2.8853969803615556, 2.9028813048805366, 3.058419295635959, 3.0326947526156327, 2.982579781679626, 2.974395639334666, 2.83225399833039, 2.7928340857680993, 2.780998761811707, 2.782217890270955, 2.7050136646286718, 2.716955499629476, 2.768804568892552, 2.709311587364877, 2.7775958391891002, 2.6624151898350017, 2.6795308547149475, 2.6431335227794865, 2.6933325609422507, 2.5833269608349907, 2.5549049260662904, 2.562880009687468, 2.4829931075203815, 2.267614541597107, 2.199639028693475, 2.0833553180450215, 2.113284291808477, 1.9297407082874385, 1.9227980635054671, 13.687598959847277, 1.904009933671889, 2.012636103161747, 2.1131695082195057, 2.252461567848359, 2.284223226286778, 2.3654902697327524, 2.371028959689749, 2.497192719141643, 2.494006688884293, 2.5631254096764797, 2.6551143258624346, 2.79069822678904, 2.7721266643465743, 2.7758543055992204, 2.765549208111814, 2.688141159568407, 2.491433087694617, 2.5315355745656904, 2.725874262751113, 2.9275568579355653, 2.877057639482499, 2.9094590340962942, 2.9869866979844963, 3.0064172158375806, 2.9723816592701695, 2.8592940191006226, 2.870908631680759, 2.923144748682565, 2.874992752626937, 2.805080770106011, 2.7876418790975075, 2.735799439087348, 2.6937035353619714, 2.494523247633631, 2.4988106238757424, 2.630578266163645, 2.8478285299408204, 2.904360515283944]}
json_instruct
{"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"liveServer.settings.port": {"type": "integer"}, "workbench.colorCustomizations": {"type": "object", "properties": {"activityBar.background": {"type": "string"}, "titleBar.activeBackground": {"type": "string"}, "titleBar.activeForeground": {"type": "string"}}, "required": ["activityBar.background", "titleBar.activeBackground", "titleBar.activeForeground"]}, "workbench.editor.enablePreview": {"type": "boolean"}, "workbench.editor.showTabs": {"type": "boolean"}}, "required": ["liveServer.settings.port", "workbench.colorCustomizations", "workbench.editor.enablePreview", "workbench.editor.showTabs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"liveServer.settings.port" : 5501, "workbench.colorCustomizations" : {"activityBar.background" : "#452607", "titleBar.activeBackground" : "#61360A", "titleBar.activeForeground" : "#FEF9F4"}, "workbench.editor.enablePreview" : false, "workbench.editor.showTabs" : true}
json_instruct
{"type": "object", "properties": {"liveServer.settings.port": {"type": "integer"}, "workbench.colorCustomizations": {"type": "object", "properties": {"activityBar.background": {"type": "string"}, "titleBar.activeBackground": {"type": "string"}, "titleBar.activeForeground": {"type": "string"}}, "required": ["activityBar.background", "titleBar.activeBackground", "titleBar.activeForeground"]}, "workbench.editor.enablePreview": {"type": "boolean"}, "workbench.editor.showTabs": {"type": "boolean"}}, "required": ["liveServer.settings.port", "workbench.colorCustomizations", "workbench.editor.enablePreview", "workbench.editor.showTabs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "MultiPolygon", "coordinates" : [[[[5.236, 51.133], [5.253, 51.143], [5.255, 51.146], [5.261, 51.147], [5.28, 51.131], [5.301, 51.106], [5.287, 51.103], [5.275, 51.103], [5.262, 51.099000000000004], [5.257, 51.099000000000004], [5.256, 51.105000000000004], [5.249, 51.11], [5.247, 51.114000000000004], [5.243, 51.113], [5.239, 51.121], [5.248, 51.128], [5.243, 51.129], [5.24, 51.131], [5.241000000000001, 51.132], [5.24, 51.133], [5.236, 51.133]]]]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"], "$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"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "tools", "description" : "A lot of my tools", "license" : null, "starNum" : 66, "folkNum" : 34, "watchNum" : 66, "topic" : []}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"e_id" : "4764", "title" : "\u79d8\u9c81\u5ba3\u5e03\u9000\u51fa\u5b89\u7b2c\u65af\u5171\u540c\u4f53", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u572824\u5e74\u524d\u7684\u4eca\u5929\uff0c1997\u5e744\u670811\u65e5(\u519c\u53861997\u5e743\u67085\u65e5)\uff0c\u79d8\u9c81\u5ba3\u5e03\u9000\u51fa\u5b89\u7b2c\u65af\u5171\u540c\u4f53\u3002\n\t\u5b89\u7b2c\u65af\u5171\u540c\u4f53(\u7b80\u79f0\u201c\u5b89\u5171\u4f53\u201d\uff0cAndeanCommunity)\u6210\u7acb\u4e8e1969\u5e745\u6708\uff0c\u603b\u90e8\u8bbe\u5728\u79d8\u9c81\u9996\u90fd\u5229\u9a6c\u3002\u539f\u79f0\u5b89\u7b2c\u65af\u96c6\u56e2\uff0c1995\u5e749\u67085\u65e5\u5efa\u6210\u5b89\u7b2c\u65af\u4e00\u4f53\u5316\u4f53\u7cfb\uff0c1996\u5e743\u6708\u6539\u4e3a\u73b0\u540d\u3002\u5df4\u62ff\u9a6c\u4e3a\u6c38\u4e45\u89c2\u5bdf\u5458\u56fd\u30021997\u5e744\u670811\u65e5\uff0c\u79d8\u9c81\u5ba3\u5e03\u9000\u51fa\u5b89\u7b2c\u65af\u5171\u540c\u4f53\u3002\n\n\t1997\u5e741\u6708\uff0c5\u56fd\u5916\u957f\u4f1a\u8bae\u8868\u793a\u652f\u6301\u79d8\u9c81\u6709\u5173\u201c\u4eba\u8d28\u4e8b\u4ef6\u201d\u7684\u7acb\u573a\u30024\u6708\u81f36\u6708\uff0c\u79d8\u9c81\u7531\u4e8e\u540c\u5176\u4ed6\u6210\u5458\u56fd\u4e4b\u95f4\u8d38\u6613\u9006\u5dee\u4e25\u91cd\u5e76\u4e14\u5728\u5171\u540c\u5173\u7a0e\u95ee\u9898\u4e0a\u4e0e\u5176\u4ed6\u6210\u5458\u5206\u6b67\u8f83\u5927\uff0c\u4e00\u5ea6\u5ba3\u5e03\u9000\u51fa\u5b89\u5171\u4f53\u3002\u540e\u7ecf\u8c08\u5224\u53cc\u65b9\u76f8\u4e92\u5728\u5173\u7a0e\u95ee\u9898\u4e0a\u4f5c\u4e86\u8ba9\u6b65\uff0c\u79d8\u201c\u9000\u51fa\u98ce\u6ce2\u201d\u6682\u544a\u5e73\u606f\u30028\u67081\u65e5\uff0c\u5b89\u5171\u4f53\u6b63\u5f0f\u5f00\u59cb\u8fd0\u4f5c\u3002", "picNo" : "0", "picUrl" : []}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"stat.flyOneCm": {"type": "integer"}, "stat.walkOneCm": {"type": "integer"}, "stat.jump": {"type": "integer"}, "stat.swimOneCm": {"type": "integer"}, "stat.playOneMinute": {"type": "integer"}, "achievement.openInventory": {"type": "integer"}, "stat.leaveGame": {"type": "integer"}, "stat.crouchOneCm": {"type": "integer"}, "stat.timeSinceDeath": {"type": "integer"}, "stat.sprintOneCm": {"type": "integer"}, "achievement.exploreAllBiomes": {"type": "object", "properties": {"value": {"type": "integer"}, "progress": {"type": "array", "items": {"type": "string"}}}, "required": ["value", "progress"]}}, "required": ["stat.flyOneCm", "stat.walkOneCm", "stat.jump", "stat.swimOneCm", "stat.playOneMinute", "achievement.openInventory", "stat.leaveGame", "stat.crouchOneCm", "stat.timeSinceDeath", "stat.sprintOneCm", "achievement.exploreAllBiomes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"stat.flyOneCm" : 37223, "stat.walkOneCm" : 18952, "stat.jump" : 65, "stat.swimOneCm" : 156, "stat.playOneMinute" : 2654, "achievement.openInventory" : 1, "stat.leaveGame" : 1, "stat.crouchOneCm" : 421, "stat.timeSinceDeath" : 2654, "stat.sprintOneCm" : 7551, "achievement.exploreAllBiomes" : {"value" : 0, "progress" : ["Beach", "Forest", "Plains"]}}
json_instruct
{"type": "object", "properties": {"stat.flyOneCm": {"type": "integer"}, "stat.walkOneCm": {"type": "integer"}, "stat.jump": {"type": "integer"}, "stat.swimOneCm": {"type": "integer"}, "stat.playOneMinute": {"type": "integer"}, "achievement.openInventory": {"type": "integer"}, "stat.leaveGame": {"type": "integer"}, "stat.crouchOneCm": {"type": "integer"}, "stat.timeSinceDeath": {"type": "integer"}, "stat.sprintOneCm": {"type": "integer"}, "achievement.exploreAllBiomes": {"type": "object", "properties": {"value": {"type": "integer"}, "progress": {"type": "array", "items": {"type": "string"}}}, "required": ["value", "progress"]}}, "required": ["stat.flyOneCm", "stat.walkOneCm", "stat.jump", "stat.swimOneCm", "stat.playOneMinute", "achievement.openInventory", "stat.leaveGame", "stat.crouchOneCm", "stat.timeSinceDeath", "stat.sprintOneCm", "achievement.exploreAllBiomes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"editor.fontFamily": {"type": "string"}}, "required": ["editor.fontFamily"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"editor.fontFamily" : "'Menlo', 'monospace', monospace, 'Droid Sans Fallback'"}
json_instruct
{"type": "object", "properties": {"editor.fontFamily": {"type": "string"}}, "required": ["editor.fontFamily"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d963-53", "text" : "~ 3 \u00ab\nstill remained, and remains, tias only mrdoorship^bmed association in odmo*\ntional broadening with all the other fwatAom sad responsibilities which\nthis implies. These functions have been outlined in some detail in previous\nreports to the Foundation, particularly thorn of June 6, 195? md June 26,\n1958.\nSelf-Support Efforts\nOs\u00a9 of the objective of the MB, md of W. K# Kellogg Foundation grants,\nhas been to secure for the Association a permanent basis of self-support. This\nobjective, for the Association as a whole, has been far more difficult to achieve\nthan that of the network. Although progress has been steady, it has been\nslower and more gradual than was anticipated* This progress has been delayed\nby several factors, as outlined in the Report of the BABB Bsrsaanont Financing\nCommittee, forwarded to the Foundation June 6, 1958. It was delayed in part\nby the abundance of free materials and services provided by numerous other\nfhnd-si^ported projects and organisations, which has md\u00ae it difficult, during\nthe lifte of those projects, for the HAEB to charge* for such services and\nmaterials. It has also been rendered slower than we would have wished by the\noverall, economic psossures on educational budgets in the U.S. generally! each\nincrease in dues or network fees by the MSB has been followed by a considerable\nmaster of drop-outs. Consequently, the pace of progress towards self-support 1\nhas been tempered by the application of the law of diminishing returns.\nIt is possible that, if the MB had been satisfied to be an association\nof the few relatively strong institutions Which could pay greatly increased\nfbes, it could now be seXf\u00bbsupporting. But it would not be a truly national\nassociation, with representation from the public schools as well as colleges\nand universities, radio as well as television, md in-school as well as general\nadult education offerings and services. Nor would its programs md objectives"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"COB": {"type": "string"}, "CYTB": {"type": "string"}, "MTCYB": {"type": "string"}, "Complex III subunit 3": {"type": "string"}, "Complex III subunit III": {"type": "string"}, "Cytochrome b-c1 complex subunit 3": {"type": "string"}, "Ubiquinol-cytochrome-c reductase complex cytochrome b subunit": {"type": "string"}, "Q9TUC4": {"type": "string"}, "HSP1_SMIBI": {"type": "string"}, "Sperm protamine P1": {"type": "string"}, "PRM1": {"type": "string"}, "Q9XP87": {"type": "string"}, "CYB_SMIBI": {"type": "string"}, "Cytochrome b": {"type": "string"}, "MT-CYB": {"type": "string"}}, "required": ["COB", "CYTB", "MTCYB", "Complex III subunit 3", "Complex III subunit III", "Cytochrome b-c1 complex subunit 3", "Ubiquinol-cytochrome-c reductase complex cytochrome b subunit", "Q9TUC4", "HSP1_SMIBI", "Sperm protamine P1", "PRM1", "Q9XP87", "CYB_SMIBI", "Cytochrome b", "MT-CYB"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"COB" : "Q9XP87", "CYTB" : "Q9XP87", "MTCYB" : "Q9XP87", "Complex III subunit 3" : "Q9XP87", "Complex III subunit III" : "Q9XP87", "Cytochrome b-c1 complex subunit 3" : "Q9XP87", "Ubiquinol-cytochrome-c reductase complex cytochrome b subunit" : "Q9XP87", "Q9TUC4" : "Q9TUC4", "HSP1_SMIBI" : "Q9TUC4", "Sperm protamine P1" : "Q9TUC4", "PRM1" : "Q9TUC4", "Q9XP87" : "Q9XP87", "CYB_SMIBI" : "Q9XP87", "Cytochrome b" : "Q9XP87", "MT-CYB" : "Q9XP87"}
json_instruct
{"type": "object", "properties": {"COB": {"type": "string"}, "CYTB": {"type": "string"}, "MTCYB": {"type": "string"}, "Complex III subunit 3": {"type": "string"}, "Complex III subunit III": {"type": "string"}, "Cytochrome b-c1 complex subunit 3": {"type": "string"}, "Ubiquinol-cytochrome-c reductase complex cytochrome b subunit": {"type": "string"}, "Q9TUC4": {"type": "string"}, "HSP1_SMIBI": {"type": "string"}, "Sperm protamine P1": {"type": "string"}, "PRM1": {"type": "string"}, "Q9XP87": {"type": "string"}, "CYB_SMIBI": {"type": "string"}, "Cytochrome b": {"type": "string"}, "MT-CYB": {"type": "string"}}, "required": ["COB", "CYTB", "MTCYB", "Complex III subunit 3", "Complex III subunit III", "Cytochrome b-c1 complex subunit 3", "Ubiquinol-cytochrome-c reductase complex cytochrome b subunit", "Q9TUC4", "HSP1_SMIBI", "Sperm protamine P1", "PRM1", "Q9XP87", "CYB_SMIBI", "Cytochrome b", "MT-CYB"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"files": {"type": "object", "properties": {"Cargo.toml": {"type": "string"}, "README.md": {"type": "string"}, "generators/debug_struct_gen.rs": {"type": "string"}, "generators/global_gen.rs": {"type": "string"}, "generators/mod.rs": {"type": "string"}, "generators/static_gen.rs": {"type": "string"}, "generators/static_struct_gen.rs": {"type": "string"}, "generators/struct_gen.rs": {"type": "string"}, "generators/templates/types/egl.rs": {"type": "string"}, "generators/templates/types/gl.rs": {"type": "string"}, "generators/templates/types/glx.rs": {"type": "string"}, "generators/templates/types/wgl.rs": {"type": "string"}, "lib.rs": {"type": "string"}, "registry/mod.rs": {"type": "string"}, "registry/parse.rs": {"type": "string"}}, "required": ["Cargo.toml", "README.md", "generators/debug_struct_gen.rs", "generators/global_gen.rs", "generators/mod.rs", "generators/static_gen.rs", "generators/static_struct_gen.rs", "generators/struct_gen.rs", "generators/templates/types/egl.rs", "generators/templates/types/gl.rs", "generators/templates/types/glx.rs", "generators/templates/types/wgl.rs", "lib.rs", "registry/mod.rs", "registry/parse.rs"]}, "package": {"type": "string"}}, "required": ["files", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files" : {"Cargo.toml" : "f586015aa2816b3c34d89f5e6a6539172efcd7f3ed055a0fab433ea83e2a0f0f", "README.md" : "52d8fee4681c879f2c964fd30e3faf0c907e8bf676eab7b44beab5c5bbd5c284", "generators/debug_struct_gen.rs" : "6fecccf8e57d4be93ea2657328d6e111ca44bc69542a5522cd7360d80ca64630", "generators/global_gen.rs" : "1696013af16bb92a3fa7cf3802a57ec6f7ba460322ede33aa2af30fc9911bd98", "generators/mod.rs" : "100a1da965bf11eaa9fad48a06c7856b60f48363a4a707e34ba97938bedae0b8", "generators/static_gen.rs" : "925a9401e27358a466baadfb660056a24394cf2fa21f5613e2d7f50ab8935e71", "generators/static_struct_gen.rs" : "eb08e6e59b0e0947c4ab263a0749efbb28430c5741634c413a2be011fcdad88f", "generators/struct_gen.rs" : "fa1bcda4501a597922be7c7ef4ad13738536a9c97529996671e264acd709c680", "generators/templates/types/egl.rs" : "d1785a30f1098e101302ba74ba4c22cf95ac44b17edf221dbb9d890f4bd635a2", "generators/templates/types/gl.rs" : "d72f91355febec875c40899a44c5575bd04993f7cf5c6e289eec872a2a161b20", "generators/templates/types/glx.rs" : "f444166d117b96afed2d8d13db6cd3369d6c59704f296e76202269f411bbd4a8", "generators/templates/types/wgl.rs" : "9d626e0959374c694c19a36d4dd34dae2f37acf3cb94e9bd4d242a16b41a970d", "lib.rs" : "6f47da878479b503b5202bda84ad8935607264ac03c0b68203109fad9cd479db", "registry/mod.rs" : "84eed5c113b322e5267b2b130987e6bb726b4e7c38ce50292cd6cc57b8e06994", "registry/parse.rs" : "5cb781082014f143b06ef7d3678f3c4ca59133a5732d4e136fd750b78fb9453f"}, "package" : "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"}
json_instruct
{"type": "object", "properties": {"files": {"type": "object", "properties": {"Cargo.toml": {"type": "string"}, "README.md": {"type": "string"}, "generators/debug_struct_gen.rs": {"type": "string"}, "generators/global_gen.rs": {"type": "string"}, "generators/mod.rs": {"type": "string"}, "generators/static_gen.rs": {"type": "string"}, "generators/static_struct_gen.rs": {"type": "string"}, "generators/struct_gen.rs": {"type": "string"}, "generators/templates/types/egl.rs": {"type": "string"}, "generators/templates/types/gl.rs": {"type": "string"}, "generators/templates/types/glx.rs": {"type": "string"}, "generators/templates/types/wgl.rs": {"type": "string"}, "lib.rs": {"type": "string"}, "registry/mod.rs": {"type": "string"}, "registry/parse.rs": {"type": "string"}}, "required": ["Cargo.toml", "README.md", "generators/debug_struct_gen.rs", "generators/global_gen.rs", "generators/mod.rs", "generators/static_gen.rs", "generators/static_struct_gen.rs", "generators/struct_gen.rs", "generators/templates/types/egl.rs", "generators/templates/types/gl.rs", "generators/templates/types/glx.rs", "generators/templates/types/wgl.rs", "lib.rs", "registry/mod.rs", "registry/parse.rs"]}, "package": {"type": "string"}}, "required": ["files", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"uuid" : "cd69102d-1df4-4694-bb7f-184d99bd2eef", "befores" : [{"name" : "json_groups", "status" : "passed", "start" : 1571387233465, "stop" : 1571387233465}], "start" : 1571387233465, "stop" : 1571387236998}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-rmfm-r95f-f779", "modified" : "2022-05-02T03:43:02Z", "published" : "2022-05-02T03:43:02Z", "aliases" : ["CVE-2009-3240"], "details" : "Cross-site scripting (XSS) vulnerability in the Happy Linux XF-Section module 1.12a for XOOPS allows remote attackers to inject arbitrary web script or HTML via unspecified vectors.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2009-3240"}, {"type" : "WEB", "url" : "http://jvn.jp/en/jp/JVN00425482/index.html"}, {"type" : "WEB", "url" : "http://jvndb.jvn.jp/en/contents/2009/JVNDB-2009-000062.html"}, {"type" : "WEB", "url" : "http://linux.ohwada.jp/modules/smartsection/item.php?itemid=458"}], "database_specific" : {"cwe_ids" : ["CWE-79"], "severity" : "MODERATE", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "license": {"type": "array", "items": {"type": "object", "properties": {"spdx": {"type": "string"}, "licenseURL": {"type": "string"}}, "required": ["spdx", "licenseURL"]}}, "SDGs": {"type": "array", "items": {"type": "object", "properties": {"SDGNumber": {"type": "integer"}, "evidenceURL": {"type": "string"}}, "required": ["SDGNumber", "evidenceURL"]}}, "type": {"type": "array", "items": {"type": "string"}}, "repositoryURL": {"type": "string"}, "organizations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "org_type": {"type": "string"}}, "required": ["name", "website", "org_type"]}}, "stage": {"type": "string"}}, "required": ["name", "description", "website", "license", "SDGs", "type", "repositoryURL", "organizations", "stage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Autonomous Power Interchange System", "description" : "By accommodating P2P energy sharing between distributed batteries, it is possible to build a microgrid that utilizes variable renewable energy(VRE) as the main power source and enhances the resilience of the power system. These distributed batteries absorb fluctuations of VRE generation and improve community self-sufficiency by balancing supply and demand within the community.", "website" : "https://www.sonycsl.co.jp/tokyo/11481/", "license" : [{"spdx" : "Apache-2.0", "licenseURL" : "https://github.com/SonyCSL/APIS/blob/master/LICENSE"}], "SDGs" : [{"SDGNumber" : 7, "evidenceURL" : "https://www.sonycsl.co.jp/tokyo/11481/"}, {"SDGNumber" : 13, "evidenceURL" : "https://www.sonycsl.co.jp/tokyo/11481/"}], "type" : ["software"], "repositoryURL" : "https://github.com/SonyCSL/APIS", "organizations" : [{"name" : "Sony Computer Science Laboratories, Inc.", "website" : "https://www.sonycsl.co.jp/", "org_type" : "owner"}], "stage" : "nominee"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "license": {"type": "array", "items": {"type": "object", "properties": {"spdx": {"type": "string"}, "licenseURL": {"type": "string"}}, "required": ["spdx", "licenseURL"]}}, "SDGs": {"type": "array", "items": {"type": "object", "properties": {"SDGNumber": {"type": "integer"}, "evidenceURL": {"type": "string"}}, "required": ["SDGNumber", "evidenceURL"]}}, "type": {"type": "array", "items": {"type": "string"}}, "repositoryURL": {"type": "string"}, "organizations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "org_type": {"type": "string"}}, "required": ["name", "website", "org_type"]}}, "stage": {"type": "string"}}, "required": ["name", "description", "website", "license", "SDGs", "type", "repositoryURL", "organizations", "stage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}}, "required": ["already_configured"]}, "error": {"type": "object", "properties": {"cannot_connect": {"type": "string"}}, "required": ["cannot_connect"]}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "string"}}, "required": ["host", "port"]}, "title": {"type": "string"}}, "required": ["data", "title"]}}, "required": ["user"]}}, "required": ["abort", "error", "step"]}, "options": {"type": "object", "properties": {"error": {"type": "object", "properties": {"device_not_selected": {"type": "string"}}, "required": ["device_not_selected"]}, "step": {"type": "object", "properties": {"configure_device": {"type": "object", "properties": {"data": {"type": "object", "properties": {"precision": {"type": "string"}}, "required": ["precision"]}, "description": {"type": "string"}, "title": {"type": "string"}}, "required": ["data", "description", "title"]}, "device_selection": {"type": "object", "properties": {"data": {"type": "object", "properties": {"clear_device_options": {"type": "string"}, "device_selection": {"type": "string"}}, "required": ["clear_device_options", "device_selection"]}, "description": {"type": "string"}, "title": {"type": "string"}}, "required": ["data", "description", "title"]}}, "required": ["configure_device", "device_selection"]}}, "required": ["error", "step"]}}, "required": ["config", "options"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"config" : {"abort" : {"already_configured" : "Perangkat sudah dikonfigurasi"}, "error" : {"cannot_connect" : "Gagal terhubung"}, "step" : {"user" : {"data" : {"host" : "Host", "port" : "Port"}, "title" : "Setel detail server"}}}, "options" : {"error" : {"device_not_selected" : "Pilih perangkat untuk dikonfigurasi"}, "step" : {"configure_device" : {"data" : {"precision" : "Presisi Sensor"}, "description" : "Pilih presisi sensor untuk {sensor_id}", "title" : "Presisi Sensor OneWire"}, "device_selection" : {"data" : {"clear_device_options" : "Hapus semua konfigurasi perangkat", "device_selection" : "Pilih perangkat untuk dikonfigurasi"}, "description" : "Pilih langkah konfigurasi apa yang akan diproses", "title" : "Opsi Perangkat OneWire"}}}}
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}}, "required": ["already_configured"]}, "error": {"type": "object", "properties": {"cannot_connect": {"type": "string"}}, "required": ["cannot_connect"]}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "string"}}, "required": ["host", "port"]}, "title": {"type": "string"}}, "required": ["data", "title"]}}, "required": ["user"]}}, "required": ["abort", "error", "step"]}, "options": {"type": "object", "properties": {"error": {"type": "object", "properties": {"device_not_selected": {"type": "string"}}, "required": ["device_not_selected"]}, "step": {"type": "object", "properties": {"configure_device": {"type": "object", "properties": {"data": {"type": "object", "properties": {"precision": {"type": "string"}}, "required": ["precision"]}, "description": {"type": "string"}, "title": {"type": "string"}}, "required": ["data", "description", "title"]}, "device_selection": {"type": "object", "properties": {"data": {"type": "object", "properties": {"clear_device_options": {"type": "string"}, "device_selection": {"type": "string"}}, "required": ["clear_device_options", "device_selection"]}, "description": {"type": "string"}, "title": {"type": "string"}}, "required": ["data", "description", "title"]}}, "required": ["configure_device", "device_selection"]}}, "required": ["error", "step"]}}, "required": ["config", "options"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"slug": {"type": "string"}, "relevant-countries": {"type": "array", "items": {"type": "string"}}, "categories": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}, "fax": {"type": "string"}, "email": {"type": "string"}, "web": {"type": "string"}, "sources": {"type": "array", "items": {"type": "string"}}, "quality": {"type": "string"}}, "required": ["slug", "relevant-countries", "categories", "name", "address", "phone", "fax", "email", "web", "sources", "quality"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"slug" : "ludwigvonkapff", "relevant-countries" : ["de"], "categories" : ["commerce"], "name" : "Ludwig von Kapff GmbH", "address" : "Speicher I\nKonsul-Smidt-Str. 8 J\n28217 Bremen\nDeutschland", "phone" : "+49 421 3994317", "fax" : "+49 421 3994301", "email" : "datenschutz@egfra.de", "web" : "https://www.ludwig-von-kapff.de/", "sources" : ["https://www.ludwig-von-kapff.de/impressum", "https://www.ludwig-von-kapff.de/datenschutz"], "quality" : "verified"}
json_instruct
{"type": "object", "properties": {"slug": {"type": "string"}, "relevant-countries": {"type": "array", "items": {"type": "string"}}, "categories": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}, "fax": {"type": "string"}, "email": {"type": "string"}, "web": {"type": "string"}, "sources": {"type": "array", "items": {"type": "string"}}, "quality": {"type": "string"}}, "required": ["slug", "relevant-countries", "categories", "name", "address", "phone", "fax", "email", "web", "sources", "quality"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[259.27289187243235, 381.3359662869], [312.21431747914113, 345.33579687433803], [365.15574308584985, 326.2768836559228], [428.6854538139004, 360.15939604421646], [451.97968108085223, 400.3948795053152], [481.6268794206091, 459.68927618482894], [500.6857926390242, 491.4541315488541], [443.5090529837788, 529.5719579856845], [456.2149951293889, 580.3957265681249], [422.3324827410953, 610.0429249078818]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"C_Cpp.default.includePath": {"type": "array", "items": {"type": "string"}}}, "required": ["C_Cpp.default.includePath"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"C_Cpp.default.includePath" : ["/opt/flix/include", "${workspaceFolder}"]}
json_instruct
{"type": "object", "properties": {"C_Cpp.default.includePath": {"type": "array", "items": {"type": "string"}}}, "required": ["C_Cpp.default.includePath"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "repository": {"type": "string"}, "buildpacks": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "env": {"type": "object", "properties": {"SLACK_URL": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["SLACK_URL"]}}, "required": ["name", "repository", "buildpacks", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "delilah", "repository" : "https://github.com/evuez/delilah", "buildpacks" : [{"url" : "https://github.com/mfine/heroku-buildpack-stack.git"}], "env" : {"SLACK_URL" : {"description" : "A Slack Incoming Webhook URL"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "repository": {"type": "string"}, "buildpacks": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "env": {"type": "object", "properties": {"SLACK_URL": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["SLACK_URL"]}}, "required": ["name", "repository", "buildpacks", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"api": {"type": "string"}, "model": {"type": "string"}, "modelDescription": {"type": "string"}, "modelOnly": {"type": "boolean"}, "modelFields": {"type": "array", "items": {"type": "object", "properties": {"identifier": {"type": "string"}, "goType": {"type": "string"}}, "required": ["identifier", "goType"]}}}, "required": ["api", "model", "modelDescription", "modelOnly", "modelFields"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"api" : "twitter", "model" : "meta", "modelDescription" : "Meta holds metadata concerning requests", "modelOnly" : true, "modelFields" : [{"identifier" : "result_count", "goType" : "int"}]}
json_instruct
{"type": "object", "properties": {"api": {"type": "string"}, "model": {"type": "string"}, "modelDescription": {"type": "string"}, "modelOnly": {"type": "boolean"}, "modelFields": {"type": "array", "items": {"type": "object", "properties": {"identifier": {"type": "string"}, "goType": {"type": "string"}}, "required": ["identifier", "goType"]}}}, "required": ["api", "model", "modelDescription", "modelOnly", "modelFields"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"mdb_source_id": {"type": "integer"}, "data_type": {"type": "string"}, "provider": {"type": "string"}, "location": {"type": "object", "properties": {"country_code": {"type": "string"}, "subdivision_name": {"type": "string"}, "bounding_box": {"type": "object", "properties": {"minimum_latitude": {"type": "number"}, "maximum_latitude": {"type": "number"}, "minimum_longitude": {"type": "number"}, "maximum_longitude": {"type": "number"}, "extracted_on": {"type": "string"}}, "required": ["minimum_latitude", "maximum_latitude", "minimum_longitude", "maximum_longitude", "extracted_on"]}}, "required": ["country_code", "subdivision_name", "bounding_box"]}, "urls": {"type": "object", "properties": {"direct_download": {"type": "string"}, "latest": {"type": "string"}}, "required": ["direct_download", "latest"]}}, "required": ["mdb_source_id", "data_type", "provider", "location", "urls"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"mdb_source_id" : 1003, "data_type" : "gtfs", "provider" : "TRAM", "location" : {"country_code" : "ES", "subdivision_name" : "Barcelona", "bounding_box" : {"minimum_latitude" : 41.356672, "maximum_latitude" : 41.392206, "minimum_longitude" : 2.053372, "maximum_longitude" : 2.143175, "extracted_on" : "2022-03-17T19:32:13+00:00"}}, "urls" : {"direct_download" : "https://opendata.tram.cat/GTFS/zip/TBX.zip", "latest" : "https://storage.googleapis.com/storage/v1/b/mdb-latest/o/es-barcelona-tram-gtfs-1003.zip?alt=media"}}
json_instruct
{"type": "object", "properties": {"mdb_source_id": {"type": "integer"}, "data_type": {"type": "string"}, "provider": {"type": "string"}, "location": {"type": "object", "properties": {"country_code": {"type": "string"}, "subdivision_name": {"type": "string"}, "bounding_box": {"type": "object", "properties": {"minimum_latitude": {"type": "number"}, "maximum_latitude": {"type": "number"}, "minimum_longitude": {"type": "number"}, "maximum_longitude": {"type": "number"}, "extracted_on": {"type": "string"}}, "required": ["minimum_latitude", "maximum_latitude", "minimum_longitude", "maximum_longitude", "extracted_on"]}}, "required": ["country_code", "subdivision_name", "bounding_box"]}, "urls": {"type": "object", "properties": {"direct_download": {"type": "string"}, "latest": {"type": "string"}}, "required": ["direct_download", "latest"]}}, "required": ["mdb_source_id", "data_type", "provider", "location", "urls"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {"type": "object", "properties": {"hash": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "transactionIndex": {"type": "integer"}, "confirmations": {"type": "null"}, "from": {"type": "string"}, "gasPrice": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "nonce": {"type": "integer"}, "data": {"type": "string"}, "r": {"type": "string"}, "s": {"type": "string"}, "v": {"type": "integer"}, "creates": {"type": "null"}, "raw": {"type": "string"}, "networkId": {"type": "integer"}, "chainId": {"type": "integer"}}, "required": ["hash", "blockHash", "blockNumber", "transactionIndex", "confirmations", "from", "gasPrice", "gasLimit", "to", "value", "nonce", "data", "r", "s", "v", "creates", "raw", "networkId", "chainId"]}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x6b85030771c5d133e75d5aca096dde3c5ebc17df42fcaf02b415fc01a6a0e109", "parentHash" : "0xc89698073a58fb753d1949177bf3f220d8aba8c91d2257fa2f29a59769398f9e", "number" : 75979, "timestamp" : 1439412905, "nonce" : "0xf61c49da0caf7ebf", "difficulty" : 2230920386607, "gasLimit" : {"_hex" : "0x2fefd5"}, "gasUsed" : {"_hex" : "0xa09a"}, "miner" : "0x3222BA3F3e79eA0e31467EEE7639B57923558cCD", "extraData" : "0x", "transactions" : [{"hash" : "0x99986633af6796a358a1db71f654aea2863554fb9837df5dbff3d85ffe662176", "blockHash" : "0x6b85030771c5d133e75d5aca096dde3c5ebc17df42fcaf02b415fc01a6a0e109", "blockNumber" : 75979, "transactionIndex" : 0, "confirmations" : null, "from" : "0x0e320219838E859b2F9f18B72e3d4073cA50B37D", "gasPrice" : {"_hex" : "0xde189e32c"}, "gasLimit" : {"_hex" : "0x2dc6c0"}, "to" : "0x35E57F2b08596f1946ECD9D31975eC3c2D7e1C1D", "value" : {"_hex" : "0x8ac7230489e80000"}, "nonce" : 3, "data" : "0x", "r" : "0x93394cacbec3ff2524f284213318e990033f42408cc32a222b75387000a34e48", "s" : "0x4f2d395fa9758edd1495ae4c5c182af9e177ff2266b2d3809f426da79aff9ee5", "v" : 28, "creates" : null, "raw" : "0xf86d03850de189e32c832dc6c09435e57f2b08596f1946ecd9d31975ec3c2d7e1c1d888ac7230489e80000801ca093394cacbec3ff2524f284213318e990033f42408cc32a222b75387000a34e48a04f2d395fa9758edd1495ae4c5c182af9e177ff2266b2d3809f426da79aff9ee5", "networkId" : 0, "chainId" : 0}]}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {"type": "object", "properties": {"hash": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "transactionIndex": {"type": "integer"}, "confirmations": {"type": "null"}, "from": {"type": "string"}, "gasPrice": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "nonce": {"type": "integer"}, "data": {"type": "string"}, "r": {"type": "string"}, "s": {"type": "string"}, "v": {"type": "integer"}, "creates": {"type": "null"}, "raw": {"type": "string"}, "networkId": {"type": "integer"}, "chainId": {"type": "integer"}}, "required": ["hash", "blockHash", "blockNumber", "transactionIndex", "confirmations", "from", "gasPrice", "gasLimit", "to", "value", "nonce", "data", "r", "s", "v", "creates", "raw", "networkId", "chainId"]}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"contractId": {"type": "string"}, "contractLayerId": {"type": "string"}, "contractScopeCode": {"type": "string"}, "contractCedantCode": {"type": "string"}, "reinsurerCode": {"type": "string"}, "underwriterShortName": {"type": "string"}, "producerShortName": {"type": "string"}, "branchShortName": {"type": "string"}, "brokerShortName": {"type": "string"}}, "required": ["contractId", "contractLayerId", "contractScopeCode", "contractCedantCode", "reinsurerCode", "underwriterShortName", "producerShortName", "branchShortName", "brokerShortName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contractId" : "Long", "contractLayerId" : "Long", "contractScopeCode" : "String", "contractCedantCode" : "String", "reinsurerCode" : "String", "underwriterShortName" : "String", "producerShortName" : "String", "branchShortName" : "String", "brokerShortName" : "String"}
json_instruct
{"type": "object", "properties": {"contractId": {"type": "string"}, "contractLayerId": {"type": "string"}, "contractScopeCode": {"type": "string"}, "contractCedantCode": {"type": "string"}, "reinsurerCode": {"type": "string"}, "underwriterShortName": {"type": "string"}, "producerShortName": {"type": "string"}, "branchShortName": {"type": "string"}, "brokerShortName": {"type": "string"}}, "required": ["contractId", "contractLayerId", "contractScopeCode", "contractCedantCode", "reinsurerCode", "underwriterShortName", "producerShortName", "branchShortName", "brokerShortName"], "$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"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start", "postinstall"]}, "dependencies": {"type": "object", "properties": {"jspm": {"type": "string"}}, "required": ["jspm"]}, "jspm": {"type": "object", "properties": {"directories": {"type": "object", "properties": {"packages": {"type": "string"}}, "required": ["packages"]}, "dependencies": {"type": "object", "properties": {"d3": {"type": "string"}, "d3-jsnext": {"type": "string"}, "fetch": {"type": "string"}, "group-by": {"type": "string"}, "guid": {"type": "string"}, "hg-framework": {"type": "string"}, "localforage": {"type": "string"}, "moment": {"type": "string"}, "numeral": {"type": "string"}, "palantir/plottable.git": {"type": "string"}, "react": {"type": "string"}, "react-chartjs": {"type": "string"}}, "required": ["d3", "d3-jsnext", "fetch", "group-by", "guid", "hg-framework", "localforage", "moment", "numeral", "palantir/plottable.git", "react", "react-chartjs"]}, "devDependencies": {"type": "object", "properties": {"babel": {"type": "string"}, "babel-runtime": {"type": "string"}, "core-js": {"type": "string"}}, "required": ["babel", "babel-runtime", "core-js"]}}, "required": ["directories", "dependencies", "devDependencies"]}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}}, "required": ["browser-sync"]}}, "required": ["name", "version", "description", "author", "license", "scripts", "dependencies", "jspm", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "reacting-to-react", "version" : "1.0.0", "description" : "A little experiment with React", "author" : "Steve Thomson <organicpanda@gmail.com>", "license" : "MIT", "scripts" : {"start" : "browser-sync start --files \"**/*.*\" --server --no-open --no-ui --no-inject-changes --no-notify", "postinstall" : "jspm install"}, "dependencies" : {"jspm" : "^0.15.4"}, "jspm" : {"directories" : {"packages" : "vendor"}, "dependencies" : {"d3" : "npm:d3@^3.5.6", "d3-jsnext" : "npm:d3-jsnext@^3.5.5", "fetch" : "npm:whatwg-fetch@^0.7.0", "group-by" : "npm:group-by@^0.0.1", "guid" : "npm:guid@^0.0.12", "hg-framework" : "github:HHogg/hg-framework@master", "localforage" : "npm:localforage@^1.2.2", "moment" : "npm:moment@^2.10.3", "numeral" : "npm:numeral@^1.5.3", "palantir/plottable.git" : "github:palantir/plottable@^1.8.0", "react" : "npm:react@^0.13.2", "react-chartjs" : "npm:react-chartjs@^0.6.0"}, "devDependencies" : {"babel" : "npm:babel-core@^5.1.11", "babel-runtime" : "npm:babel-runtime@^5.1.11", "core-js" : "npm:core-js@^0.9.4"}}, "devDependencies" : {"browser-sync" : "^2.8.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start", "postinstall"]}, "dependencies": {"type": "object", "properties": {"jspm": {"type": "string"}}, "required": ["jspm"]}, "jspm": {"type": "object", "properties": {"directories": {"type": "object", "properties": {"packages": {"type": "string"}}, "required": ["packages"]}, "dependencies": {"type": "object", "properties": {"d3": {"type": "string"}, "d3-jsnext": {"type": "string"}, "fetch": {"type": "string"}, "group-by": {"type": "string"}, "guid": {"type": "string"}, "hg-framework": {"type": "string"}, "localforage": {"type": "string"}, "moment": {"type": "string"}, "numeral": {"type": "string"}, "palantir/plottable.git": {"type": "string"}, "react": {"type": "string"}, "react-chartjs": {"type": "string"}}, "required": ["d3", "d3-jsnext", "fetch", "group-by", "guid", "hg-framework", "localforage", "moment", "numeral", "palantir/plottable.git", "react", "react-chartjs"]}, "devDependencies": {"type": "object", "properties": {"babel": {"type": "string"}, "babel-runtime": {"type": "string"}, "core-js": {"type": "string"}}, "required": ["babel", "babel-runtime", "core-js"]}}, "required": ["directories", "dependencies", "devDependencies"]}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}}, "required": ["browser-sync"]}}, "required": ["name", "version", "description", "author", "license", "scripts", "dependencies", "jspm", "devDependencies"], "$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"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:ru": {"type": "string"}}, "required": ["name:ru"]}}, "required": ["localname", "official_name", "alltags"]}}, "required": ["name", "iso2", "admin_level", "osm_id", "wikidata_id", "wikipedia_id", "population", "countrylevel_id", "osm_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"name" : "Amatas novads", "iso2" : "LV-008", "admin_level" : 6, "osm_id" : 1781275, "wikidata_id" : "Q1892063", "wikipedia_id" : "lv:Amatas novads", "population" : 4983, "countrylevel_id" : "iso2:LV-008", "osm_data" : {"localname" : "Amatas novads", "official_name" : "", "alltags" : {"name:ru" : "\u0410\u043c\u0430\u0442\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439"}}}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[25.092, 57.122], [25.131, 57.001], [25.146, 56.95], [25.451, 56.991], [25.554, 57.153], [25.214, 57.297], [25.078, 57.258], [25.092, 57.122]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:ru": {"type": "string"}}, "required": ["name:ru"]}}, "required": ["localname", "official_name", "alltags"]}}, "required": ["name", "iso2", "admin_level", "osm_id", "wikidata_id", "wikipedia_id", "population", "countrylevel_id", "osm_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "\u4e00\u9a0e\u5f53\u5343", "author" : "Kuroiro", "description" : "\u4e00\u9a0e\u5f53\u5343", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/33278/thumbnail-33278_0001.jpg?itok=Cssy7kW6", "download" : "https://www.iwara.tv/api/video/36qgtnrqtqq447b", "origin" : "https://www.iwara.tv/videos/36qgtnrqtqq447b"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "value": {"type": "object", "properties": {"type": {"type": "string"}, "x": {"type": "integer"}, "y": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "bitmap": {"type": "string"}}, "required": ["type", "x", "y", "width", "height", "bitmap"]}}, "required": ["type", "name", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "custom", "name" : "example", "value" : {"type" : "image", "x" : 50, "y" : 50, "width" : 160, "height" : 96, "bitmap" : "doge"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "value": {"type": "object", "properties": {"type": {"type": "string"}, "x": {"type": "integer"}, "y": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "bitmap": {"type": "string"}}, "required": ["type", "x", "y", "width", "height", "bitmap"]}}, "required": ["type", "name", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "numcustomers": {"type": "integer"}, "numfacilities": {"type": "integer"}, "cost": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "req": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "cap": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "numcustomers", "numfacilities", "cost", "req", "cap"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "gap4_4", "numcustomers" : 30, "numfacilities" : 5, "cost" : [[15, 20, 23, 10, 16, 20, 20, 24, 13, 13, 11, 11, 15, 16, 18, 17, 17, 19, 20, 10, 15, 17, 12, 17, 15, 23, 22, 23, 25, 16], [18, 23, 19, 11, 14, 20, 20, 13, 20, 11, 13, 24, 14, 16, 18, 19, 19, 14, 16, 12, 11, 16, 12, 23, 12, 19, 10, 10, 22, 20], [15, 23, 11, 19, 11, 13, 16, 21, 23, 24, 13, 15, 18, 24, 21, 23, 21, 20, 25, 19, 15, 18, 17, 21, 23, 10, 11, 20, 15, 17], [18, 24, 11, 21, 22, 11, 23, 11, 16, 12, 20, 21, 15, 10, 16, 24, 20, 19, 22, 19, 24, 25, 15, 24, 19, 18, 21, 20, 15, 23], [25, 16, 21, 13, 12, 12, 16, 17, 11, 21, 22, 12, 21, 13, 20, 22, 12, 21, 14, 20, 23, 13, 25, 10, 10, 20, 12, 19, 23, 14]], "req" : [[25, 9, 15, 24, 12, 14, 23, 13, 17, 15, 17, 15, 21, 23, 16, 23, 15, 18, 7, 16, 18, 10, 6, 24, 21, 8, 10, 16, 7, 7], [8, 20, 11, 9, 13, 6, 13, 13, 12, 24, 17, 9, 13, 17, 11, 15, 10, 24, 6, 20, 16, 14, 23, 12, 11, 11, 22, 8, 9, 12], [21, 7, 14, 8, 6, 18, 11, 18, 18, 10, 21, 9, 20, 20, 15, 20, 7, 17, 14, 8, 14, 12, 21, 19, 24, 21, 16, 5, 19, 17], [14, 20, 9, 14, 17, 8, 8, 9, 20, 17, 9, 19, 7, 15, 12, 12, 16, 22, 20, 5, 15, 16, 18, 8, 22, 24, 21, 22, 12, 7], [20, 7, 5, 10, 13, 7, 8, 21, 19, 16, 12, 20, 16, 8, 18, 17, 23, 6, 12, 10, 22, 24, 6, 20, 8, 9, 17, 8, 24, 22]], "cap" : [74, 65, 72, 70, 68]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "numcustomers": {"type": "integer"}, "numfacilities": {"type": "integer"}, "cost": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "req": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "cap": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "numcustomers", "numfacilities", "cost", "req", "cap"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "null"}, "url": {"type": "null"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "simpleeval", "description" : "Simple Safe Sandboxed Extensible Expression Evaluator for Python", "license" : {"key" : "other", "name" : "Other", "spdx_id" : null, "url" : null}, "starNum" : 75, "folkNum" : 16, "watchNum" : 75, "topic" : ["evaluation", "library", "python"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "null"}, "url": {"type": "null"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"xbox": {"type": "integer"}, "ps": {"type": "integer"}}, "required": ["xbox", "ps"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"xbox" : 25719, "ps" : 32901}
json_instruct
{"type": "object", "properties": {"xbox": {"type": "integer"}, "ps": {"type": "integer"}}, "required": ["xbox", "ps"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"category": {"type": "string"}, "subcategory": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "providedby": {"type": "string"}}, "required": ["category", "subcategory", "title", "description", "image", "providedby"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"category" : "Japanese tea in daily life", "subcategory" : "Outdoor", "title" : "Plucking tea leaves together", "description" : "Adults and children trying out plucking tea leaves together.", "image" : "https://nihon-cha.or.jp/dbpath/images/120101000020.jpg", "providedby" : "Shizuoka City Government"}
json_instruct
{"type": "object", "properties": {"category": {"type": "string"}, "subcategory": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "providedby": {"type": "string"}}, "required": ["category", "subcategory", "title", "description", "image", "providedby"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"env": {"type": "string"}}, "required": ["env"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"env" : "all"}
json_instruct
{"type": "object", "properties": {"env": {"type": "string"}}, "required": ["env"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"1": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "2": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "3": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "4": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "5": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "6": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["1", "2", "3", "4", "5", "6"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["type", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "minecraft:crafting_shaped", "pattern" : [" 1 ", "2 3", "456"], "key" : {"1" : {"item" : "minecraft:diamond_sword"}, "2" : {"item" : "minecraft:diamond_axe"}, "3" : {"item" : "minecraft:diamond_pickaxe"}, "4" : {"item" : "minecraft:diamond_hoe"}, "5" : {"item" : "minecraft:shears"}, "6" : {"item" : "minecraft:diamond_shovel"}}, "result" : {"item" : "random_content:diamond_multitool"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"1": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "2": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "3": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "4": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "5": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "6": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["1", "2", "3", "4", "5", "6"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["type", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"description": {"type": "string"}, "etag": {"type": "string"}, "includedPermissions": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "stage": {"type": "string"}, "title": {"type": "string"}}, "required": ["description", "etag", "includedPermissions", "name", "stage", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "This role is managed by Dell EMC, not Google.", "etag" : "AA==", "includedPermissions" : ["cloudonefs.isiloncloud.com/clusters.get", "cloudonefs.isiloncloud.com/clusters.list", "cloudonefs.isiloncloud.com/fileshares.get", "cloudonefs.isiloncloud.com/fileshares.list", "resourcemanager.projects.get", "resourcemanager.projects.list"], "name" : "roles/dellemccloudonefs.viewer", "stage" : "BETA", "title" : "Dell EMC Cloud OneFS Viewer"}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "etag": {"type": "string"}, "includedPermissions": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "stage": {"type": "string"}, "title": {"type": "string"}}, "required": ["description", "etag", "includedPermissions", "name", "stage", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"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" : "27020", "place_name" : "Abastos", "place_type" : "Colonia", "county" : "Torre\u00f3n", "state" : "Coahuila de Zaragoza", "city" : "Torre\u00f3n"}, {"postal_code" : "27020", "place_name" : "Santa Mar\u00eda", "place_type" : "Colonia", "county" : "Torre\u00f3n", "state" : "Coahuila de Zaragoza", "city" : "Torre\u00f3n"}]
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": {"OverworldNotToScale": {"type": "array", "items": {"type": "string"}}}, "required": ["OverworldNotToScale"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"OverworldNotToScale" : ["RPG", "TropeCodifier", "ChokepointGeography", "SequenceBreaking", "RandomEncounters", "TraumaInn", "TravellingAtTheSpeedOfPlot", "SavePoint", "RandomEncounters", "WarpWhistle", "GlobalAirship", "DarkWorld", "AnotherDimension", "TimeTravel", "AlternateWorldMap", "TheOverworld", "PointAndClickMap", "RiskStyleMap", "UnitsNotToScale", "StrategyGame", "ThrivingGhostTown", "FantasyWorldMap", "ConstructedWorld", "TropeMaker", "RPGElements", "TropeCodifier", "WarpWhistle", "GlobalAirship", "PointAndClickMap", "NonPlayerCharacter", "VideoGameGeography", "RandomEncounters", "PointAndClickMap", "FloatingContinent", "CoolBoat", "GlobalAirship", "TeleportationTropes", "VeryDefinitelyFinalDungeon", "Homage", "ImpliedTrope", "NonPlayerCharacter", "WalkingTheEarth", "ChokepointGeography", "CoolStarship", "Justified"]}
json_instruct
{"type": "object", "properties": {"OverworldNotToScale": {"type": "array", "items": {"type": "string"}}}, "required": ["OverworldNotToScale"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"canvas": {"type": "string"}, "excel": {"type": "string"}, "excel-parser": {"type": "string"}, "express": {"type": "string"}, "grunt": {"type": "string"}, "grunt-concurrent": {"type": "string"}, "grunt-contrib-coffee": {"type": "string"}, "grunt-contrib-copy": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-develop": {"type": "string"}, "grunt-nodemon": {"type": "string"}, "jade": {"type": "string"}, "mongoose": {"type": "string"}, "msexcel-builder": {"type": "string"}, "node-xlsx": {"type": "string"}, "qrcode": {"type": "string"}, "request": {"type": "string"}, "socket.io": {"type": "string"}, "vcards-js": {"type": "string"}, "websocket": {"type": "string"}, "ws": {"type": "string"}}, "required": ["canvas", "excel", "excel-parser", "express", "grunt", "grunt-concurrent", "grunt-contrib-coffee", "grunt-contrib-copy", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-develop", "grunt-nodemon", "jade", "mongoose", "msexcel-builder", "node-xlsx", "qrcode", "request", "socket.io", "vcards-js", "websocket", "ws"]}}, "required": ["name", "version", "private", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "NextWeb", "version" : "1.0.1", "private" : true, "scripts" : {"start" : "node app.js"}, "dependencies" : {"canvas" : "^1.3.5", "excel" : "^0.1.4", "excel-parser" : "^0.2.2", "express" : "3.4.7", "grunt" : "^0.4.5", "grunt-concurrent" : "^0.4.3", "grunt-contrib-coffee" : "^0.7.0", "grunt-contrib-copy" : "^0.8.0", "grunt-contrib-uglify" : "^0.9.1", "grunt-contrib-watch" : "^0.5.3", "grunt-develop" : "^0.2.2", "grunt-nodemon" : "^0.1.2", "jade" : "*", "mongoose" : "^4.3.6", "msexcel-builder" : "0.0.2", "node-xlsx" : "^0.6.0", "qrcode" : "^0.4.2", "request" : "^2.67.0", "socket.io" : "^1.4.5", "vcards-js" : "^2.3.0", "websocket" : "^1.0.22", "ws" : "^1.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"canvas": {"type": "string"}, "excel": {"type": "string"}, "excel-parser": {"type": "string"}, "express": {"type": "string"}, "grunt": {"type": "string"}, "grunt-concurrent": {"type": "string"}, "grunt-contrib-coffee": {"type": "string"}, "grunt-contrib-copy": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-develop": {"type": "string"}, "grunt-nodemon": {"type": "string"}, "jade": {"type": "string"}, "mongoose": {"type": "string"}, "msexcel-builder": {"type": "string"}, "node-xlsx": {"type": "string"}, "qrcode": {"type": "string"}, "request": {"type": "string"}, "socket.io": {"type": "string"}, "vcards-js": {"type": "string"}, "websocket": {"type": "string"}, "ws": {"type": "string"}}, "required": ["canvas", "excel", "excel-parser", "express", "grunt", "grunt-concurrent", "grunt-contrib-coffee", "grunt-contrib-copy", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-develop", "grunt-nodemon", "jade", "mongoose", "msexcel-builder", "node-xlsx", "qrcode", "request", "socket.io", "vcards-js", "websocket", "ws"]}}, "required": ["name", "version", "private", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"require": {"type": "object", "properties": {"abraham/twitteroauth": {"type": "string"}, "vlucas/phpdotenv": {"type": "string"}}, "required": ["abraham/twitteroauth", "vlucas/phpdotenv"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"require" : {"abraham/twitteroauth" : "^2.0", "vlucas/phpdotenv" : "^5.3"}}
json_instruct
{"type": "object", "properties": {"require": {"type": "object", "properties": {"abraham/twitteroauth": {"type": "string"}, "vlucas/phpdotenv": {"type": "string"}}, "required": ["abraham/twitteroauth", "vlucas/phpdotenv"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints": {"type": "array", "items": {"type": "number"}}, "face_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}, "hand_right_keypoints": {"type": "array", "items": {}}}, "required": ["pose_keypoints", "face_keypoints", "hand_left_keypoints", "hand_right_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.0, "people" : [{"pose_keypoints" : [488.655, 131.08, 0.761607, 457.301, 157.138, 0.837289, 469.077, 157.105, 0.804927, 475.631, 202.772, 0.865343, 506.878, 193.682, 0.877783, 445.55, 158.429, 0.82378, 442.956, 202.846, 0.791555, 495.155, 202.783, 0.23241, 474.32, 235.431, 0.742124, 487.369, 304.617, 0.700603, 433.773, 356.823, 0.810693, 455.994, 235.425, 0.694468, 500.368, 298.14, 0.696973, 525.191, 365.965, 0.728911, 487.362, 127.098, 0.795395, 0, 0, 0, 475.577, 123.22, 0.892961, 0, 0, 0], "face_keypoints" : [], "hand_left_keypoints" : [], "hand_right_keypoints" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints": {"type": "array", "items": {"type": "number"}}, "face_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}, "hand_right_keypoints": {"type": "array", "items": {}}}, "required": ["pose_keypoints", "face_keypoints", "hand_left_keypoints", "hand_right_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["330326120001", "\u6c38\u5b89\u793e\u533a", "121", "0"], ["330326120002", "\u4e07\u5b89\u793e\u533a", "121", "0"], ["330326120201", "\u96f7\u6e0e\u6751\u59d4\u4f1a", "220", "0"], ["330326120202", "\u6b23\u96c5\u6751\u59d4\u4f1a", "121", "0"], ["330326120204", "\u9ccc\u5bd2\u6751\u59d4\u4f1a", "220", "0"], ["330326120206", "\u9ece\u660e\u6751\u59d4\u4f1a", "220", "0"], ["330326120207", "\u534e\u4ead\u6751\u59d4\u4f1a", "220", "0"], ["330326120209", "\u897f\u5c99\u6751\u59d4\u4f1a", "220", "0"], ["330326120211", "\u90d1\u5bb6\u5185\u6751\u59d4\u4f1a", "220", "0"], ["330326120212", "\u4e0b\u6cdb\u6751\u59d4\u4f1a", "220", "0"], ["330326120213", "\u6e14\u5858\u6751\u59d4\u4f1a", "220", "0"], ["330326120216", "\u51e4\u5c71\u5934\u6751\u59d4\u4f1a", "220", "0"], ["330326120217", "\u8303\u9f99\u6751\u59d4\u4f1a", "220", "0"], ["330326120223", "\u897f\u6751\u6751\u59d4\u4f1a", "220", "0"], ["330326120237", "\u5174\u6c11\u6751\u59d4\u4f1a", "220", "0"], ["330326120239", "\u8054\u6c11\u6751\u59d4\u4f1a", "220", "0"], ["330326120240", "\u6c5f\u5317\u6751\u59d4\u4f1a", "220", "0"], ["330326120241", "\u5174\u8d24\u6751\u59d4\u4f1a", "220", "0"], ["330326120242", "\u65b0\u579f\u6751\u59d4\u4f1a", "220", "0"], ["330326120243", "\u632f\u8d24\u6751\u59d4\u4f1a", "220", "0"], ["330326120244", "\u793c\u8d24\u6751\u59d4\u4f1a", "220", "0"], ["330326120245", "\u9ccc\u5cf0\u6751\u59d4\u4f1a", "220", "0"], ["330326120246", "\u632f\u5174\u6751\u59d4\u4f1a", "220", "0"], ["330326120247", "\u534e\u8054\u6751\u59d4\u4f1a", "220", "0"], ["330326120248", "\u80dc\u8054\u6751\u59d4\u4f1a", "220", "0"], ["330326120249", "\u987a\u946b\u6751\u59d4\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$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"}, "bin": {"type": "object", "properties": {"code-mod": {"type": "string"}}, "required": ["code-mod"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "dependencies": {"type": "object", "properties": {"inquirer": {"type": "string"}, "jscodeshift": {"type": "string"}, "recast": {"type": "string"}}, "required": ["inquirer", "jscodeshift", "recast"]}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}, "@semcore/jest-preset-ui": {"type": "string"}}, "required": ["jest", "@semcore/jest-preset-ui"]}, "jest": {"type": "object", "properties": {"preset": {"type": "string"}}, "required": ["preset"]}}, "required": ["name", "version", "description", "bin", "keywords", "author", "license", "scripts", "dependencies", "devDependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@semcore/code-mod", "version" : "1.4.0", "description" : "Code mod for @semcore components", "bin" : {"code-mod" : "./bin/code-mode.js"}, "keywords" : ["cli", "command"], "author" : "", "license" : "MIT", "scripts" : {"test" : "jest", "build" : "exit 0"}, "dependencies" : {"inquirer" : "^6.3.1", "jscodeshift" : "^0.6.4", "recast" : "^0.18.1"}, "devDependencies" : {"jest" : "*", "@semcore/jest-preset-ui" : "*"}, "jest" : {"preset" : "@semcore/jest-preset-ui"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"code-mod": {"type": "string"}}, "required": ["code-mod"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "dependencies": {"type": "object", "properties": {"inquirer": {"type": "string"}, "jscodeshift": {"type": "string"}, "recast": {"type": "string"}}, "required": ["inquirer", "jscodeshift", "recast"]}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}, "@semcore/jest-preset-ui": {"type": "string"}}, "required": ["jest", "@semcore/jest-preset-ui"]}, "jest": {"type": "object", "properties": {"preset": {"type": "string"}}, "required": ["preset"]}}, "required": ["name", "version", "description", "bin", "keywords", "author", "license", "scripts", "dependencies", "devDependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"changepoint": {"type": "string"}, "country": {"type": "object", "properties": {"code": {"type": "string"}, "group": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "group", "name"]}, "topics": {"type": "array", "items": {"type": "object", "properties": {"diff": {"type": "number"}, "topic": {"type": "string"}}, "required": ["diff", "topic"]}}}, "required": ["changepoint", "country", "topics"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"changepoint" : "2020-04-19", "country" : {"code" : "LUX", "group" : "lb", "name" : "Luxembourg"}, "topics" : [{"diff" : 85.0, "topic" : "Late modern period"}, {"diff" : 46.0, "topic" : "Historical eras"}, {"diff" : 35.0, "topic" : "Sovereignty"}, {"diff" : 34.0, "topic" : "Territorial entities"}, {"diff" : 34.0, "topic" : "Product introductions"}, {"diff" : 31.0, "topic" : "Mass media"}, {"diff" : 29.0, "topic" : "Regions"}, {"diff" : 28.0, "topic" : "Fields"}, {"diff" : 25.0, "topic" : "Internet standards"}, {"diff" : 22.0, "topic" : "Decade"}, {"diff" : 22.0, "topic" : "Centuries"}, {"diff" : 22.0, "topic" : "Period"}, {"diff" : 21.0, "topic" : "Places"}, {"diff" : 19.0, "topic" : "Europe"}, {"diff" : 19.0, "topic" : "Establishments"}, {"diff" : 18.0, "topic" : "Sciences"}, {"diff" : 18.0, "topic" : "18th-century french people"}, {"diff" : 18.0, "topic" : "Crops originating from indigenous americans"}, {"diff" : 18.0, "topic" : "Politics"}, {"diff" : 17.0, "topic" : "Maintenance"}]}
json_instruct
{"type": "object", "properties": {"changepoint": {"type": "string"}, "country": {"type": "object", "properties": {"code": {"type": "string"}, "group": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "group", "name"]}, "topics": {"type": "array", "items": {"type": "object", "properties": {"diff": {"type": "number"}, "topic": {"type": "string"}}, "required": ["diff", "topic"]}}}, "required": ["changepoint", "country", "topics"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"hot_name": {"type": "string"}}, "required": ["hot_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hot_name" : "/wbdwcupdate/"}
json_instruct
{"type": "object", "properties": {"hot_name": {"type": "string"}}, "required": ["hot_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : 6210040005, "parent" : 6210040, "name" : "PULANG PISAU", "latitude" : null, "longitude" : null, "postal" : [74811], "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": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"authors" : [{"author" : "Rowland Storey"}, {"author" : "Marcel Gatt"}, {"author" : "Ian Bradford"}], "doi" : "10.1186/1752-1947-3-6", "publication_date" : "2009-01-08", "id" : "EN118621", "url" : "https://pubmed.ncbi.nlm.nih.gov/19126231", "source" : "Journal of medical case reports", "source_url" : "", "licence" : "CC BY", "language" : "en", "type" : "pubmed", "description" : "", "text" : "A 59-year-old man of Caucasian origin presented to a general surgical outpatients clinic with an 18-month history of intermittent upper abdominal pain following meals. Following normal gastroscopy and abdominal ultrasound, a focally dilated segment of ileum was seen on computed tomography and further clarified by barium investigation. Histology of this segment demonstrated MALT lymphoma of the small bowel."}
json_instruct
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"docs": {"type": "string"}, "lint": {"type": "string"}, "lint-fix": {"type": "string"}, "test": {"type": "string"}}, "required": ["docs", "lint", "lint-fix", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "documentation": {"type": "string"}, "eslint": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "documentation", "eslint", "mocha"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "crypto-algorithms", "version" : "1.0.0", "description" : "Implementation of several cryptographic function in pure javascript (with tests)", "main" : "src/index.js", "scripts" : {"docs" : "documentation build src/** -f html -o docs", "lint" : "eslint src/**", "lint-fix" : "eslint --fix src/** test/**", "test" : "mocha test/index.test.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/dipu-bd/crypto-algorithms.git"}, "keywords" : ["cryptography", "javascript", "algorithm", "implementations"], "author" : "Sudipto Chandra <dipu.sudipta@gmail.com>", "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/dipu-bd/crypto-algorithms/issues"}, "homepage" : "https://github.com/dipu-bd/crypto-algorithms#readme", "devDependencies" : {"chai" : "^4.1.2", "documentation" : "^8.0.2", "eslint" : "^5.2.0", "mocha" : "^5.2.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"docs": {"type": "string"}, "lint": {"type": "string"}, "lint-fix": {"type": "string"}, "test": {"type": "string"}}, "required": ["docs", "lint", "lint-fix", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "documentation": {"type": "string"}, "eslint": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "documentation", "eslint", "mocha"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bugs": {"type": "string"}, "license": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"@charmander/eslint-config-base": {"type": "string"}}, "required": ["@charmander/eslint-config-base"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "bugs", "license", "files", "repository", "scripts", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "pg-numeric", "version" : "1.0.2", "description" : "reads PostgreSQL binary format for numeric values into a string", "bugs" : "https://github.com/charmander/pg-numeric/issues", "license" : "ISC", "files" : ["index.js"], "repository" : {"type" : "git", "url" : "https://github.com/charmander/pg-numeric"}, "scripts" : {"test" : "node test"}, "devDependencies" : {"@charmander/eslint-config-base" : "1.2.0"}, "engines" : {"node" : ">=4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bugs": {"type": "string"}, "license": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"@charmander/eslint-config-base": {"type": "string"}}, "required": ["@charmander/eslint-config-base"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "bugs", "license", "files", "repository", "scripts", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"template": {"type": "integer"}, "meta": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "location": {"type": "string"}}, "required": ["type", "name", "location"]}, "eventName": {"type": "string"}, "date": {"type": "string"}, "location": {"type": "string"}, "hours": {"type": "integer"}, "participants": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}}, "required": ["template", "meta", "eventName", "date", "location", "hours", "participants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"template" : 1, "meta" : {"type" : "Oficina", "name" : "Aplicando os conceitos de UX para cria\u00e7\u00e3o de interfaces", "location" : "IFRN Natal-Central"}, "eventName" : "CADESDAY #1 - Oficina \"Aplicando os conceitos de UX para cria\u00e7\u00e3o de interfaces\"", "date" : "2018-08-25T13:00:00-03:00", "location" : "IFRN Campus Natal-Central", "hours" : 3, "participants" : [{"name" : "Emanuel Augusto Cruz da Silva", "email" : "emanuelaugustosilva@hotmail.com"}, {"name" : "Fl\u00e1vio Enrique Lima Costa", "email" : "enrikeflavio@gmail.com"}, {"name" : "Juciane de Azevedo Chianca", "email" : "juciane.chianca@gmail.com"}, {"name" : "Geovana Karla Ferreira Da Silva", "email" : "geovanakarla25@gmail.com"}, {"name" : "Adlem Dutra da Silva", "email" : "adlem.dutra@escolar.ifrn.edu.br"}, {"name" : "Esther Arag\u00e3o da Silva Santana", "email" : "estheraragaos@gmail.com"}, {"name" : "Matheus Vin\u00edcius da Silva", "email" : "matheus10xy@gmail.com"}, {"name" : "Ana Paula Oliveira da Silva", "email" : "ana.paula1997@hotmail.com"}, {"name" : "Val\u00e9rio Farias de Carvalho", "email" : "valeriofc@gmail.com"}]}
json_instruct
{"type": "object", "properties": {"template": {"type": "integer"}, "meta": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "location": {"type": "string"}}, "required": ["type", "name", "location"]}, "eventName": {"type": "string"}, "date": {"type": "string"}, "location": {"type": "string"}, "hours": {"type": "integer"}, "participants": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}}, "required": ["template", "meta", "eventName", "date", "location", "hours", "participants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"temperature": {"type": "number"}, "downfall": {"type": "number"}, "precipitation": {"type": "string"}, "category": {"type": "string"}, "effects": {"type": "object", "properties": {"sky_color": {"type": "integer"}, "fog_color": {"type": "integer"}, "water_color": {"type": "integer"}, "water_fog_color": {"type": "integer"}, "grass_color": {"type": "integer"}, "foliage_color": {"type": "integer"}, "particle": {"type": "object", "properties": {"probability": {"type": "number"}, "options": {"type": "object", "properties": {"type": {"type": "string"}, "color": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "number"}}, "required": ["type", "color", "scale"]}}, "required": ["probability", "options"]}}, "required": ["sky_color", "fog_color", "water_color", "water_fog_color", "grass_color", "foliage_color", "particle"]}, "spawners": {"type": "object", "properties": {"monster": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "weight": {"type": "integer"}, "minCount": {"type": "integer"}, "maxCount": {"type": "integer"}}, "required": ["type", "weight", "minCount", "maxCount"]}}, "creature": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "weight": {"type": "integer"}, "minCount": {"type": "integer"}, "maxCount": {"type": "integer"}}, "required": ["type", "weight", "minCount", "maxCount"]}}}, "required": ["monster", "creature"]}, "spawn_costs": {"type": "object", "properties": {}, "required": []}, "carvers": {"type": "object", "properties": {}, "required": []}, "features": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["temperature", "downfall", "precipitation", "category", "effects", "spawners", "spawn_costs", "carvers", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"temperature" : 0.8, "downfall" : 0.4, "precipitation" : "rain", "category" : "none", "effects" : {"sky_color" : 3163680, "fog_color" : 3163680, "water_color" : 3163680, "water_fog_color" : 10541966, "grass_color" : 16777215, "foliage_color" : 16777215, "particle" : {"probability" : 0.01, "options" : {"type" : "dust", "color" : [0.04, 0.2, 0.0], "scale" : 1.0}}}, "spawners" : {"monster" : [{"type" : "minecraft:skeleton", "weight" : 1, "minCount" : 1, "maxCount" : 4}], "creature" : [{"type" : "minecraft:chicken", "weight" : 1, "minCount" : 1, "maxCount" : 3}]}, "spawn_costs" : {}, "carvers" : {}, "features" : [[], ["orbit:acid_lake_surface", "orbit:acid_lake_surface_frequent"], [], [], [], [], [], [], [], ["orbit:blackwood_tree_placed", "orbit:blackwood_tall_placed", "orbit:blackwood_mega_placed"], []]}
json_instruct
{"type": "object", "properties": {"temperature": {"type": "number"}, "downfall": {"type": "number"}, "precipitation": {"type": "string"}, "category": {"type": "string"}, "effects": {"type": "object", "properties": {"sky_color": {"type": "integer"}, "fog_color": {"type": "integer"}, "water_color": {"type": "integer"}, "water_fog_color": {"type": "integer"}, "grass_color": {"type": "integer"}, "foliage_color": {"type": "integer"}, "particle": {"type": "object", "properties": {"probability": {"type": "number"}, "options": {"type": "object", "properties": {"type": {"type": "string"}, "color": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "number"}}, "required": ["type", "color", "scale"]}}, "required": ["probability", "options"]}}, "required": ["sky_color", "fog_color", "water_color", "water_fog_color", "grass_color", "foliage_color", "particle"]}, "spawners": {"type": "object", "properties": {"monster": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "weight": {"type": "integer"}, "minCount": {"type": "integer"}, "maxCount": {"type": "integer"}}, "required": ["type", "weight", "minCount", "maxCount"]}}, "creature": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "weight": {"type": "integer"}, "minCount": {"type": "integer"}, "maxCount": {"type": "integer"}}, "required": ["type", "weight", "minCount", "maxCount"]}}}, "required": ["monster", "creature"]}, "spawn_costs": {"type": "object", "properties": {}, "required": []}, "carvers": {"type": "object", "properties": {}, "required": []}, "features": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["temperature", "downfall", "precipitation", "category", "effects", "spawners", "spawn_costs", "carvers", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "1", "name" : "Homer Simpson"}, {"id" : "2", "name" : "Marge Simpson"}, {"id" : "3", "name" : "Bart Simpson"}, {"id" : "4", "name" : "Lisa Simpson"}, {"id" : "8", "name" : "Maggie Simpson"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "FH - Xingzuo Madness\uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "gh3ttolobsta", "description" : "Hi,undefinediundefinedfinallyundefinedfinishedundefinedit,undefinedalsoundefinediundefinedapologizeundefinedforundefinedtheundefinedshittyundefinedaudioundefinedbutundefinediundefinedhadundefinedtoundefinedcompressundefinedtheundefinedvideoundefinedlikeundefined4undefinedtimesundefinedcauseundefinedtheundefinedfileundefinedwasundefinedoverundefined2GB...<br>BUT,undefinedyouundefinedcanundefinedrequestundefinedtheundefineduncompressedundefinedfileundefinedbyundefinedmyundefinedDM&apos;s.<br>-<br>Creditsundefined:undefined(<aundefinedhref='https://twitter.com/diivesart'>https://twitter.com/diivesart</a>)<br>SongsundefinedUsed:<br>-GalwaroundefinedxundefinedB3nteundefined-undefinedGunundefinedDown<br>-CatundefinedDealersundefined-undefinedYourundefinedBody<br>-RyeundefinedRyeundefinedfeat.undefinedM.I.Aundefined-undefinedBangundefined(WillundefinedSparksundefined&amp;undefinedJoelundefinedFletcherundefinedRe-Edit)<br>-USAOundefinedRunaway<br>-WillundefinedSparksundefinedxundefinedOrkestratedundefined-undefinedCrankundefinedItundefinedLoud<br>-BradundefinedSmitundefined-undefinedAaah", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/2169002/thumbnail-2169002_0012.jpg?itok=3uLCkpUk", "download" : "https://ecchi.iwara.tv/api/video/ly0v2caaa5u8kq4bv", "origin" : "https://ecchi.iwara.tv/videos/ly0v2caaa5u8kq4bv"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"examine" : "It looks like someone has sneezed in it."}
json_instruct
{"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}}, "required": ["name", "fips", "state_code", "county_code", "population", "countrylevel_id", "census_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"name" : "Warren County", "fips" : "36113", "state_code" : 36, "county_code" : 113, "population" : 63944, "countrylevel_id" : "fips:36113", "census_data" : {"COUNTYNS" : "00974154", "AFFGEOID" : "0500000US36113", "LSAD" : "06", "ALAND" : 2246154412, "AWATER" : 166682936}}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-74.214625, 43.728702999999996], [-74.057005, 43.744513], [-73.43812, 43.803687], [-73.471307, 43.771681], [-73.460289, 43.768853], [-73.45998399999999, 43.740808], [-73.471941, 43.706927], [-73.484185, 43.692150999999996], [-73.49352, 43.655165], [-73.51427, 43.637409], [-73.526789, 43.636013999999996], [-73.589004, 43.569311], [-73.61323, 43.562931999999996], [-73.60706499999999, 43.552757], [-73.636651, 43.497242], [-73.62894, 43.486391], [-73.6097, 43.383691999999996], [-73.59496, 43.306118], [-73.642761, 43.304172], [-73.650661, 43.289572], [-73.671273, 43.293154], [-73.675162, 43.285072], [-73.661061, 43.272872], [-73.68075999999999, 43.267371], [-73.684962, 43.280871999999995], [-73.705576, 43.278938], [-73.737483, 43.267364], [-73.743957, 43.242717], [-73.763515, 43.22539], [-73.769071, 43.222338], [-73.789731, 43.244420999999996], [-73.803298, 43.250319999999995], [-73.83345899999999, 43.249303], [-73.835567, 43.265834999999996], [-73.826077, 43.276088], [-73.825828, 43.305347999999995], [-73.836918, 43.306611], [-73.858991, 43.33032], [-73.853286, 43.33775], [-73.875372, 43.365122], [-73.870977, 43.372523], [-73.883498, 43.398044999999996], [-74.1601, 43.371531999999995], [-74.214625, 43.728702999999996]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}}, "required": ["name", "fips", "state_code", "county_code", "population", "countrylevel_id", "census_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"thag3.5:0.1": {"type": "string"}, "thag3.5:0.2": {"type": "string"}, "thag3.5:0.3": {"type": "string"}, "thag3.5:0.4": {"type": "string"}, "thag3.5:1.1": {"type": "string"}, "thag3.5:1.2": {"type": "string"}, "thag3.5:1.3": {"type": "string"}, "thag3.5:1.4": {"type": "string"}, "thag3.5:2.1": {"type": "string"}, "thag3.5:2.2": {"type": "string"}, "thag3.5:2.3": {"type": "string"}, "thag3.5:2.4": {"type": "string"}, "thag3.5:3.1": {"type": "string"}, "thag3.5:3.2": {"type": "string"}, "thag3.5:3.3": {"type": "string"}}, "required": ["thag3.5:0.1", "thag3.5:0.2", "thag3.5:0.3", "thag3.5:0.4", "thag3.5:1.1", "thag3.5:1.2", "thag3.5:1.3", "thag3.5:1.4", "thag3.5:2.1", "thag3.5:2.2", "thag3.5:2.3", "thag3.5:2.4", "thag3.5:3.1", "thag3.5:3.2", "thag3.5:3.3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"thag3.5:0.1" : "Verses of the Senior Monks", "thag3.5:0.2" : "The Book of the Threes", "thag3.5:0.3" : "Chapter One", "thag3.5:0.4" : "M\u0101ta\u1e45gaputta", "thag3.5:1.1" : "\u201cIt\u2019s too cold, too hot,", "thag3.5:1.2" : "too late,\u201d they say.", "thag3.5:1.3" : "When the young neglect their work like this,", "thag3.5:1.4" : "opportunities pass them by.", "thag3.5:2.1" : "But one who considers heat and cold", "thag3.5:2.2" : "as nothing more than blades of grass\u2014", "thag3.5:2.3" : "he does his duties as a man, ", "thag3.5:2.4" : "and his happiness never fails.", "thag3.5:3.1" : "With my chest I\u2019ll thrust aside", "thag3.5:3.2" : "the grasses, vines, and creepers,", "thag3.5:3.3" : "and foster seclusion."}
json_instruct
{"type": "object", "properties": {"thag3.5:0.1": {"type": "string"}, "thag3.5:0.2": {"type": "string"}, "thag3.5:0.3": {"type": "string"}, "thag3.5:0.4": {"type": "string"}, "thag3.5:1.1": {"type": "string"}, "thag3.5:1.2": {"type": "string"}, "thag3.5:1.3": {"type": "string"}, "thag3.5:1.4": {"type": "string"}, "thag3.5:2.1": {"type": "string"}, "thag3.5:2.2": {"type": "string"}, "thag3.5:2.3": {"type": "string"}, "thag3.5:2.4": {"type": "string"}, "thag3.5:3.1": {"type": "string"}, "thag3.5:3.2": {"type": "string"}, "thag3.5:3.3": {"type": "string"}}, "required": ["thag3.5:0.1", "thag3.5:0.2", "thag3.5:0.3", "thag3.5:0.4", "thag3.5:1.1", "thag3.5:1.2", "thag3.5:1.3", "thag3.5:1.4", "thag3.5:2.1", "thag3.5:2.2", "thag3.5:2.3", "thag3.5:2.4", "thag3.5:3.1", "thag3.5:3.2", "thag3.5:3.3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"dataset_name": {"type": "string"}, "model_name": {"type": "string"}, "log_dir": {"type": "string"}}, "required": ["dataset_name", "model_name", "log_dir"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"dataset_name" : "Fluo-N2DL-HeLa/01-GT+ST-seg", "model_name" : "Fluo-N2DL-HeLa-GT+ST-seg.pth", "log_dir" : "Fluo-N2DL-HeLa-GT+ST-seg"}, {"dataset_name" : "Fluo-N2DL-HeLa/02-GT+ST-seg", "model_name" : "Fluo-N2DL-HeLa-GT+ST-seg.pth", "log_dir" : "Fluo-N2DL-HeLa-GT+ST-seg"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"dataset_name": {"type": "string"}, "model_name": {"type": "string"}, "log_dir": {"type": "string"}}, "required": ["dataset_name", "model_name", "log_dir"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"first": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "limit": {"type": "integer"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "role": {"type": "string"}, "state": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "role", "state", "type"]}}}, "required": ["first", "limit", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"first" : {"href" : "https://zen-cpd-zen.apps.cpdv35-test.cpd-daell.com/v2/spaces/ad4f6950-79e4-4fac-a656-cb07b53c4c71/members"}, "limit" : 100, "resources" : [{"id" : "1000331004", "role" : "admin", "state" : "active", "type" : "user"}, {"id" : "1000331015", "role" : "admin", "state" : "active", "type" : "user"}]}
json_instruct
{"type": "object", "properties": {"first": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "limit": {"type": "integer"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "role": {"type": "string"}, "state": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "role", "state", "type"]}}}, "required": ["first", "limit", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "firebase_url": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "firebase_url", "project_id", "storage_bucket"]}, "client": {"type": "array", "items": {"type": "object", "properties": {"client_info": {"type": "object", "properties": {"mobilesdk_app_id": {"type": "string"}, "android_client_info": {"type": "object", "properties": {"package_name": {"type": "string"}}, "required": ["package_name"]}}, "required": ["mobilesdk_app_id", "android_client_info"]}, "oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}, "api_key": {"type": "array", "items": {"type": "object", "properties": {"current_key": {"type": "string"}}, "required": ["current_key"]}}, "services": {"type": "object", "properties": {"analytics_service": {"type": "object", "properties": {"status": {"type": "integer"}}, "required": ["status"]}, "appinvite_service": {"type": "object", "properties": {"status": {"type": "integer"}, "other_platform_oauth_client": {"type": "array", "items": {}}}, "required": ["status", "other_platform_oauth_client"]}, "ads_service": {"type": "object", "properties": {"status": {"type": "integer"}}, "required": ["status"]}}, "required": ["analytics_service", "appinvite_service", "ads_service"]}}, "required": ["client_info", "oauth_client", "api_key", "services"]}}, "configuration_version": {"type": "string"}}, "required": ["project_info", "client", "configuration_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"project_info" : {"project_number" : "811949295210", "firebase_url" : "https://vntrip1-417ed.firebaseio.com", "project_id" : "vntrip1-417ed", "storage_bucket" : "vntrip1-417ed.appspot.com"}, "client" : [{"client_info" : {"mobilesdk_app_id" : "1:811949295210:android:1d4e71fab9a8a67b", "android_client_info" : {"package_name" : "me.sabareesh.trippie.debug"}}, "oauth_client" : [{"client_id" : "811949295210-8tf98e93ss9gs4kv5c07gq8a4coiikos.apps.googleusercontent.com", "client_type" : 3}], "api_key" : [{"current_key" : "AIzaSyCn_a0tWCP3hL402ZQ-li0HljYm9E7BOZU"}], "services" : {"analytics_service" : {"status" : 1}, "appinvite_service" : {"status" : 1, "other_platform_oauth_client" : []}, "ads_service" : {"status" : 2}}}], "configuration_version" : "1"}
json_instruct
{"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "firebase_url": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "firebase_url", "project_id", "storage_bucket"]}, "client": {"type": "array", "items": {"type": "object", "properties": {"client_info": {"type": "object", "properties": {"mobilesdk_app_id": {"type": "string"}, "android_client_info": {"type": "object", "properties": {"package_name": {"type": "string"}}, "required": ["package_name"]}}, "required": ["mobilesdk_app_id", "android_client_info"]}, "oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}, "api_key": {"type": "array", "items": {"type": "object", "properties": {"current_key": {"type": "string"}}, "required": ["current_key"]}}, "services": {"type": "object", "properties": {"analytics_service": {"type": "object", "properties": {"status": {"type": "integer"}}, "required": ["status"]}, "appinvite_service": {"type": "object", "properties": {"status": {"type": "integer"}, "other_platform_oauth_client": {"type": "array", "items": {}}}, "required": ["status", "other_platform_oauth_client"]}, "ads_service": {"type": "object", "properties": {"status": {"type": "integer"}}, "required": ["status"]}}, "required": ["analytics_service", "appinvite_service", "ads_service"]}}, "required": ["client_info", "oauth_client", "api_key", "services"]}}, "configuration_version": {"type": "string"}}, "required": ["project_info", "client", "configuration_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "San Juan, Aurora, Zamboanga del Sur, Zamboanga Peninsula (Region IX), PH", "locale" : "ph.zamboanga-peninsula-region-ix.zamboanga-del-sur.aurora.san-juan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "17", "region_reference" : "9", "region_name" : "Zamboanga Peninsula (Region IX)", "province_id" : "81", "province_reference" : "81", "province_name" : "Zamboanga del Sur", "city_id" : "80", "city_reference" : "1603", "city_name" : "Aurora", "barangay_id" : "1888", "barangay_reference" : "40807", "barangay_name" : "San Juan"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[123.547493, 7.95003], [123.567177, 7.9416], [123.561523, 7.93403], [123.561272, 7.93443], [123.560013, 7.93526], [123.55954, 7.93563], [123.558617, 7.93543], [123.557968, 7.93458], [123.557327, 7.93426], [123.556953, 7.93457], [123.547272, 7.93909], [123.547447, 7.94103], [123.547432, 7.942], [123.547142, 7.9442], [123.547043, 7.94645], [123.547112, 7.94787], [123.547333, 7.94937], [123.547493, 7.95003]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"api": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["api"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"api" : {"url" : "/api-cached"}}
json_instruct
{"type": "object", "properties": {"api": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["api"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 85784095, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "3386a3113497d9940f720c6754b8115f", "wof:id" : 85784095, "wof:repo" : "whosonfirst-data-admin-my"}, "bbox" : [103.68720459000002, 1.51054276169026, 103.70720459000017, 1.5286820007051], "geometry" : {"coordinates" : [[[103.70299211677144, 1.51054276169026], [103.69349513164138, 1.51140642440671], [103.68731192561847, 1.5175917873855], [103.6873119670417, 1.51759178330556], [103.68720459000002, 1.51868200070494], [103.68739673719597, 1.52063290392525], [103.68796579467505, 1.52250883502877], [103.6888898938771, 1.52423770303513], [103.69013352218838, 1.52575306851693], [103.69164888766983, 1.52699669682802], [103.69337775567652, 1.52792079603016], [103.69525368678006, 1.52848985350899], [103.69720459000018, 1.5286820007051], [103.6991554932203, 1.52848985350899], [103.70103142432384, 1.52792079603016], [103.70276029233037, 1.52699669682802], [103.70427565781199, 1.52575306851693], [103.70551928612309, 1.52423770303513], [103.70644338532531, 1.52250883502877], [103.70701244280406, 1.52063290392525], [103.70720459000017, 1.51868200070494], [103.70701244280406, 1.51673109748499], [103.70644338532531, 1.51485516638138], [103.70551928612309, 1.51312629837476], [103.70427565781199, 1.5116109328933], [103.70298486077786, 1.51055160314405], [103.70299211677144, 1.51054276169026]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "axios": {"type": "string"}, "express": {"type": "string"}}, "required": ["@types/node", "axios", "express"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/express", "ts-node", "typescript"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "fetchArrivalFromStopCode": {"type": "string"}, "fetchLatLongFromPostcode": {"type": "string"}, "fetchStopPointFromLatLong": {"type": "string"}, "fetchBuses": {"type": "string"}, "runAPI": {"type": "string"}}, "required": ["start", "fetchArrivalFromStopCode", "fetchLatLongFromPostcode", "fetchStopPointFromLatLong", "fetchBuses", "runAPI"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "tfl-bus-board", "version" : "1.0.0", "description" : "RS3 This project involves creating a website which can output bus arrivals based on a postcode.", "main" : "index.js", "dependencies" : {"@types/node" : "^16.0.1", "axios" : "^0.21.1", "express" : "^4.17.1"}, "devDependencies" : {"@types/express" : "^4.17.13", "ts-node" : "^10.0.0", "typescript" : "^4.3.5"}, "scripts" : {"start" : "echo \"Error: no start file specified\" && exit 1", "fetchArrivalFromStopCode" : "ts-node ArrivalsFetching/TFLArrivalManager.ts", "fetchLatLongFromPostcode" : "ts-node PostcodeFetching/PostcodeManager.ts", "fetchStopPointFromLatLong" : "ts-node StopPointFetching/StopPointManager.ts", "fetchBuses" : "ts-node index.ts", "runAPI" : "ts-node EndPoints/webServer.ts"}, "repository" : {"type" : "git", "url" : "git+https://github.com/JackParkinsonSoftwire/TFL-Bus-Board.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/JackParkinsonSoftwire/TFL-Bus-Board/issues"}, "homepage" : "https://github.com/JackParkinsonSoftwire/TFL-Bus-Board#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "axios": {"type": "string"}, "express": {"type": "string"}}, "required": ["@types/node", "axios", "express"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/express", "ts-node", "typescript"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "fetchArrivalFromStopCode": {"type": "string"}, "fetchLatLongFromPostcode": {"type": "string"}, "fetchStopPointFromLatLong": {"type": "string"}, "fetchBuses": {"type": "string"}, "runAPI": {"type": "string"}}, "required": ["start", "fetchArrivalFromStopCode", "fetchLatLongFromPostcode", "fetchStopPointFromLatLong", "fetchBuses", "runAPI"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : [{"d" : [{"s" : ["`iwatan~"], "f" : "\ufff9\ufffaRefer to `iwatan~\ufffb\u8a73\u898b `iwatan~"}]}], "t" : "Iwatan"}
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "county": {"type": "string"}, "elevation": {"type": "integer"}, "location": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["id", "name", "county", "elevation", "location"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1527999", "name" : "West Sand Creek Trail", "county" : "Chelan", "elevation" : 1002, "location" : {"type" : "Point", "coordinates" : [-120.5678577, 47.427901]}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "county": {"type": "string"}, "elevation": {"type": "integer"}, "location": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["id", "name", "county", "elevation", "location"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prestart": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "prestart", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "discord.js": {"type": "string"}, "dotenv": {"type": "string"}, "node": {"type": "string"}, "node-cron": {"type": "string"}, "sequelize": {"type": "string"}, "sqlite3": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["axios", "discord.js", "dotenv", "node", "node-cron", "sequelize", "sqlite3", "typescript"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}}, "required": ["@types/node"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "burningsw-discord-bot", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"build" : "tsc --build tsconfig.json", "prestart" : "npm run build", "start" : "node ./out/index.js"}, "author" : "", "license" : "ISC", "dependencies" : {"axios" : "^0.21.1", "discord.js" : "^12.5.1", "dotenv" : "^8.2.0", "node" : "^15.4.0", "node-cron" : "^2.0.3", "sequelize" : "^6.4.0", "sqlite3" : "5.0.0", "typescript" : "^4.1.3"}, "devDependencies" : {"@types/node" : "^14.14.21"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prestart": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "prestart", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "discord.js": {"type": "string"}, "dotenv": {"type": "string"}, "node": {"type": "string"}, "node-cron": {"type": "string"}, "sequelize": {"type": "string"}, "sqlite3": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["axios", "discord.js", "dotenv", "node", "node-cron", "sequelize", "sqlite3", "typescript"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}}, "required": ["@types/node"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"ProjectFullName": {"type": "string"}, "ProjectDescription": {"type": "string"}, "AuthorName": {"type": "string"}, "AuthorEmail": {"type": "string"}, "AuthorUrl": {"type": "string"}, "ApiVersion": {"type": "string"}, "License": {"type": "string"}, "RabbitMq": {"type": "object", "properties": {"Host": {"type": "string"}, "Username": {"type": "string"}, "Password": {"type": "string"}, "TimeoutInMilliseconds": {"type": "integer"}}, "required": ["Host", "Username", "Password", "TimeoutInMilliseconds"]}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}}, "required": ["ProjectFullName", "ProjectDescription", "AuthorName", "AuthorEmail", "AuthorUrl", "ApiVersion", "License", "RabbitMq", "Logging", "AllowedHosts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ProjectFullName" : "Public API", "ProjectDescription" : "A public API of the information service.", "AuthorName" : "Nikolay Maev", "AuthorEmail" : "trix.mnr@gmail.com", "AuthorUrl" : "https://github.com/NickMaev", "ApiVersion" : "v1", "License" : "MIT", "RabbitMq" : {"Host" : "bus", "Username" : "user", "Password" : "password", "TimeoutInMilliseconds" : 10000}, "Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft" : "Warning", "Microsoft.Hosting.Lifetime" : "Information"}}, "AllowedHosts" : "*"}
json_instruct
{"type": "object", "properties": {"ProjectFullName": {"type": "string"}, "ProjectDescription": {"type": "string"}, "AuthorName": {"type": "string"}, "AuthorEmail": {"type": "string"}, "AuthorUrl": {"type": "string"}, "ApiVersion": {"type": "string"}, "License": {"type": "string"}, "RabbitMq": {"type": "object", "properties": {"Host": {"type": "string"}, "Username": {"type": "string"}, "Password": {"type": "string"}, "TimeoutInMilliseconds": {"type": "integer"}}, "required": ["Host", "Username", "Password", "TimeoutInMilliseconds"]}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}}, "required": ["ProjectFullName", "ProjectDescription", "AuthorName", "AuthorEmail", "AuthorUrl", "ApiVersion", "License", "RabbitMq", "Logging", "AllowedHosts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:lint": {"type": "string"}, "test:unit": {"type": "string"}, "test:ci": {"type": "string"}, "release": {"type": "string"}}, "required": ["test", "test:lint", "test:unit", "test:ci", "release"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"standard": {"type": "string"}, "standard-version": {"type": "string"}, "tap": {"type": "string"}}, "required": ["standard", "standard-version", "tap"]}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {"setimmediate2": {"type": "string"}}, "required": ["setimmediate2"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "directories", "dependencies", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "map-each", "version" : "1.0.0", "description" : "A very small, flexible, parallel async mapping helper that has first-class support for Iterators and concurrency.", "main" : "index.js", "scripts" : {"test" : "npm run test:lint && npm run test:unit", "test:lint" : "standard", "test:unit" : "tap test/**/*.js test/*.js", "test:ci" : "npm run test:lint && npm run test:unit -- --cov --coverage-report=lcov", "release" : "standard-version"}, "keywords" : ["async", "iteration", "mapping", "foreach", "parallel", "each", "iterable", "iterator"], "author" : "Martin Heidegger <martin.heidegger@gmail.com>", "license" : "MIT", "devDependencies" : {"standard" : "^12.0.1", "standard-version" : "^4.4.0", "tap" : "^12.1.1"}, "directories" : {"test" : "test"}, "dependencies" : {"setimmediate2" : "^3.0.0"}, "repository" : {"type" : "git", "url" : "git+https://github.com/martinheidegger/map-each.git"}, "bugs" : {"url" : "https://github.com/martinheidegger/map-each/issues"}, "homepage" : "https://github.com/martinheidegger/map-each#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:lint": {"type": "string"}, "test:unit": {"type": "string"}, "test:ci": {"type": "string"}, "release": {"type": "string"}}, "required": ["test", "test:lint", "test:unit", "test:ci", "release"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"standard": {"type": "string"}, "standard-version": {"type": "string"}, "tap": {"type": "string"}}, "required": ["standard", "standard-version", "tap"]}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {"setimmediate2": {"type": "string"}}, "required": ["setimmediate2"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "directories", "dependencies", "repository", "bugs", "homepage"], "$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"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "null"}, "url": {"type": "null"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "pyhht", "description" : "Python toolbox for the Hilbert-Huang transform", "license" : {"key" : "other", "name" : "Other", "spdx_id" : null, "url" : null}, "starNum" : 79, "folkNum" : 46, "watchNum" : 79, "topic" : []}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "null"}, "url": {"type": "null"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "null"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "string"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"accession_number" : "74.232", "actors" : [], "creation_date" : "about 1973", "credit_line" : "Director's Discretionary Fund", "cultures" : [], "dimensions" : null, "dynasty" : null, "images" : [], "irn" : 28872, "materials" : "ink", "on_view" : false, "period" : null, "printers" : [], "publishers" : [], "rights" : null, "title" : "Island III"}
json_instruct
{"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "null"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "string"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}, "34": {"type": "string"}, "35": {"type": "string"}, "36": {"type": "string"}, "37": {"type": "string"}, "38": {"type": "string"}, "39": {"type": "string"}, "40": {"type": "string"}, "41": {"type": "string"}, "42": {"type": "string"}, "43": {"type": "string"}, "44": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"edges" : [[30, 20], [20, 27], [35, 39], [26, 20], [18, 15], [17, 9], [20, 6], [9, 20], [9, 20], [13, 20], [15, 20], [20, 13], [6, 20], [20, 23], [6, 20], [40, 20], [27, 20], [20, 15], [41, 17], [20, 12], [44, 11], [20, 7], [19, 20], [8, 41], [20, 23], [43, 31], [20, 22], [13, 25], [13, 20], [20, 3], [10, 8], [20, 28], [2, 20], [20, 14], [0, 20], [20, 34], [20, 30], [4, 20], [20, 35], [20, 41], [1, 29], [20, 33], [23, 38], [20, 30], [20, 42], [3, 20], [42, 20], [18, 12], [15, 20], [35, 15], [16, 36], [21, 20], [20, 0], [21, 20], [17, 32], [31, 24], [20, 27], [20, 10], [20, 12], [9, 5], [20, 37]], "features" : {"0" : "2", "1" : "1", "2" : "1", "3" : "2", "4" : "1", "5" : "1", "6" : "3", "7" : "1", "8" : "2", "9" : "4", "10" : "2", "11" : "1", "12" : "3", "13" : "4", "14" : "1", "15" : "5", "16" : "1", "17" : "3", "18" : "2", "19" : "1", "20" : "44", "21" : "2", "22" : "1", "23" : "3", "24" : "1", "25" : "1", "26" : "1", "27" : "3", "28" : "1", "29" : "1", "30" : "3", "31" : "2", "32" : "1", "33" : "1", "34" : "1", "35" : "3", "36" : "1", "37" : "1", "38" : "1", "39" : "1", "40" : "1", "41" : "3", "42" : "2", "43" : "1", "44" : "1"}}
json_instruct
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}, "34": {"type": "string"}, "35": {"type": "string"}, "36": {"type": "string"}, "37": {"type": "string"}, "38": {"type": "string"}, "39": {"type": "string"}, "40": {"type": "string"}, "41": {"type": "string"}, "42": {"type": "string"}, "43": {"type": "string"}, "44": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "b585e34a7278cfeaca1b", "c" : {"0" : false}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Oasis", "symbol" : "ROSE", "address" : "0xe7FB24deEd5f77c82D531F3a62209743331B87d3", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "PROCEDURE_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "integer"}, "X_COUNT": {"type": "integer"}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "PROCEDURES_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "PROCEDURE_FREQUENCY_DISTRIBUTION", "PROCEDURES_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "PROCEDURE_FREQUENCY_DISTRIBUTION" : {"Y_NUM_PERSONS" : 0, "X_COUNT" : 1}, "PROCEDURES_BY_TYPE" : {"CONCEPT_NAME" : "EHR order list entry", "COUNT_VALUE" : 40}, "AGE_AT_FIRST_OCCURRENCE" : {"CATEGORY" : ["FEMALE", "MALE"], "MIN_VALUE" : [23, 48], "P10_VALUE" : [29, 60], "P25_VALUE" : [51, 63], "MEDIAN_VALUE" : [61, 66], "P75_VALUE" : [69, 76], "P90_VALUE" : [85, 77], "MAX_VALUE" : [91, 78]}}
json_instruct
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "PROCEDURE_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "integer"}, "X_COUNT": {"type": "integer"}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "PROCEDURES_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "PROCEDURE_FREQUENCY_DISTRIBUTION", "PROCEDURES_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {"type": "string"}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "amix", "symbol" : "amix", "name" : "AMIX", "platforms" : {"ethereum" : "0x564393b8d6deaea8f3d739a3f6d9b441d8ee6198"}, "hashing_algorithm" : null, "categories" : ["Artificial Intelligence"], "description" : {"en" : "AMIX is infrastructure token for amino network --5G ready edge computing network "}, "country_origin" : "NZ", "genesis_date" : null, "contract_address" : "0x564393b8d6deaea8f3d739a3f6d9b441d8ee6198", "url" : "http://amino.world/", "explorers" : ["https://etherscan.io/token/0x564393b8d6deaea8f3d739a3f6d9b441d8ee6198", "https://ethplorer.io/address/0x564393b8d6deaea8f3d739a3f6d9b441d8ee6198"], "twitter" : "amino_network", "telegram" : "amino_official"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {"type": "string"}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [973.708, 187.362, 1, 976.893, 233.814, 1, 943.378, 225.09, 1, 962.714, 246.283, 1, 971.029, 209.221, 0, 1019.23, 239.027, 1, 1026.78, 303.987, 1, 1026.23, 364.652, 1, 953.427, 353.191, 1, 934.857, 429.821, 1, 933.944, 497.918, 1, 1002.85, 351.507, 1, 1005.51, 439.655, 1, 997.717, 519.138, 1, 963.772, 177.449, 1, 980.52, 177.371, 1, 954.851, 182.89, 1, 987.712, 179.287, 1], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}