input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1 value | schema stringlengths 100 1.99k |
|---|---|---|---|
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"deprecated": {"type": "string"}, "authority-code": {"type": "string"}, "identifier": {"type": "string"}, "about": {"type": "string"}, "prefLabel": {"type": "object", "properties": {"@lang": {"type": "string"}, "#text": {"type": "string"}}, "required": ["@lang", "#text"]}, "start.use": {"type": "string"}}, "required": ["deprecated", "authority-code", "identifier", "about", "prefLabel", "start.use"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"deprecated" : "false", "authority-code" : "BEF", "identifier" : "BEF", "about" : "http://publications.europa.eu/resource/authority/language/BEF", "prefLabel" : {"@lang" : "bef", "#text" : "benabena"}, "start.use" : "1950-05-09"} | json_instruct | {"type": "object", "properties": {"deprecated": {"type": "string"}, "authority-code": {"type": "string"}, "identifier": {"type": "string"}, "about": {"type": "string"}, "prefLabel": {"type": "object", "properties": {"@lang": {"type": "string"}, "#text": {"type": "string"}}, "required": ["@lang", "#text"]}, "start.use": {"type": "string"}}, "required": ["deprecated", "authority-code", "identifier", "about", "prefLabel", "start.use"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this 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" : "Caburihan, Lavezares, Northern Samar, Eastern Visayas (Region VIII), PH", "locale" : "ph.eastern-visayas-region-viii.northern-samar.lavezares.caburihan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "10", "region_reference" : "8", "region_name" : "Eastern Visayas (Region VIII)", "province_id" : "54", "province_reference" : "54", "province_name" : "Northern Samar", "city_id" : "669", "city_reference" : "1105", "city_name" : "Lavezares", "barangay_id" : "18700", "barangay_reference" : "29035", "barangay_name" : "Caburihan"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[124.352577, 12.5363], [124.352448, 12.53583], [124.352333, 12.53521], [124.352242, 12.53455], [124.352547, 12.53405], [124.352707, 12.53356], [124.352737, 12.53277], [124.352722, 12.53222], [124.352524, 12.53181], [124.352127, 12.53135], [124.352081, 12.53079], [124.352333, 12.53026], [124.352791, 12.52992], [124.352982, 12.5295], [124.349411, 12.51658], [124.344879, 12.50081], [124.335739, 12.50544], [124.341423, 12.53175], [124.352577, 12.5363]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"/src/public/js/app.js": {"type": "string"}, "/src/public/css/index.css": {"type": "string"}}, "required": ["/src/public/js/app.js", "/src/public/css/index.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"/src/public/js/app.js" : "/src/public/js/app.js", "/src/public/css/index.css" : "/src/public/css/index.css"} | json_instruct | {"type": "object", "properties": {"/src/public/js/app.js": {"type": "string"}, "/src/public/css/index.css": {"type": "string"}}, "required": ["/src/public/js/app.js", "/src/public/css/index.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"measure": {"type": "string"}}, "required": ["measure"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@findable/webpack-config": {"type": "string"}, "bolt": {"type": "string"}, "chalk": {"type": "string"}, "gzip-size": {"type": "string"}, "meow": {"type": "string"}, "minimatch": {"type": "string"}, "ora": {"type": "string"}, "pretty-bytes": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["@findable/webpack-config", "bolt", "chalk", "gzip-size", "meow", "minimatch", "ora", "pretty-bytes", "webpack"]}}, "required": ["name", "private", "version", "description", "main", "bin", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@findable/measure", "private" : false, "version" : "0.3.0", "description" : "Tool for measuring bundle size of an individual package in Atlaskit", "main" : "./cli.js", "bin" : {"measure" : "./cli.js"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Atlassian Pty Ltd", "license" : "Apache-2.0", "dependencies" : {"@findable/webpack-config" : "^2.0.5", "bolt" : "^0.22.1", "chalk" : "^2.1.0", "gzip-size" : "^5.0.0", "meow" : "^5.0.0", "minimatch" : "^3.0.4", "ora" : "^3.0.0", "pretty-bytes" : "^5.1.0", "webpack" : "^4.16.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"measure": {"type": "string"}}, "required": ["measure"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@findable/webpack-config": {"type": "string"}, "bolt": {"type": "string"}, "chalk": {"type": "string"}, "gzip-size": {"type": "string"}, "meow": {"type": "string"}, "minimatch": {"type": "string"}, "ora": {"type": "string"}, "pretty-bytes": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["@findable/webpack-config", "bolt", "chalk", "gzip-size", "meow", "minimatch", "ora", "pretty-bytes", "webpack"]}}, "required": ["name", "private", "version", "description", "main", "bin", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"id": {"type": "string"}, "slug": {"type": "string"}, "params": {"type": "object", "properties": {"id": {"type": "string"}, "displayName": {"type": "string"}, "avatarUrl": {"type": "null"}, "slug": {"type": "string"}, "images": {"type": "null"}, "image": {"type": "null"}}, "required": ["id", "displayName", "avatarUrl", "slug", "images", "image"]}}, "required": ["id", "slug", "params"]}}, "required": ["pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"componentChunkName" : "component---src-templates-category-index-js", "path" : "/en/category/writing-skill", "result" : {"pageContext" : {"id" : "66gPrMxvfaVIwS86TEUDvP", "slug" : "/category/writing-skill", "params" : {"id" : "66gPrMxvfaVIwS86TEUDvP", "displayName" : "Writing Skill", "avatarUrl" : null, "slug" : "writing-skill", "images" : null, "image" : null}}}, "staticQueryHashes" : ["700411652", "850621625"]} | json_instruct | {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"id": {"type": "string"}, "slug": {"type": "string"}, "params": {"type": "object", "properties": {"id": {"type": "string"}, "displayName": {"type": "string"}, "avatarUrl": {"type": "null"}, "slug": {"type": "string"}, "images": {"type": "null"}, "image": {"type": "null"}}, "required": ["id", "displayName", "avatarUrl", "slug", "images", "image"]}}, "required": ["id", "slug", "params"]}}, "required": ["pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.4": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.5": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.3", "0.4", "0.5", "0.6"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["0.6"], "meta" : {"description" : "Support package for PowerDNS remotebackend", "homepage" : "https://github.com/cmouse/pdns-remotebackend-python", "license" : "MIT"}, "versions" : {"0.3" : {"sha256" : "8848e3a8d41b92c7364e813d4d27c04e69998f011237832d5269ad0c3439256a", "url" : "https://files.pythonhosted.org/packages/91/4d/680f77d8041bf512494a9ca685acb59548919eebcabe640d79a6c6f4d8d7/Pdns_Remotebackend-0.3.tar.gz"}, "0.4" : {"sha256" : "2fecc8ff50f0d01fcd66236db1edf3169d21b4ea61550706df3cdb985d2183ef", "url" : "https://files.pythonhosted.org/packages/1a/27/af159c2986bf70ed7c9fbf060410a1d3fb19c39107bd1bf6250263c51ff4/Pdns_Remotebackend-0.4.linux-x86_64.tar.gz"}, "0.5" : {"sha256" : "c529db48c01c3174bcf7dd05d5a2ddce295ae40c519d1a124b62606b10ea04d7", "url" : "https://files.pythonhosted.org/packages/63/87/58ea5e4b5b7ca40c508185a4da6000d8a0f44afb076056eadffe845d8e20/Pdns_Remotebackend-0.5.linux-x86_64.tar.gz"}, "0.6" : {"sha256" : "12b788ef35c727fcadf2943345e16194a5f1cb477a2d47f4f7d2a05f2226f5c1", "url" : "https://files.pythonhosted.org/packages/05/6b/2e3cadbcc2be83d676397ef3f040bfe7b58a21717e3c2e8efe9bba3b0f5a/Pdns_Remotebackend-0.6.linux-x86_64.tar.gz"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.3": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.4": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.5": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.6": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.3", "0.4", "0.5", "0.6"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "abbreviation": {"type": "string"}, "schema": {"type": "array", "items": {}}}, "required": ["_id", "name", "abbreviation", "schema"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "ef980639", "name" : "Grapevine Anatolian ringspot virus", "abbreviation" : "GARSV", "schema" : []} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "abbreviation": {"type": "string"}, "schema": {"type": "array", "items": {}}}, "required": ["_id", "name", "abbreviation", "schema"], "$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"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "zendframework/zendframework": {"type": "string"}, "mnapoli/php-di-zf2": {"type": "string"}, "mnapoli/php-di": {"type": "string"}, "propel/propel1": {"type": "string"}, "phpx/ext": {"type": "string"}, "phpx/propel": {"type": "string"}, "phpx/proxy": {"type": "string"}}, "required": ["php", "zendframework/zendframework", "mnapoli/php-di-zf2", "mnapoli/php-di", "propel/propel1", "phpx/ext", "phpx/propel", "phpx/proxy"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "zendframework/zftool": {"type": "string"}}, "required": ["phpunit/phpunit", "zendframework/zftool"]}}, "required": ["name", "description", "license", "keywords", "homepage", "require", "require-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "psyduckmans/accountmanager", "description" : "AccountManager, made by zf2 with 3-tier architecture", "license" : "MIT License", "keywords" : ["account manager", "3-tier", "framework", "zf2"], "homepage" : "http://framework.zend.com/", "require" : {"php" : ">=5.3.3", "zendframework/zendframework" : "2.2.6", "mnapoli/php-di-zf2" : "0.2.0", "mnapoli/php-di" : "3.5.1", "propel/propel1" : "1.7.0", "phpx/ext" : "dev-master", "phpx/propel" : "dev-master", "phpx/proxy" : "dev-master"}, "require-dev" : {"phpunit/phpunit" : "3.7.28", "zendframework/zftool" : "dev-master"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "zendframework/zendframework": {"type": "string"}, "mnapoli/php-di-zf2": {"type": "string"}, "mnapoli/php-di": {"type": "string"}, "propel/propel1": {"type": "string"}, "phpx/ext": {"type": "string"}, "phpx/propel": {"type": "string"}, "phpx/proxy": {"type": "string"}}, "required": ["php", "zendframework/zendframework", "mnapoli/php-di-zf2", "mnapoli/php-di", "propel/propel1", "phpx/ext", "phpx/propel", "phpx/proxy"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "zendframework/zftool": {"type": "string"}}, "required": ["phpunit/phpunit", "zendframework/zftool"]}}, "required": ["name", "description", "license", "keywords", "homepage", "require", "require-dev"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 46836, "cartId" : "228b62d1-cf29-4921-b9a1-19c85792f68b", "preferredProducts" : [2815, 1667, 3169, 1404, 640, 2289, 210, 453, 1374, 1415], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : "MNG002", "lang" : "de", "description" : null, "name" : "Freigesetzte Menge je Unfall", "type" : "Merkmal"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"heading": {"type": "string"}, "headingText": {"type": "string"}, "examples": {"type": "object", "properties": {"usage": {"type": "object", "properties": {"desc": {"type": "string"}}, "required": ["desc"]}, "carousel": {"type": "object", "properties": {"heading": {"type": "string"}, "desc": {"type": "string"}}, "required": ["heading", "desc"]}, "center-active": {"type": "object", "properties": {"heading": {"type": "string"}, "desc": {"type": "string"}}, "required": ["heading", "desc"]}, "custom-icons": {"type": "object", "properties": {"heading": {"type": "string"}, "desc": {"type": "string"}}, "required": ["heading", "desc"]}, "active-class": {"type": "object", "properties": {"heading": {"type": "string"}, "desc": {"type": "string"}}, "required": ["heading", "desc"]}, "multiple": {"type": "object", "properties": {"heading": {"type": "string"}, "desc": {"type": "string"}}, "required": ["heading", "desc"]}, "mandatory": {"type": "object", "properties": {"heading": {"type": "string"}, "desc": {"type": "string"}}, "required": ["heading", "desc"]}}, "required": ["usage", "carousel", "center-active", "custom-icons", "active-class", "multiple", "mandatory"]}, "props": {"type": "object", "properties": {"centerActive": {"type": "string"}, "nextIcon": {"type": "string"}, "prevIcon": {"type": "string"}, "showArrows": {"type": "string"}}, "required": ["centerActive", "nextIcon", "prevIcon", "showArrows"]}, "events": {"type": "object", "properties": {"click:location": {"type": "string"}}, "required": ["click:location"]}, "slots": {"type": "object", "properties": {"next": {"type": "string"}, "prev": {"type": "string"}}, "required": ["next", "prev"]}}, "required": ["heading", "headingText", "examples", "props", "events", "slots"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"heading" : "# \u5e7b\u706f\u7247\u7ec4", "headingText" : "`v-slide-group` \u7ec4\u4ef6\u7528\u4e8e\u663e\u793a\u4f2a\u88c5\u5206\u9875\u4fe1\u606f\u3002 \u5b83\u5728\u5176\u6838\u5fc3\u4e2d\u4f7f\u7528 [v-item-group](/components/item-groups) \u5e76\u4e3a\u8bf8\u5982 [v-tabs](/components/tabs) \u548c [v-chip-group](/components/chip-groups) \u7b49\u7ec4\u4ef6\u63d0\u4f9b\u4e00\u4e2a\u57fa\u7840\u3002", "examples" : {"usage" : {"desc" : "\u4e0e [v-window](/components/windows) \u7ec4\u4ef6\u7c7b\u4f3c\uff0c`v-slide-group` \u53ef\u4ee5\u8ba9\u9879\u76ee\u5360\u7528\u5c3d\u53ef\u80fd\u591a\u7684\u7a7a\u95f4\u3002 \u5141\u8bb8\u7528\u6237\u901a\u8fc7\u63d0\u4f9b\u7684\u4fe1\u606f\u6c34\u5e73\u79fb\u52a8\u3002"}, "carousel" : {"heading" : "### \u4f2a\u8f6e\u64ad", "desc" : "\u81ea\u5b9a\u4e49\u5e7b\u706f\u7247\u7ec4\u4ee5\u5728\u56fe\u7eb8\u4e0a\u521b\u9020\u6027\u5730\u663e\u793a\u4fe1\u606f\u3002 \u4f7f\u7528\u9009\u62e9\uff0c\u6211\u4eec\u53ef\u4ee5\u4e3a\u7528\u6237\u8f7b\u677e\u663e\u793a\u8f85\u52a9\u4fe1\u606f\u3002"}, "center-active" : {"heading" : "### \u5c45\u4e2d\u6d3b\u52a8\u9879\u76ee", "desc" : "\u6d3b\u52a8\u9879\u76ee\u603b\u662f\u5c45\u4e2d"}, "custom-icons" : {"heading" : "\u81ea\u5b9a\u4e49\u56fe\u6807", "desc" : "\u60a8\u53ef\u4ee5\u6dfb\u52a0\u81ea\u5b9a\u4e49\u5206\u9875\u56fe\u6807\uff0c\u800c\u4e0d\u662f\u7bad\u5934"}, "active-class" : {"heading" : "### \u6d3b\u52a8\u7c7b", "desc" : "\u53ef\u4ee5\u81ea\u5b9a\u4e49\u6d3b\u52a8\u7c7b"}, "multiple" : {"heading" : "### \u591a\u9009", "desc" : "\u60a8\u53ef\u4ee5\u9009\u62e9\u591a\u4e2a\u9879\u76ee"}, "mandatory" : {"heading" : "### \u5fc5\u586b\u9879", "desc" : "\u5fc5\u987b\u9009\u62e9\u81f3\u5c11 1 \u4e2a\u9879\u76ee"}}, "props" : {"centerActive" : "\u5f3a\u5236\u5c06\u9009\u4e2d\u7684\u7ec4\u4ef6\u5c45\u4e2d", "nextIcon" : "\u5f53\u7bad\u5934\u663e\u793a\u65f6\u9644\u52a0\u7684\u63d2\u69fd", "prevIcon" : "\u5f53\u7bad\u5934\u663e\u793a\u65f6\uff0c\u9884\u5b9a\u7684\u63d2\u69fd", "showArrows" : "\u603b\u662f\u663e\u793a\u5206\u9875\u7bad\u5934"}, "events" : {"click:location" : "\u5728\u5e7b\u706f\u7247\u7ec4\u5185\u9009\u62e9\u5e7b\u706f\u7247\u9879\u65f6\u53d1\u51fa"}, "slots" : {"next" : "\u4e0b\u4e00\u4e2a\u63d2\u69fd", "prev" : "\u524d\u4e00\u4e2a\u63d2\u69fd"}} | json_instruct | {"type": "object", "properties": {"heading": {"type": "string"}, "headingText": {"type": "string"}, "examples": {"type": "object", "properties": {"usage": {"type": "object", "properties": {"desc": {"type": "string"}}, "required": ["desc"]}, "carousel": {"type": "object", "properties": {"heading": {"type": "string"}, "desc": {"type": "string"}}, "required": ["heading", "desc"]}, "center-active": {"type": "object", "properties": {"heading": {"type": "string"}, "desc": {"type": "string"}}, "required": ["heading", "desc"]}, "custom-icons": {"type": "object", "properties": {"heading": {"type": "string"}, "desc": {"type": "string"}}, "required": ["heading", "desc"]}, "active-class": {"type": "object", "properties": {"heading": {"type": "string"}, "desc": {"type": "string"}}, "required": ["heading", "desc"]}, "multiple": {"type": "object", "properties": {"heading": {"type": "string"}, "desc": {"type": "string"}}, "required": ["heading", "desc"]}, "mandatory": {"type": "object", "properties": {"heading": {"type": "string"}, "desc": {"type": "string"}}, "required": ["heading", "desc"]}}, "required": ["usage", "carousel", "center-active", "custom-icons", "active-class", "multiple", "mandatory"]}, "props": {"type": "object", "properties": {"centerActive": {"type": "string"}, "nextIcon": {"type": "string"}, "prevIcon": {"type": "string"}, "showArrows": {"type": "string"}}, "required": ["centerActive", "nextIcon", "prevIcon", "showArrows"]}, "events": {"type": "object", "properties": {"click:location": {"type": "string"}}, "required": ["click:location"]}, "slots": {"type": "object", "properties": {"next": {"type": "string"}, "prev": {"type": "string"}}, "required": ["next", "prev"]}}, "required": ["heading", "headingText", "examples", "props", "events", "slots"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "roots:block/fey_crafter"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"defaultSeverity": {"type": "string"}, "extends": {"type": "array", "items": {"type": "string"}}, "jsRules": {"type": "object", "properties": {}, "required": []}, "rules": {"type": "object", "properties": {"eofline": {"type": "boolean"}, "indent": {"type": "object", "properties": {"options": {"type": "string"}}, "required": ["options"]}, "no-bitwise": {"type": "boolean"}, "no-console": {"type": "boolean"}, "no-empty": {"type": "boolean"}, "quotemark": {"type": "object", "properties": {"options": {"type": "string"}}, "required": ["options"]}, "semicolon": {"type": "object", "properties": {"options": {"type": "string"}}, "required": ["options"]}, "variable-name": {"type": "object", "properties": {"options": {"type": "array", "items": {"type": "string"}}}, "required": ["options"]}}, "required": ["eofline", "indent", "no-bitwise", "no-console", "no-empty", "quotemark", "semicolon", "variable-name"]}, "rulesDirectory": {"type": "array", "items": {}}}, "required": ["defaultSeverity", "extends", "jsRules", "rules", "rulesDirectory"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"defaultSeverity" : "warning", "extends" : ["tslint:latest"], "jsRules" : {}, "rules" : {"eofline" : false, "indent" : {"options" : "tabs"}, "no-bitwise" : false, "no-console" : false, "no-empty" : false, "quotemark" : {"options" : "single"}, "semicolon" : {"options" : "never"}, "variable-name" : {"options" : ["allow-leading-underscore"]}}, "rulesDirectory" : []} | json_instruct | {"type": "object", "properties": {"defaultSeverity": {"type": "string"}, "extends": {"type": "array", "items": {"type": "string"}}, "jsRules": {"type": "object", "properties": {}, "required": []}, "rules": {"type": "object", "properties": {"eofline": {"type": "boolean"}, "indent": {"type": "object", "properties": {"options": {"type": "string"}}, "required": ["options"]}, "no-bitwise": {"type": "boolean"}, "no-console": {"type": "boolean"}, "no-empty": {"type": "boolean"}, "quotemark": {"type": "object", "properties": {"options": {"type": "string"}}, "required": ["options"]}, "semicolon": {"type": "object", "properties": {"options": {"type": "string"}}, "required": ["options"]}, "variable-name": {"type": "object", "properties": {"options": {"type": "array", "items": {"type": "string"}}}, "required": ["options"]}}, "required": ["eofline", "indent", "no-bitwise", "no-console", "no-empty", "quotemark", "semicolon", "variable-name"]}, "rulesDirectory": {"type": "array", "items": {}}}, "required": ["defaultSeverity", "extends", "jsRules", "rules", "rulesDirectory"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"hamjest": {"type": "string"}, "jest": {"type": "string"}, "ramda": {"type": "string"}}, "required": ["hamjest", "jest", "ramda"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "sym-diff-by-props", "version" : "1.1.2", "description" : "Find the symmetric difference of two arrays of objects by comparing a a set of shared properties", "main" : "index.js", "repository" : "git@github.com:HamburgChimps/sym-diff-by-props.git", "author" : "Alex Olson <alexkellenolson@gmail.com>", "license" : "MIT", "scripts" : {"test" : "jest"}, "devDependencies" : {"hamjest" : "^3.7.1", "jest" : "^26.6.3", "ramda" : "^0.27.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"hamjest": {"type": "string"}, "jest": {"type": "string"}, "ramda": {"type": "string"}}, "required": ["hamjest", "jest", "ramda"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "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" : 101884721, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "21a1655ceac5074846c23799e466e3c8", "wof:id" : 101884721, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.06119573588745, 48.00467144123411, 0.0735140714275, 48.0123991374241], "geometry" : {"coordinates" : [[[0.06847478909742, 48.0123991374241], [0.06882477003768, 48.01061810447737], [0.07015466612921, 48.01073878013068], [0.07050457049604, 48.00895773924236], [0.07183442690183, 48.00907839396859], [0.07200934469779, 48.0081878699379], [0.07333918412144, 48.00830850617348], [0.0735140714275, 48.00741797894057], [0.06686504502215, 48.00681464939635], [0.067040038041, 48.00592413357526], [0.06571027262373, 48.00580342194098], [0.0658852805492, 48.00491290778899], [0.06322581227818, 48.00467144123411], [0.0630507589579, 48.00556195051183], [0.0617210107111, 48.00544119071731], [0.06119573588745, 48.00811270662979], [0.0625255522304, 48.00823347373773], [0.06235046773042, 48.00912397994375], [0.06634001921247, 48.00948619225403], [0.06581492326387, 48.01215772820365], [0.06847478909742, 48.0123991374241]]], "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": {"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" : 404354927, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "ec290fe3e9e868989b0ae05747e025a1", "wof:id" : 404354927, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.79993500612369, 48.35465552057839, 3.86961457710687, 48.42158484886304], "geometry" : {"coordinates" : [[[3.82667065948386, 48.35465552057839], [3.81657277216686, 48.36247228896126], [3.82110458702143, 48.37860911308097], [3.79993500612369, 48.39330229715943], [3.81593441547893, 48.40576221000926], [3.8433893307183, 48.42158484886304], [3.85008570680453, 48.41106451858497], [3.86605844118725, 48.40444405405653], [3.86961457710687, 48.39560081610762], [3.85530011237731, 48.38685169817775], [3.86304519213635, 48.38304371089876], [3.863113298615, 48.37978620165032], [3.85263063197579, 48.37383388614201], [3.84850174969854, 48.37572596002627], [3.8400724099819, 48.37220508376764], [3.83895828494947, 48.36585186506893], [3.82804515027669, 48.35535671685418], [3.82667065948386, 48.35465552057839]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"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" : 81670, "cartId" : "02d51246-83f9-49db-9c34-6b807e50c183", "preferredProducts" : [4927, 2288, 2010], "productReviews" : [{"productId" : 1841, "reviewText" : "My neighbor Zoa has one of these. She works as a scribe and she says it looks wide.", "reviewDate" : "2018-09-03T15:59:58.2779776+03:00"}, {"productId" : 1266, "reviewText" : "It only works when I'm Chad.", "reviewDate" : "2019-01-15T17:17:49.8625925+02:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$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"}, "dependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "browser-sync": {"type": "string"}, "gulp-htmlhint": {"type": "string"}, "gulp-pleeease": {"type": "string"}, "gulp-plumber": {"type": "string"}, "run-sequence": {"type": "string"}, "gulp-sass": {"type": "string"}}, "required": ["gulp", "browser-sync", "gulp-htmlhint", "gulp-pleeease", "gulp-plumber", "run-sequence", "gulp-sass"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}}, "required": ["dev"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gulp-template", "version" : "1.0.0", "description" : "", "main" : "index.js", "dependencies" : {"gulp" : "^3.9.1", "browser-sync" : "^2.10.0", "gulp-htmlhint" : "^0.3.0", "gulp-pleeease" : "^1.2.0", "gulp-plumber" : "^1.0.1", "run-sequence" : "^1.1.5", "gulp-sass" : "^2.1.0"}, "devDependencies" : {}, "scripts" : {"dev" : "npm install && gulp"}, "author" : "yama-dev", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "browser-sync": {"type": "string"}, "gulp-htmlhint": {"type": "string"}, "gulp-pleeease": {"type": "string"}, "gulp-plumber": {"type": "string"}, "run-sequence": {"type": "string"}, "gulp-sass": {"type": "string"}}, "required": ["gulp", "browser-sync", "gulp-htmlhint", "gulp-pleeease", "gulp-plumber", "run-sequence", "gulp-sass"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}}, "required": ["dev"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"PATREON_SPONSOR": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "PATREON_SPONSOR_TITLE": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "PATREON_SPONSOR_TEXT": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "PATREON_SPONSOR_NOW": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "PATREON_SPONSOR_LATER": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}}, "required": ["PATREON_SPONSOR", "PATREON_SPONSOR_TITLE", "PATREON_SPONSOR_TEXT", "PATREON_SPONSOR_NOW", "PATREON_SPONSOR_LATER"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PATREON_SPONSOR" : {"message" : "Parrainer", "description" : "Menu item that appears in the main menu"}, "PATREON_SPONSOR_TITLE" : {"message" : "Merci de parrainer le projet Wyliodrin STUDIO", "description" : "Title text to ask users to sponsor Wyliodrin STUDIO"}, "PATREON_SPONSOR_TEXT" : {"message" : "Wyliodrin STUDIO est un projet gratuit et open source. Votre parrainage nous permet de maintenir le projet et de le proposer gratuitement. Je vous remercie.", "description" : "Text to ask users to sponsor Wyliodrin STUDIO"}, "PATREON_SPONSOR_NOW" : {"message" : "Parrainer", "description" : "Button to click and go to the sponsor link"}, "PATREON_SPONSOR_LATER" : {"message" : "Plus tard", "description" : "Button to click and sponsor later"}} | json_instruct | {"type": "object", "properties": {"PATREON_SPONSOR": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "PATREON_SPONSOR_TITLE": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "PATREON_SPONSOR_TEXT": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "PATREON_SPONSOR_NOW": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "PATREON_SPONSOR_LATER": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}}, "required": ["PATREON_SPONSOR", "PATREON_SPONSOR_TITLE", "PATREON_SPONSOR_TEXT", "PATREON_SPONSOR_NOW", "PATREON_SPONSOR_LATER"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"raw_seq_data": {"type": "string"}, "train_file": {"type": "string"}, "dev_file": {"type": "string"}, "test_file": {"type": "string"}, "embedding_weight": {"type": "string"}}, "required": ["raw_seq_data", "train_file", "dev_file", "test_file", "embedding_weight"]}, "vocab": {"type": "object", "properties": {"load_vocab": {"type": "string"}, "save_vocab": {"type": "string"}}, "required": ["load_vocab", "save_vocab"]}, "model": {"type": "object", "properties": {"load_model": {"type": "string"}, "save_model": {"type": "string"}}, "required": ["load_model", "save_model"]}}, "required": ["data", "vocab", "model"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"raw_seq_data" : "./data/API/data/all_remove_domain_clean_new.txt", "train_file" : "./data/API/data/jdbc_clean_oneseq.txt", "dev_file" : "./data/SST2/dev.txt", "test_file" : "./data/API/misuse_data.txt", "embedding_weight" : "./data/API/data/api_embedding_256_token_removedomain_par.txt"}, "vocab" : {"load_vocab" : "./data/API/trained_model_-1_cs", "save_vocab" : "./vocab/word_vocab.pkl"}, "model" : {"load_model" : "./data/API/trained_model_-1_jdbc", "save_model" : "./vocab/word_vocab.pkl"}} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"raw_seq_data": {"type": "string"}, "train_file": {"type": "string"}, "dev_file": {"type": "string"}, "test_file": {"type": "string"}, "embedding_weight": {"type": "string"}}, "required": ["raw_seq_data", "train_file", "dev_file", "test_file", "embedding_weight"]}, "vocab": {"type": "object", "properties": {"load_vocab": {"type": "string"}, "save_vocab": {"type": "string"}}, "required": ["load_vocab", "save_vocab"]}, "model": {"type": "object", "properties": {"load_model": {"type": "string"}, "save_model": {"type": "string"}}, "required": ["load_model", "save_model"]}}, "required": ["data", "vocab", "model"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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" : [595.673, 301.835, 1, 588.633, 317.032, 1, 570.382, 331.905, 1, 590.039, 343.721, 1, 586.148, 313.277, 1, 606.849, 311.152, 1, 638.56, 339.915, 1, 629.937, 376.193, 1, 599.631, 419.917, 1, 612.157, 492.961, 1, 567.017, 458.185, 1, 632.173, 405.477, 1, 696.319, 400.509, 1, 708.63, 475.689, 1, 586.445, 299.488, 1, 597.436, 298.94, 1, 570.729, 300.848, 1, 600.205, 291.893, 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "320411105001", "text" : "\u534e\u5885\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "320411105002", "text" : "\u6d66\u6cb3\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "320411105003", "text" : "\u6c60\u4e0a\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "320411105004", "text" : "\u4e3d\u6c5f\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "320411105005", "text" : "\u9999\u5c71\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "320411105200", "text" : "\u4e1c\u5357\u6751\u6751\u59d4\u4f1a"}, {"id" : "320411105203", "text" : "\u6885\u6797\u6751\u6751\u59d4\u4f1a"}, {"id" : "320411105205", "text" : "\u6c34\u5854\u53e3\u6751\u6751\u59d4\u4f1a"}, {"id" : "320411105208", "text" : "\u89c2\u5e84\u6751\u6751\u59d4\u4f1a"}, {"id" : "320411105213", "text" : "\u6d66\u897f\u6751\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-89.871258, 35.182872], [-89.869316, 35.187162], [-89.868781, 35.19853], [-89.8648, 35.202257], [-89.86417, 35.204737], [-89.842025, 35.204747], [-89.834406, 35.205482], [-89.859494, 35.180804], [-89.871258, 35.182872]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 59826}}]} | 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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"pngjs": {"type": "string"}}, "required": ["pngjs"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "png-scale", "version" : "1.0.3", "description" : "PNG scaling for Node.js depending only on pngjs.", "main" : "index.js", "directories" : {"test" : "test"}, "scripts" : {"test" : "node test/test.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/jjstiff/png-scale.git"}, "keywords" : ["png", "scale", "resize"], "author" : "JJ Stiff", "license" : "MIT", "bugs" : {"url" : "https://github.com/jjstiff/png-scale/issues"}, "homepage" : "https://github.com/jjstiff/png-scale#readme", "dependencies" : {"pngjs" : "^3.3.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"pngjs": {"type": "string"}}, "required": ["pngjs"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"antd-with-locales.js": {"type": "string"}, "antd-with-locales.min.js": {"type": "string"}, "antd.css": {"type": "string"}, "antd.js": {"type": "string"}, "antd.min.css": {"type": "string"}, "antd.min.js": {"type": "string"}}, "required": ["antd-with-locales.js", "antd-with-locales.min.js", "antd.css", "antd.js", "antd.min.css", "antd.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"antd-with-locales.js" : "sha512-1SPGNFElP1CsbUzlAMNb6TVvUhbD1YbxUznSSKLp78IjIDYjrjSekqSI0VzLJVKuP+3DesJXSRe/iYvl03XLpw==", "antd-with-locales.min.js" : "sha512-2a0XpBV9RQ7riK7f8pYZmN0OFPY0Q+2tBUDmu27d0jNgzfoWATjXshcG1vuVp98JqXMP6d1qKN+ilDuk3Z6tgg==", "antd.css" : "sha512-OKsRg8KKndkRNWjkXEp18uL3QdTlWUp1YpYzLEorJf8DIqs40w4PUWhBTxPE9+G4j3UTYsR6qjXIKn54WVjV3w==", "antd.js" : "sha512-Xktfah6/AaA6fjwv0L0M7aFt0++FXpiMUd80tcmTAPDHOcEAzYgMhRDynOGbRAPuIonsb4S1aQymnx/KUn+jow==", "antd.min.css" : "sha512-g7FgYLc7AqcczVt/Ah9BgwbO9y1YCQhVU1rn3uyL5ye1yZiE5ttdG0hDQNgfcXT8PYIGEpnTFmOJvsoY+8Ancw==", "antd.min.js" : "sha512-CThSaPERvgCiZXK+mMjBxTkKfOroUlwxSWsrfRexB4wEpPJdAHh7hmKrFhBqve1tlNtjKkhA6UV7k6/R+KATXw=="} | json_instruct | {"type": "object", "properties": {"antd-with-locales.js": {"type": "string"}, "antd-with-locales.min.js": {"type": "string"}, "antd.css": {"type": "string"}, "antd.js": {"type": "string"}, "antd.min.css": {"type": "string"}, "antd.min.js": {"type": "string"}}, "required": ["antd-with-locales.js", "antd-with-locales.min.js", "antd.css", "antd.js", "antd.min.css", "antd.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "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" : 101762483, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "26444ff741ae979b8da04a55507fbc8b", "wof:id" : 101762483, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-1.83980639871396, 48.14684970183362, -1.81559148557869, 48.16014773049886], "geometry" : {"coordinates" : [[[-1.83280194924623, 48.16014773049886], [-1.83259268442521, 48.15926120173555], [-1.82860368600313, 48.15969233796096], [-1.82839449791834, 48.15880579956291], [-1.82440550537609, 48.15923678306086], [-1.82419639402599, 48.15835023503138], [-1.8215370764355, 48.15863747154896], [-1.82132801933989, 48.15775091679239], [-1.81733905912893, 48.15818164284917], [-1.81713007876328, 48.15729507846731], [-1.81580043417188, 48.15743861891542], [-1.81559148557869, 48.15655205070959], [-1.81692110769325, 48.15640851316113], [-1.81629425025051, 48.15374881169583], [-1.82028287333617, 48.1533181291378], [-1.81986488001115, 48.15154500760195], [-1.8225238380266, 48.15125781749401], [-1.82231481036848, 48.15037126113873], [-1.82497369611713, 48.15008401283325], [-1.8247646328204, 48.14919746135371], [-1.82609404297881, 48.14905381610322], [-1.82567589934683, 48.14728071616929], [-1.82966395403065, 48.14684970183362], [-1.8302913856088, 48.14950932423324], [-1.8356089657222, 48.14893437965475], [-1.83539972270518, 48.14804785139131], [-1.83938776859691, 48.14761648368795], [-1.83980639871396, 48.14938952186594], [-1.83714761844158, 48.149677127948], [-1.83840346263065, 48.15499625509068], [-1.83574438538864, 48.15528383202519], [-1.83679095352414, 48.15971644154354], [-1.83280194924623, 48.16014773049886]]], "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}}, "required": ["name", "id"]}}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : [{"name" : "Me ligue dentro de 5 minutos", "id" : 1}, {"name" : "Me ligue em um hor\u00e1rio espec\u00edfico", "id" : 2}, {"name" : "Agendamento por e-mail", "id" : 3}, {"name" : "Agendamento por Whatsapp", "id" : 4}]} | json_instruct | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}}, "required": ["name", "id"]}}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "59243285", "name" : "Cotswold Avenue", "nodes" : [{"type" : "node", "id" : 297542672, "lat" : 52.2504973, "lon" : -0.9324731}, {"type" : "node", "id" : 734794397, "lat" : 52.2505383, "lon" : -0.9327007}], "volunteer_postcode" : "NN5 6AR", "closest_distance" : 360} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[150.625, 41.166666666666664], [150.625, 41.25], [150.75, 41.25], [150.75, 41.166666666666664], [150.625, 41.166666666666664]]]}, "properties" : {"code" : 615065, "url" : "http://madefor.github.io/0410/api/v1/615065.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/615065.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create 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": {"test": {"type": "string"}}, "required": ["test"]}, "bin": {"type": "object", "properties": {"jbfc": {"type": "string"}}, "required": ["jbfc"]}, "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"}}, "required": ["name", "version", "description", "main", "scripts", "bin", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jbfc", "version" : "1.0.0", "description" : "Jack's BF Compiler written in OCaml", "main" : "jbfc.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "bin" : {"jbfc" : "jbfc.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/jackprogramsjp/jbfc.git"}, "keywords" : ["JBFC", "BF", "Compiler", "BFC", "OCaml"], "author" : "Jack Murrow", "license" : "MIT", "bugs" : {"url" : "https://github.com/jackprogramsjp/jbfc/issues"}, "homepage" : "https://github.com/jackprogramsjp/jbfc#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "bin": {"type": "object", "properties": {"jbfc": {"type": "string"}}, "required": ["jbfc"]}, "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"}}, "required": ["name", "version", "description", "main", "scripts", "bin", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.96": {"type": "integer"}, "0.81": {"type": "integer"}, "0.89": {"type": "integer"}, "0.63": {"type": "integer"}, "0.95": {"type": "integer"}, "0.99": {"type": "integer"}, "0.01": {"type": "integer"}, "0.64": {"type": "integer"}, "1.0": {"type": "integer"}, "0.27": {"type": "integer"}, "0.13": {"type": "integer"}, "0.94": {"type": "integer"}}, "required": ["0.96", "0.81", "0.89", "0.63", "0.95", "0.99", "0.01", "0.64", "1.0", "0.27", "0.13", "0.94"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hour positive count" : 17, "hour neutral count" : 3, "hour negative count" : 3, "hour distri" : {"0.96" : 2, "0.81" : 1, "0.89" : 1, "0.63" : 1, "0.95" : 1, "0.99" : 6, "0.01" : 1, "0.64" : 1, "1.0" : 6, "0.27" : 1, "0.13" : 1, "0.94" : 1}} | json_instruct | {"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.96": {"type": "integer"}, "0.81": {"type": "integer"}, "0.89": {"type": "integer"}, "0.63": {"type": "integer"}, "0.95": {"type": "integer"}, "0.99": {"type": "integer"}, "0.01": {"type": "integer"}, "0.64": {"type": "integer"}, "1.0": {"type": "integer"}, "0.27": {"type": "integer"}, "0.13": {"type": "integer"}, "0.94": {"type": "integer"}}, "required": ["0.96", "0.81", "0.89", "0.63", "0.95", "0.99", "0.01", "0.64", "1.0", "0.27", "0.13", "0.94"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"$schema": {"type": "string"}, "info": {"type": "object", "properties": {"title": {"type": "string"}, "callsign": {"type": "string"}, "locator": {"type": "string"}, "status": {"type": "string"}, "version": {"type": "string"}}, "required": ["title", "callsign", "locator", "status", "version"]}, "interface": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["$schema", "info", "interface"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "plugin.schema.json", "info" : {"title" : "OpenCDMi Plugin", "callsign" : "OCDM", "locator" : "libWPEFrameworkOCDM.so", "status" : "production", "version" : "1.0"}, "interface" : {"$ref" : "{interfacedir}/OpenCDMi.json#"}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "info": {"type": "object", "properties": {"title": {"type": "string"}, "callsign": {"type": "string"}, "locator": {"type": "string"}, "status": {"type": "string"}, "version": {"type": "string"}}, "required": ["title", "callsign", "locator", "status", "version"]}, "interface": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["$schema", "info", "interface"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"msg": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"from_address": {"type": "string"}, "to_address": {"type": "string"}, "amount": {"type": "array", "items": {"type": "object", "properties": {"denom": {"type": "string"}, "amount": {"type": "string"}}, "required": ["denom", "amount"]}}}, "required": ["from_address", "to_address", "amount"]}}, "required": ["type", "value"]}}, "fee": {"type": "object", "properties": {"amount": {"type": "array", "items": {}}, "gas": {"type": "string"}}, "required": ["amount", "gas"]}, "signatures": {"type": "array", "items": {"type": "object", "properties": {"pub_key": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "signature": {"type": "string"}}, "required": ["pub_key", "signature"]}}, "memo": {"type": "string"}}, "required": ["msg", "fee", "signatures", "memo"]}}, "required": ["type", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "cosmos-sdk/StdTx", "value" : {"msg" : [{"type" : "cosmos-sdk/MsgSend", "value" : {"from_address" : "cosmos1nr0j3sgz5ukazskl2hafvt3ylsd2qzuwa0htn4", "to_address" : "cosmos1gqq25k62mysk0wwxzcfplsfygjpssvd7srs7yg", "amount" : [{"denom" : "atom", "amount" : "1"}]}}], "fee" : {"amount" : [], "gas" : "200000"}, "signatures" : [{"pub_key" : {"type" : "tendermint/PubKeySecp256k1", "value" : "A5yW9jTAHiq66qNlcZm4Jix4Ef28qfXvT7xk9eRsITsc"}, "signature" : "O8cMhBR7IpRVdJgJ7uh0E+qKp/3gQ1YNAh5HibV2qq8jc5k8sVO6/faXdysyC4q+qeYdnN3TOBLJRb5h7+0bGA=="}], "memo" : ""}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"msg": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"from_address": {"type": "string"}, "to_address": {"type": "string"}, "amount": {"type": "array", "items": {"type": "object", "properties": {"denom": {"type": "string"}, "amount": {"type": "string"}}, "required": ["denom", "amount"]}}}, "required": ["from_address", "to_address", "amount"]}}, "required": ["type", "value"]}}, "fee": {"type": "object", "properties": {"amount": {"type": "array", "items": {}}, "gas": {"type": "string"}}, "required": ["amount", "gas"]}, "signatures": {"type": "array", "items": {"type": "object", "properties": {"pub_key": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "signature": {"type": "string"}}, "required": ["pub_key", "signature"]}}, "memo": {"type": "string"}}, "required": ["msg", "fee", "signatures", "memo"]}}, "required": ["type", "value"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "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": ["person_id", "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.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [86.6482, 290.477, 0.969626, 84.7946, 319.843, 0.932705, 53.474, 319.756, 0.936588, 51.3985, 360.949, 0.867492, 82.8042, 321.863, 0.933517, 116.072, 319.895, 0.955443, 131.697, 362.973, 0.893059, 115.996, 392.311, 0.87136, 86.6906, 388.455, 0.773712, 69.0239, 390.348, 0.757997, 53.4647, 392.314, 0.849671, 67.1445, 478.452, 0.893281, 104.358, 388.387, 0.747824, 135.76, 396.182, 0.859937, 131.722, 476.527, 0.885449, 78.8834, 288.388, 0.900164, 90.6478, 286.461, 0.874681, 69.0146, 290.382, 0.942754, 102.291, 288.452, 0.861014, 135.73, 488.323, 0.654117, 147.377, 484.381, 0.692956, 121.944, 480.448, 0.700546, 67.1172, 492.274, 0.782526, 55.3407, 492.204, 0.816683, 71.0118, 482.454, 0.742237], "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": {"person_id": {"type": "array", "items": {"type": "integer"}}, "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": ["person_id", "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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "Description"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features" : [{"type" : "Feature", "properties" : {"Name" : "ARACAJU", "Description" : "ARACAJU / SE"}, "geometry" : {"type" : "LineString", "coordinates" : [[-37.039817299828485, -10.884095441651255], [-37.04402821163262, -10.909966428707662], [-37.03907663977509, -10.945341095015465], [-37.02625576169402, -10.964168140347338], [-37.02911758251036, -10.972665335236968], [-37.06130827016051, -11.00731071521727], [-37.117293573039944, -11.08930156621426], [-37.13979485434902, -11.12628477342349], [-37.15238859695614, -11.16272881548241], [-37.1645136461878, -11.150337732400374], [-37.166387758688074, -11.105358766194058], [-37.16213069367654, -11.0938162546164], [-37.173691340083224, -11.080345081260417], [-37.161052354382605, -11.058365114458411], [-37.13914356981985, -11.062859194895907], [-37.091390372267824, -10.940963421025003], [-37.10206238237299, -10.917132133241296], [-37.107517402805854, -10.904797418765838], [-37.0973247088682, -10.88235252315036], [-37.083335930708586, -10.863138040887804], [-37.06605886512449, -10.876317558708308], [-37.0524570517515, -10.862681691606724], [-37.03390906694983, -10.87008419842698], [-37.039817299828485, -10.884095441651255]]}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "Description"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"artist_id" : "ARBCKKC1187B9A6261", "artist_latitude" : 40.71455, "artist_location" : "New York, NY", "artist_longitude" : -74.00712, "artist_name" : "Free Kitten", "duration" : 164.23138, "num_songs" : 1, "song_id" : "SOXAMCL12A8C139E2F", "title" : "What\u0019s Fair", "year" : 1994} | json_instruct | {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"host": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}}, "required": ["host", "args"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"host" : "this-file-was-included-in-tarball", "args" : ["--attach", "--fetch-headers"]} | json_instruct | {"type": "object", "properties": {"host": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}}, "required": ["host", "args"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"421222100": {"type": "string"}, "421222101": {"type": "string"}, "421222102": {"type": "string"}, "421222103": {"type": "string"}, "421222104": {"type": "string"}, "421222105": {"type": "string"}, "421222106": {"type": "string"}, "421222107": {"type": "string"}, "421222108": {"type": "string"}, "421222200": {"type": "string"}, "421222201": {"type": "string"}, "421222500": {"type": "string"}, "421222501": {"type": "string"}, "421222502": {"type": "string"}, "421222503": {"type": "string"}, "421222504": {"type": "string"}}, "required": ["421222100", "421222101", "421222102", "421222103", "421222104", "421222105", "421222106", "421222107", "421222108", "421222200", "421222201", "421222500", "421222501", "421222502", "421222503", "421222504"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"421222100" : "\u96bd\u6c34\u9547", "421222101" : "\u9ea6\u5e02\u9547", "421222102" : "\u5858\u6e56\u9547", "421222103" : "\u5173\u5200\u9547", "421222104" : "\u6c99\u5806\u9547", "421222105" : "\u4e94\u91cc\u9547", "421222106" : "\u77f3\u5357\u9547", "421222107" : "\u5317\u6e2f\u9547", "421222108" : "\u9a6c\u6e2f\u9547", "421222200" : "\u56db\u5e84\u4e61", "421222201" : "\u5927\u576a\u4e61", "421222500" : "\u9e7f\u89d2\u5c71\u6797\u573a", "421222501" : "\u9521\u5c71\u68ee\u6797\u516c\u56ed\u7ba1\u7406\u5904", "421222502" : "\u9ec4\u9f99\u6797\u573a", "421222503" : "\u9ec4\u888d\u6797\u573a", "421222504" : "\u836f\u59d1\u6797\u573a"} | json_instruct | {"type": "object", "properties": {"421222100": {"type": "string"}, "421222101": {"type": "string"}, "421222102": {"type": "string"}, "421222103": {"type": "string"}, "421222104": {"type": "string"}, "421222105": {"type": "string"}, "421222106": {"type": "string"}, "421222107": {"type": "string"}, "421222108": {"type": "string"}, "421222200": {"type": "string"}, "421222201": {"type": "string"}, "421222500": {"type": "string"}, "421222501": {"type": "string"}, "421222502": {"type": "string"}, "421222503": {"type": "string"}, "421222504": {"type": "string"}}, "required": ["421222100", "421222101", "421222102", "421222103", "421222104", "421222105", "421222106", "421222107", "421222108", "421222200", "421222201", "421222500", "421222501", "421222502", "421222503", "421222504"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Preheat an oven to 350 degrees F (175 degrees C). Grease a 2 1/2 x 8 1/2-inch loaf pan with butter. Whisk the flour, oats, baking powder, and salt together in a bowl; set aside.", "Whisk the eggs in a mixing bowl until smooth. Beat in the bananas, sour cream, and melted butter. Add the sugar, cranberries, and lemon juice; beat until evenly blended. Fold into the oat mixture until no dry lumps remain. Pour into the prepared loaf pan.", "Bake in the preheated oven until a toothpick inserted into the center comes out clean, 45 to 50 minutes. Cool in the pans for 10 minutes before removing to cool completely on a wire rack."], "ingredients" : ["1 1/4 cups all-purpose flour", "1 cup quick cooking oats", "1 tablespoon baking powder", "1/2 teaspoon salt", "2 large eggs", "1 1/4 cups mashed ripe bananas", "2 tablespoons sour cream", "1/3 cup melted butter", "1/2 cup white sugar", "3/4 cup dried cranberries", "1/2 teaspoon lemon juice"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Cranberry Banana Oat Bread", "url" : "http://allrecipes.com/recipe/216540/cranberry-banana-oat-bread/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"_changelist": {"type": "string"}, "_version": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "value": {"type": "integer"}}, "required": ["id", "name", "value"]}}, "dataset_uuids": {"type": "array", "items": {}}, "id": {"type": "string"}, "plotGroups": {"type": "array", "items": {}}, "tables": {"type": "array", "items": {}}, "title": {"type": "string"}}, "required": ["_changelist", "_version", "attributes", "dataset_uuids", "id", "plotGroups", "tables", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_changelist" : "UNKNOWN", "_version" : "0.3.10", "attributes" : [{"id" : "pbtranscript_classify.num_reads", "name" : "Number of consensus reads", "value" : 2}, {"id" : "pbtranscript_classify.num_5_seen", "name" : "Number of five prime reads", "value" : 2}, {"id" : "pbtranscript_classify.num_3_seen", "name" : "Number of three prime reads", "value" : 2}, {"id" : "pbtranscript_classify.num_polya_seen", "name" : "Number of poly-A reads", "value" : 2}, {"id" : "pbtranscript_classify.num_filtered_short_reads", "name" : "Number of filtered short reads", "value" : 0}, {"id" : "pbtranscript_classify.num_nfl", "name" : "Number of non-full-length reads", "value" : 0}, {"id" : "pbtranscript_classify.num_fl", "name" : "Number of full-length reads", "value" : 2}, {"id" : "pbtranscript_classify.num_flnc", "name" : "Number of full-length non-chimeric reads", "value" : 2}, {"id" : "pbtranscript_classify.num_flnc_bases", "name" : "Number of full-length non-chimeric bases", "value" : 2000}, {"id" : "pbtranscript_classify.avg_flnc_len", "name" : "Average full-length non-chimeric read length", "value" : 1000}], "dataset_uuids" : [], "id" : "pbtranscript_classify", "plotGroups" : [], "tables" : [], "title" : "Report pbtranscript_classify"} | json_instruct | {"type": "object", "properties": {"_changelist": {"type": "string"}, "_version": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "value": {"type": "integer"}}, "required": ["id", "name", "value"]}}, "dataset_uuids": {"type": "array", "items": {}}, "id": {"type": "string"}, "plotGroups": {"type": "array", "items": {}}, "tables": {"type": "array", "items": {}}, "title": {"type": "string"}}, "required": ["_changelist", "_version", "attributes", "dataset_uuids", "id", "plotGroups", "tables", "title"], "$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"}, "icon": {"type": "string"}, "category": {"type": "string"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}}, "required": ["name", "icon", "category", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Small Ghast", "icon" : "player_companions:small_ghast_default", "category" : "player_companions:companions", "pages" : [{"type" : "patchouli:text", "text" : "Small Ghast are not easy to catch, but once you became friend with one he will protect you for the rest of his live.$(br)They will shoot small fireballs to your targets and some hostile mob as well."}, {"type" : "patchouli:entity", "entity" : "player_companions:small_ghast", "scale" : 1.5, "offset" : -0.1, "text" : "They live in the nether / nether wastes and like eating fresh bones."}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}}, "required": ["name", "icon", "category", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"op": {"type": "string"}, "path": {"type": "string"}, "value": {"type": "object", "properties": {"botocore": {"type": "string"}}, "required": ["botocore"]}}, "required": ["op", "path", "value"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"op" : "add", "path" : "/ValueTypes/AWS::CodeDeploy::Application.ComputePlatform", "value" : {"botocore" : "codedeploy/2014-10-06/ComputePlatform"}}, {"op" : "add", "path" : "/ValueTypes/AWS::CodeDeploy::DeploymentGroup.AutoRollbackConfiguration.Events", "value" : {"botocore" : "codedeploy/2014-10-06/AutoRollbackEvent"}}, {"op" : "add", "path" : "/ValueTypes/AWS::CodeDeploy::DeploymentConfig.MinimumHealthyHosts.Type", "value" : {"botocore" : "codedeploy/2014-10-06/MinimumHealthyHostsType"}}, {"op" : "add", "path" : "/ValueTypes/AWS::CodeDeploy::DeploymentGroup.DeploymentStyle.DeploymentOption", "value" : {"botocore" : "codedeploy/2014-10-06/DeploymentOption"}}, {"op" : "add", "path" : "/ValueTypes/AWS::CodeDeploy::DeploymentGroup.DeploymentStyle.DeploymentType", "value" : {"botocore" : "codedeploy/2014-10-06/DeploymentType"}}, {"op" : "add", "path" : "/ValueTypes/WS::CodeDeploy::DeploymentGroup.TriggerConfig.TriggerEvents", "value" : {"botocore" : "codedeploy/2014-10-06/TriggerEventType"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"op": {"type": "string"}, "path": {"type": "string"}, "value": {"type": "object", "properties": {"botocore": {"type": "string"}}, "required": ["botocore"]}}, "required": ["op", "path", "value"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0xf6903f504009676238c486332e7645652546ecd6f5eb29db0954daf2b77d10fb", "parentHash" : "0x6ba65fa736b5aff611897d87d557817ab9093da234650cbd80015c9737fa10e3", "number" : 14926, "timestamp" : 1438405608, "nonce" : "0x7de02b8ec81cd9bc", "difficulty" : 862580077222, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xbb7B8287f3F0a933474a79eAe42CBCa977791171", "extraData" : "0x476574682f4c5649562f76312e302e302f6c696e75782f676f312e342e32", "transactions" : []} | 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": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101777545, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "7559f057064dd5b64a49ce396901c902", "wof:id" : 101777545, "wof:repo" : "whosonfirst-data-admin-es"}, "bbox" : [-3.53953, 38.34162, -3.53953, 38.34162], "geometry" : {"coordinates" : [-3.53953, 38.34162], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "PROBOLINGGO", "originalFilename" : "MAHDI.JPG", "namaPartai" : "Partai Persatuan pembangunan", "id" : 94281, "noUrut" : 1, "nama" : "MAHDI, SE., SH.", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PASURUAN", "originalFilename" : "AHMAD MAWARDI.JPG", "namaPartai" : "Partai Persatuan pembangunan", "id" : 235241, "noUrut" : 2, "nama" : "H. AHMAD MAWARDI, S.Ag", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA PROBOLINGGO", "originalFilename" : "IDA INDRIYANI.JPG", "namaPartai" : "Partai Persatuan pembangunan", "id" : 198366, "noUrut" : 3, "nama" : "IDA INDRAYANI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "PROBOLINGGO", "originalFilename" : "4X6 FOTO.JPG", "namaPartai" : "Partai Persatuan pembangunan", "id" : 190944, "noUrut" : 4, "nama" : "BELA SAVIRA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA SURABAYA", "originalFilename" : "WhatsApp Image 2018-07-25 at 20.04.31.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 286469, "noUrut" : 5, "nama" : "ACHMAD SUUD, S.Kom", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA SURABAYA", "originalFilename" : "ARMADAN MATYADI.jpeg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 247345, "noUrut" : 6, "nama" : "ARMADAN MATYADI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PROBOLINGGO", "originalFilename" : "4X6 FOTO.JPG", "namaPartai" : "Partai Persatuan pembangunan", "id" : 190835, "noUrut" : 7, "nama" : "AYU AGUSTIN", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA SURABAYA", "originalFilename" : "ACHMAD SIDQUS_1_foto-1.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 96404, "noUrut" : 8, "nama" : "H. ACHMAD SIDQUS SYAHDI, SE", "stringJenisKelamin" : "Laki-Laki"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "user": {"type": "string"}, "text": {"type": "string"}, "ts": {"type": "string"}}, "required": ["type", "user", "text", "ts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"type" : "message", "user" : "U1VT657T4", "text" : "anyone around?", "ts" : "1477210844.000277"}, {"type" : "message", "user" : "U1VT657T4", "text" : "I am getting an ERROR [validator_cli] Config is not compatible with data files found on restore. Keyerror on '/MarketPlaceTransaction'", "ts" : "1477210862.000278"}, {"type" : "message", "user" : "U1VT657T4", "text" : "trying to debug though", "ts" : "1477210883.000279"}, {"type" : "message", "user" : "U1VT657T4", "text" : "I got the error while I ran the command ./bin/txnvalidator -v --genesis -F mktplace.transactions.market_place", "ts" : "1477210905.000280"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "user": {"type": "string"}, "text": {"type": "string"}, "ts": {"type": "string"}}, "required": ["type", "user", "text", "ts"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"\uc870\uc120\ubbfc\uc8fc\uc8fc\uc758\uc778\ubbfc\uacf5\ud654\uad6d": {"type": "string"}}, "required": ["\uc870\uc120\ubbfc\uc8fc\uc8fc\uc758\uc778\ubbfc\uacf5\ud654\uad6d"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\uc870\uc120\ubbfc\uc8fc\uc8fc\uc758\uc778\ubbfc\uacf5\ud654\uad6d" : "KP"} | json_instruct | {"type": "object", "properties": {"\uc870\uc120\ubbfc\uc8fc\uc8fc\uc758\uc778\ubbfc\uacf5\ud654\uad6d": {"type": "string"}}, "required": ["\uc870\uc120\ubbfc\uc8fc\uc8fc\uc758\uc778\ubbfc\uacf5\ud654\uad6d"], "$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"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "511621110001", "text" : "\u987e\u5174\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "511621110002", "text" : "\u91d1\u57ce\u5c71\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "511621110003", "text" : "\u53cc\u9f99\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "511621110004", "text" : "\u987e\u4e1c\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "511621110201", "text" : "\u5e7f\u4f5b\u5bfa\u6751\u59d4\u4f1a"}, {"id" : "511621110202", "text" : "\u4e30\u8c37\u5bfa\u6751\u59d4\u4f1a"}, {"id" : "511621110203", "text" : "\u5927\u575d\u6751\u59d4\u4f1a"}, {"id" : "511621110204", "text" : "\u5e72\u575d\u5b50\u6751\u59d4\u4f1a"}, {"id" : "511621110205", "text" : "\u7f57\u5bb6\u576a\u6751\u59d4\u4f1a"}, {"id" : "511621110207", "text" : "\u9a91\u9f99\u5e99\u6751\u59d4\u4f1a"}, {"id" : "511621110211", "text" : "\u5927\u56ed\u5cbd\u6751\u59d4\u4f1a"}, {"id" : "511621110212", "text" : "\u5357\u6865\u575d\u6751\u59d4\u4f1a"}, {"id" : "511621110213", "text" : "\u9e7f\u5b50\u575d\u6751\u59d4\u4f1a"}, {"id" : "511621110215", "text" : "\u5218\u5bb6\u5e99\u6751\u59d4\u4f1a"}, {"id" : "511621110226", "text" : "\u7f8a\u5c71\u89c2\u6751\u59d4\u4f1a"}, {"id" : "511621110230", "text" : "\u56e2\u575d\u6751\u59d4\u4f1a"}, {"id" : "511621110232", "text" : "\u7ea2\u5e99\u5bfa\u6751\u59d4\u4f1a"}, {"id" : "511621110235", "text" : "\u89c2\u6865\u6751\u59d4\u4f1a"}, {"id" : "511621110236", "text" : "\u7f8a\u5c71\u6e56\u6751\u59d4\u4f1a"}, {"id" : "511621110237", "text" : "\u9ad8\u6865\u6751\u59d4\u4f1a"}, {"id" : "511621110238", "text" : "\u767d\u7f8a\u5e99\u6751\u59d4\u4f1a"}, {"id" : "511621110239", "text" : "\u4e2d\u548c\u5e99\u6751\u59d4\u4f1a"}, {"id" : "511621110240", "text" : "\u4fdd\u5168\u5bfa\u6751\u59d4\u4f1a"}, {"id" : "511621110241", "text" : "\u53cc\u9122\u6751\u59d4\u4f1a"}, {"id" : "511621110242", "text" : "\u9f99\u9a6c\u6865\u6751\u59d4\u4f1a"}, {"id" : "511621110243", "text" : "\u4e1c\u677f\u6751\u59d4\u4f1a"}, {"id" : "511621110244", "text" : "\u6843\u82b1\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "511621110245", "text" : "\u65b0\u4e09\u597d\u6751\u59d4\u4f1a"}, {"id" : "511621110246", "text" : "\u4e24\u4f1a\u6865\u6751\u59d4\u4f1a"}, {"id" : "511621110247", "text" : "\u8d75\u4f70\u5e99\u6751\u59d4\u4f1a"}, {"id" : "511621110248", "text" : "\u5c06\u519b\u6751\u59d4\u4f1a"}, {"id" : "511621110249", "text" : "\u957f\u7530\u6751\u59d4\u4f1a"}, {"id" : "511621110250", "text" : "\u9752\u4e91\u5802\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
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" : "unregeneration", "definition" : "Unregeneracy."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "reasons": {"type": "array", "items": {}}, "status": {"type": "string"}, "risk_level": {"type": "string"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}, "summary": {"type": "string"}, "establishment": {"type": "null"}, "impacted_products": {"type": "array", "items": {}}, "quantity_recovered": {"type": "integer"}, "quantity_unit": {"type": "string"}, "states": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "url", "reasons", "status", "risk_level", "start_date", "end_date", "summary", "establishment", "impacted_products", "quantity_recovered", "quantity_unit", "states"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "024-2015", "title" : "Ohio Firm Recalls Salami Products Due To Possible Temperature Abuse", "url" : "https://www.fsis.usda.gov/recalls-alerts/ohio-firm-recalls-salami-products-due-possible-temperature-abuse", "reasons" : [], "status" : "Closed", "risk_level" : "High", "start_date" : "2015-01-30", "end_date" : "2016-06-08", "summary" : "WASHINGTON, Jan. 30, 2015 Great Lakes Smoked Meats, a Lorain, Ohio establishment, is recalling approximately 2,863 pounds of smoked salami product, which may have experienced temperature abuse and may contain Clostridium perfringens, the U.S. Department of Agricultures Food Safety and Inspection Service (FSIS) announced today.The...", "establishment" : null, "impacted_products" : [], "quantity_recovered" : 0, "quantity_unit" : "pounds", "states" : ["California", "New York", "Ohio", "Pennsylvania"]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "reasons": {"type": "array", "items": {}}, "status": {"type": "string"}, "risk_level": {"type": "string"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}, "summary": {"type": "string"}, "establishment": {"type": "null"}, "impacted_products": {"type": "array", "items": {}}, "quantity_recovered": {"type": "integer"}, "quantity_unit": {"type": "string"}, "states": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "url", "reasons", "status", "risk_level", "start_date", "end_date", "summary", "establishment", "impacted_products", "quantity_recovered", "quantity_unit", "states"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}, "package": {"type": "string"}, "asar": {"type": "string"}}, "required": ["test", "start", "build", "package", "asar"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-polyfill": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-react": {"type": "string"}, "css-loader": {"type": "string"}, "electron": {"type": "string"}, "jquery": {"type": "string"}, "less-loader": {"type": "string"}, "lrh-message": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "webpack": {"type": "string"}, "style-loader": {"type": "string"}, "url-loader": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-polyfill", "babel-preset-es2015", "babel-preset-react", "css-loader", "electron", "jquery", "less-loader", "lrh-message", "react", "react-dom", "webpack", "style-loader", "url-loader"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "aiting", "version" : "1.0.0", "description" : "", "main" : "main.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "electron .", "build" : "webpack", "package" : "electron-packager . AiTing --ignore=node_modules/electron-* --platform=win32 --arch=x64 --electronVersion=1.4.14 --overwrite --icon=./build/logo1.ico", "asar" : "asar pack . app.asar"}, "author" : "renhongl", "license" : "MIT", "dependencies" : {"babel-core" : "^6.21.0", "babel-loader" : "^6.2.10", "babel-polyfill" : "^6.20.0", "babel-preset-es2015" : "^6.18.0", "babel-preset-react" : "^6.16.0", "css-loader" : "^0.26.1", "electron" : "^1.4.14", "jquery" : "^3.1.1", "less-loader" : "^2.2.3", "lrh-message" : "^1.1.0", "react" : "^15.4.2", "react-dom" : "^15.4.2", "webpack" : "^1.14.0", "style-loader" : "^0.13.1", "url-loader" : "^0.5.7"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}, "package": {"type": "string"}, "asar": {"type": "string"}}, "required": ["test", "start", "build", "package", "asar"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-polyfill": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-react": {"type": "string"}, "css-loader": {"type": "string"}, "electron": {"type": "string"}, "jquery": {"type": "string"}, "less-loader": {"type": "string"}, "lrh-message": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "webpack": {"type": "string"}, "style-loader": {"type": "string"}, "url-loader": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-polyfill", "babel-preset-es2015", "babel-preset-react", "css-loader", "electron", "jquery", "less-loader", "lrh-message", "react", "react-dom", "webpack", "style-loader", "url-loader"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[527.5132150487959, 608.5090437634265], [540.6896573630936, 618.0503155308966], [561.8662276057771, 637.1092287493116], [566.1015416543138, 658.2857989919951], [547.0426284358987, 677.3447122104103], [523.7484011689468, 687.932997331752], [511.0424590233367, 694.285968404557], [489.86588878065317, 696.4036254288255], [477.159946635043, 690.0506543560205], [460.21869044089624, 675.227055186142], [451.7480623438229, 660.4034560162634], [443.27743424674946, 647.6975138706534], [436.9244631739444, 634.9915717250433]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "files": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "exports": {"type": "object", "properties": {".": {"type": "object", "properties": {"import": {"type": "string"}, "require": {"type": "string"}}, "required": ["import", "require"]}, "./package.json": {"type": "string"}, "./": {"type": "string"}}, "required": [".", "./package.json", "./"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "tsup": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "tsup", "typescript"]}, "scripts": {"type": "object", "properties": {"prepare": {"type": "string"}, "build": {"type": "string"}}, "required": ["prepare", "build"]}}, "required": ["name", "description", "version", "repository", "engines", "files", "author", "license", "type", "main", "module", "types", "exports", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "es-content-type", "description" : "content-type rewrite in TypeScript with ESM and CommonJS targets", "version" : "0.0.10", "repository" : "https://github.com/talentlessguy/es-content-type.git", "engines" : {"node" : ">=12.x"}, "files" : ["dist", "src"], "author" : "talentlessguy <pilll.PL22@gmail.com>", "license" : "MIT", "type" : "module", "main" : "dist/index.cjs", "module" : "dist/index.js", "types" : "dist/index.d.ts", "exports" : {"." : {"import" : "./dist/index.js", "require" : "./dist/index.cjs"}, "./package.json" : "./package.json", "./" : "./"}, "devDependencies" : {"@types/node" : "^14.6.0", "tsup" : "^3.6.1", "typescript" : "^4.0.2"}, "scripts" : {"prepare" : "pnpm build", "build" : "tsup src/index.ts --minify-whitespace --format cjs,esm --dts"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "files": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "exports": {"type": "object", "properties": {".": {"type": "object", "properties": {"import": {"type": "string"}, "require": {"type": "string"}}, "required": ["import", "require"]}, "./package.json": {"type": "string"}, "./": {"type": "string"}}, "required": [".", "./package.json", "./"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "tsup": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "tsup", "typescript"]}, "scripts": {"type": "object", "properties": {"prepare": {"type": "string"}, "build": {"type": "string"}}, "required": ["prepare", "build"]}}, "required": ["name", "description", "version", "repository", "engines", "files", "author", "license", "type", "main", "module", "types", "exports", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["In a bowl mash beans to break the surface and blend. Add yogurt, tomatoes, arugula, olives, salt and pepper, mix well, let dip stand 20 minutes before serving."], "ingredients" : ["1 (15.5 ounce) can white beans, drained and rinsed", "1 cup Dannon Oikos Plain Greek Nonfat Yogurt", "2 plum tomatoes diced", "1 cup chopped arugula", "1/2 cup chopped Kalamata olives", "Salt and cracked pepper to taste", "1 loaf Italian bread, sliced"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Tuscany Harvest Dip", "url" : "http://allrecipes.com/recipe/229637/tuscany-harvest-dip/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "objj-frameworks": {"type": "array", "items": {"type": "string"}}, "objj-debug-frameworks": {"type": "array", "items": {"type": "string"}}, "contributors": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "dependencies", "description", "keywords", "author", "objj-frameworks", "objj-debug-frameworks", "contributors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "cappuccino", "dependencies" : ["narwhal", "browserjs", "jake", "objective-j"], "description" : "Cappuccino module", "keywords" : ["objective-j", "objj", "objective j", "capp", "cappuccino"], "author" : "280 North, Inc. (http://280north.com/)", "objj-frameworks" : ["Frameworks"], "objj-debug-frameworks" : ["Frameworks/Debug"], "contributors" : ["Francisco Tolmasky (http://tolmasky.com/)", "Ross Boucher (http://rossboucher.com/)", "Tom Robinson (http://tlrobinson.net/)", "Numerous others (http://contributors.cappuccino.org/)"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "objj-frameworks": {"type": "array", "items": {"type": "string"}}, "objj-debug-frameworks": {"type": "array", "items": {"type": "string"}}, "contributors": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "dependencies", "description", "keywords", "author", "objj-frameworks", "objj-debug-frameworks", "contributors"], "$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"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"es5-shim": {"type": "string"}, "shelf.js": {"type": "string"}, "commander": {"type": "string"}, "smoosh": {"type": "string"}, "JSUS": {"type": "string"}}, "required": ["es5-shim", "shelf.js", "commander", "smoosh", "JSUS"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}, "should": {"type": "string"}}, "required": ["mocha", "should"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "description", "version", "keywords", "author", "license", "dependencies", "devDependencies", "engines", "main", "repository", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "NDDB", "description" : "Powerful and versatile 100% javascript object database", "version" : "3.0.2", "keywords" : ["db", "no-sql", "cyclic objects", "nddb", "database", "index", "views", "nodegame"], "author" : "Stefano Balietti <futur.dorko@gmail.com>", "license" : "MIT", "dependencies" : {"es5-shim" : ">= 4.1.10", "shelf.js" : ">= 0.3.2", "commander" : ">= 2.8.1", "smoosh" : "0.4.0", "JSUS" : ">= 0.10.0"}, "devDependencies" : {"mocha" : "^6.1.1", "should" : "^4.4.1"}, "engines" : {"node" : ">=0.10.0"}, "main" : "index.js", "repository" : {"type" : "git", "url" : "https://github.com/nodeGame/NDDB.git"}, "scripts" : {"test" : "make test"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"es5-shim": {"type": "string"}, "shelf.js": {"type": "string"}, "commander": {"type": "string"}, "smoosh": {"type": "string"}, "JSUS": {"type": "string"}}, "required": ["es5-shim", "shelf.js", "commander", "smoosh", "JSUS"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}, "should": {"type": "string"}}, "required": ["mocha", "should"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "description", "version", "keywords", "author", "license", "dependencies", "devDependencies", "engines", "main", "repository", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "role": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "logo": {"type": "string"}, "discord-icon": {"type": "null"}, "skill": {"type": "array", "items": {"type": "string"}}, "madeWith": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "download-link": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "link": {"type": "string"}, "isAvailable": {"type": "boolean"}}, "required": ["type", "link", "isAvailable"]}}, "website": {"type": "string"}, "featured-article": {"type": "null"}, "articles": {"type": "null"}, "style": {"type": "null"}}, "required": ["id", "role", "name", "logo", "discord-icon", "skill", "madeWith", "description", "download-link", "website", "featured-article", "articles", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "PROJ-11", "role" : ["a Translator"], "name" : "Quick Picture Viewer", "logo" : "IMG-11", "discord-icon" : null, "skill" : ["SKILL-1"], "madeWith" : ["GitHub"], "description" : "Lightweight, versatile desktop image viewer for Windows.", "download-link" : [{"type" : "self-host-windows", "link" : "https://moduleart.github.io/quick-picture-viewer/", "isAvailable" : true}], "website" : "https://moduleart.github.io/quick-picture-viewer/", "featured-article" : null, "articles" : null, "style" : null} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "role": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "logo": {"type": "string"}, "discord-icon": {"type": "null"}, "skill": {"type": "array", "items": {"type": "string"}}, "madeWith": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "download-link": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "link": {"type": "string"}, "isAvailable": {"type": "boolean"}}, "required": ["type", "link", "isAvailable"]}}, "website": {"type": "string"}, "featured-article": {"type": "null"}, "articles": {"type": "null"}, "style": {"type": "null"}}, "required": ["id", "role", "name", "logo", "discord-icon", "skill", "madeWith", "description", "download-link", "website", "featured-article", "articles", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"strokes": {"type": "array", "items": {"type": "string"}}, "medians": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "radStrokes": {"type": "array", "items": {"type": "integer"}}}, "required": ["strokes", "medians", "radStrokes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"strokes" : ["M 319 541 Q 307 548 271 552 Q 258 555 255 549 Q 248 543 258 526 Q 291 465 312 362 Q 313 343 323 327 C 337 301 363 302 362 332 Q 362 350 357 373 Q 338 470 331 505 C 325 534 324 539 319 541 Z", "M 715 386 Q 742 497 781 527 Q 800 546 784 567 Q 708 627 664 609 Q 597 585 536 571 L 484 561 Q 403 549 319 541 C 289 538 301 501 331 505 Q 344 506 359 510 Q 420 520 483 530 L 534 539 Q 580 548 627 556 Q 661 563 674 549 Q 686 539 684 514 Q 674 436 657 376 C 649 347 708 357 715 386 Z", "M 531 318 Q 646 334 892 334 Q 914 334 920 344 Q 926 357 907 372 Q 841 420 779 399 Q 749 395 715 386 L 657 376 Q 594 369 523 355 L 471 348 Q 416 341 362 332 L 323 327 Q 233 318 138 305 Q 114 302 132 283 Q 166 252 209 261 Q 326 294 459 311 Q 460 311 466 311 L 531 318 Z", "M 536 571 Q 539 670 566 734 Q 573 750 561 762 Q 537 781 494 795 Q 466 802 456 794 Q 446 787 454 773 Q 479 733 482 681 Q 483 621 484 561 L 483 530 Q 482 442 472 356 Q 471 353 471 348 L 466 311 Q 447 188 376 125 Q 316 70 185 19 Q 170 12 169 8 Q 170 4 182 1 Q 204 -3 257 12 Q 347 33 410 88 Q 491 158 515 295 L 523 355 Q 524 368 525 380 Q 529 462 534 539 L 536 571 Z", "M 515 295 Q 603 165 720 25 Q 739 3 774 3 Q 891 4 928 9 Q 938 12 940 17 Q 941 23 925 31 Q 771 91 719 134 Q 631 210 531 318 C 511 340 498 320 515 295 Z"], "medians" : [[[264, 541], [297, 514], [337, 352], [355, 338]], [[327, 537], [348, 525], [525, 552], [649, 581], [691, 579], [730, 546], [693, 410], [664, 382]], [[135, 294], [189, 285], [403, 322], [815, 370], [907, 351]], [[464, 783], [493, 765], [519, 736], [501, 389], [489, 291], [467, 213], [417, 130], [355, 77], [276, 36], [176, 6]], [[525, 310], [530, 297], [636, 172], [749, 60], [785, 45], [931, 17]]], "radStrokes" : [2, 3, 4]} | json_instruct | {"type": "object", "properties": {"strokes": {"type": "array", "items": {"type": "string"}}, "medians": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "radStrokes": {"type": "array", "items": {"type": "integer"}}}, "required": ["strokes", "medians", "radStrokes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationGroupId" : 9933102, "stations" : ["9933102"]} | json_instruct | {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"origin": {"type": "string"}, "download_link": {"type": "string"}, "views": {"type": "integer"}, "x_resolution": {"type": "integer"}, "filetype": {"type": "string"}, "site": {"type": "string"}, "y_resolution": {"type": "integer"}, "colors": {"type": "array", "items": {"type": "string"}}, "comments": {"type": "array", "items": {"type": "string"}}, "favorites": {"type": "integer"}, "descriptors": {"type": "array", "items": {"type": "string"}}, "uploader": {"type": "string"}}, "required": ["origin", "download_link", "views", "x_resolution", "filetype", "site", "y_resolution", "colors", "comments", "favorites", "descriptors", "uploader"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"origin" : "http://wallbase.cc/wallpaper/842217", "download_link" : "http://wallpapers.wallbase.cc/rozne/wallpaper-842217.jpg", "views" : 391, "x_resolution" : 1600, "filetype" : "jpg", "site" : "wallbase.cc", "y_resolution" : 1200, "colors" : ["#575155", "#d5bfb2", "#ad9282", "#f1e3e3", "#13111a"], "comments" : [""], "favorites" : 1, "descriptors" : ["cars", "ride", "roads", "vehicles"], "uploader" : " mercutzzio"} | json_instruct | {"type": "object", "properties": {"origin": {"type": "string"}, "download_link": {"type": "string"}, "views": {"type": "integer"}, "x_resolution": {"type": "integer"}, "filetype": {"type": "string"}, "site": {"type": "string"}, "y_resolution": {"type": "integer"}, "colors": {"type": "array", "items": {"type": "string"}}, "comments": {"type": "array", "items": {"type": "string"}}, "favorites": {"type": "integer"}, "descriptors": {"type": "array", "items": {"type": "string"}}, "uploader": {"type": "string"}}, "required": ["origin", "download_link", "views", "x_resolution", "filetype", "site", "y_resolution", "colors", "comments", "favorites", "descriptors", "uploader"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"access_token": {"type": "string"}, "start_date": {"type": "string"}}, "required": ["access_token", "start_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"access_token" : "<your-recharge-token>", "start_date" : "2021-05-01T00:00:00Z"} | json_instruct | {"type": "object", "properties": {"access_token": {"type": "string"}, "start_date": {"type": "string"}}, "required": ["access_token", "start_date"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "success_url": {"type": "string"}}, "required": ["name", "description", "website", "success_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Named entity recognition (micro)service sample using Akka HTTP", "description" : "Simple (micro)service which demonstrates how to accomplish tasks typical for REST service using Akka HTTP.", "website" : "", "success_url" : ""} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "success_url": {"type": "string"}}, "required": ["name", "description", "website", "success_url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Gaussian process nonparametric tensor estimator and its minimax optimality.", "fields" : ["efficiency", "minimax", "reproducing kernel hilbert space", "convexity", "estimator"], "abstract" : "We investigate the statistical efficiency of a non-parametric Gaussian process method for a nonlinear tensor estimation problem. Low-rank tensor estimation has been used as a method to learn higher order relations among several data sources in a wide range of applications, such as multitask learning, recommendation systems, and spatiotemporal analysis. We consider a general setting where a common linear tensor learning is extended to a nonlinear learning problem in reproducing kernel Hilbert space and propose a non-parametric Bayesian method based on the Gaussian process method. We prove its statistical convergence rate without assuming any strong convexity, such as restricted strong convexity. Remarkably, it is shown that our convergence rate achieves the minimax optimal rate. We apply our proposed method to multi-task learning and show that our method significantly outperforms existing methods through numerical experiments on real-world data sets.", "citation" : "Citations (3)", "year" : "2016", "departments" : ["Tokyo Institute of Technology", "Tokyo Institute of Technology", "Yahoo!", "Yahoo!", "Yahoo!"], "conf" : "icml", "authors" : ["Heishiro Kanagawa.....http://dblp.org/pers/hd/k/Kanagawa:Heishiro", "Taiji Suzuki.....http://dblp.org/pers/hd/s/Suzuki:Taiji", "Hayato Kobayashi.....http://dblp.org/pers/hd/k/Kobayashi:Hayato", "Nobuyuki Shimizu.....http://dblp.org/pers/hd/s/Shimizu:Nobuyuki", "Yukihiro Tagami.....http://dblp.org/pers/hd/t/Tagami:Yukihiro"], "pages" : 10} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$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"}, "faultname": {"type": "string"}, "faulttype": {"type": "string"}, "username": {"type": "string"}, "token": {"type": "string"}, "nodeid": {"type": "string"}}, "required": ["name", "faultname", "faulttype", "username", "token", "nodeid"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dice.components.storm.Topology", "faultname" : "DICE", "faulttype" : "cpu", "username" : "ubuntu", "token" : "Token 2509b9f2804e4ec9ee60e0a06752b03377e06cdf", "nodeid" : "e65e69ab-fb28-4ac2-b808-6c725fb08b93"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "faultname": {"type": "string"}, "faulttype": {"type": "string"}, "username": {"type": "string"}, "token": {"type": "string"}, "nodeid": {"type": "string"}}, "required": ["name", "faultname", "faulttype", "username", "token", "nodeid"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular-resource": {"type": "string"}, "ionic": {"type": "string"}}, "required": ["angular-resource", "ionic"]}}, "required": ["name", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "HelloIonic", "private" : "true", "dependencies" : {"angular-resource" : "~1.4.3", "ionic" : "~1.1.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular-resource": {"type": "string"}, "ionic": {"type": "string"}}, "required": ["angular-resource", "ionic"]}}, "required": ["name", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"cachedlength": {"type": "string"}, "devmode": {"type": "boolean"}, "typing": {"type": "boolean"}, "fileLogging": {"type": "boolean"}, "csenabled": {"type": "boolean"}, "minimize": {"type": "boolean"}, "cachetokens": {"type": "boolean"}, "viewperms": {"type": "boolean"}}, "required": ["cachedlength", "devmode", "typing", "fileLogging", "csenabled", "minimize", "cachetokens", "viewperms"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cachedlength" : "25", "devmode" : true, "typing" : true, "fileLogging" : false, "csenabled" : false, "minimize" : false, "cachetokens" : true, "viewperms" : true} | json_instruct | {"type": "object", "properties": {"cachedlength": {"type": "string"}, "devmode": {"type": "boolean"}, "typing": {"type": "boolean"}, "fileLogging": {"type": "boolean"}, "csenabled": {"type": "boolean"}, "minimize": {"type": "boolean"}, "cachetokens": {"type": "boolean"}, "viewperms": {"type": "boolean"}}, "required": ["cachedlength", "devmode", "typing", "fileLogging", "csenabled", "minimize", "cachetokens", "viewperms"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"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" : 7325060018, "parent" : 7325060, "name" : "TOLE", "latitude" : null, "longitude" : null, "postal" : [92982], "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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "null"}, "website": {"type": "null"}, "email": {"type": "null"}, "fax": {"type": "null"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Las Navas College", "alt_name" : "Colegio de Las Navas", "country" : "Philippines", "state" : null, "address" : {"street" : "Poblacion, H. Jolejole District", "city" : "Las Navas", "province" : "Northern Samar", "postal_code" : "6420"}, "contact" : {"telephone" : null, "website" : null, "email" : null, "fax" : null}, "funding" : "Private", "languages" : null, "academic_year" : null, "accrediting_agency" : null} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "null"}, "website": {"type": "null"}, "email": {"type": "null"}, "fax": {"type": "null"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"isCreatedByStatefulCreatePages": {"type": "boolean"}, "slug": {"type": "string"}}, "required": ["isCreatedByStatefulCreatePages", "slug"]}}, "required": ["pageContext"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pageContext" : {"isCreatedByStatefulCreatePages" : false, "slug" : "starting-design"}} | json_instruct | {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"isCreatedByStatefulCreatePages": {"type": "boolean"}, "slug": {"type": "string"}}, "required": ["isCreatedByStatefulCreatePages", "slug"]}}, "required": ["pageContext"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "extension": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "valueCode": {"type": "string"}}, "required": ["url", "valueCode"]}}, "url": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "description": {"type": "string"}, "useContext": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}, "valueCodeableConcept": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}}}, "required": ["coding"]}}, "required": ["code", "valueCodeableConcept"]}}, "item": {"type": "array", "items": {"type": "object", "properties": {"linkId": {"type": "string"}, "definition": {"type": "string"}, "text": {"type": "string"}, "type": {"type": "string"}}, "required": ["linkId", "definition", "text", "type"]}}}, "required": ["resourceType", "id", "extension", "url", "name", "title", "status", "experimental", "description", "useContext", "item"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resourceType" : "Questionnaire", "id" : "ANCB4", "extension" : [{"url" : "http://hl7.org/fhir/uv/cpg/StructureDefinition/cpg-knowledgeCapability", "valueCode" : "shareable"}, {"url" : "http://hl7.org/fhir/uv/cpg/StructureDefinition/cpg-knowledgeCapability", "valueCode" : "computable"}, {"url" : "http://hl7.org/fhir/uv/cpg/StructureDefinition/cpg-knowledgeCapability", "valueCode" : "publishable"}, {"url" : "http://hl7.org/fhir/uv/cpg/StructureDefinition/cpg-knowledgeRepresentationLevel", "valueCode" : "structured"}], "url" : "http://fhir.org/guides/who/anc-cds/Questionnaire/ANCB4", "name" : "ANCB4", "title" : "ANC.B4 Confirm pregnancy", "status" : "active", "experimental" : false, "description" : "TODO: description goes here", "useContext" : [{"code" : {"system" : "http://terminology.hl7.org/CodeSystem/usage-context-type", "code" : "task", "display" : "Workflow Task"}, "valueCodeableConcept" : {"coding" : [{"system" : "http://fhir.org/guides/who/anc-cds/CodeSystem/activity-codes", "code" : "ANC.B4", "display" : "Confirm pregnancy"}]}}], "item" : [{"linkId" : "1", "definition" : "http://fhir.org/guides/who/anc-cds/StructureDefinition/anc-b4-de1#value[x]", "text" : "Pregnancy confirmed", "type" : "boolean"}]} | json_instruct | {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "extension": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "valueCode": {"type": "string"}}, "required": ["url", "valueCode"]}}, "url": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "description": {"type": "string"}, "useContext": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}, "valueCodeableConcept": {"type": "object", "properties": {"coding": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "code": {"type": "string"}, "display": {"type": "string"}}, "required": ["system", "code", "display"]}}}, "required": ["coding"]}}, "required": ["code", "valueCodeableConcept"]}}, "item": {"type": "array", "items": {"type": "object", "properties": {"linkId": {"type": "string"}, "definition": {"type": "string"}, "text": {"type": "string"}, "type": {"type": "string"}}, "required": ["linkId", "definition", "text", "type"]}}}, "required": ["resourceType", "id", "extension", "url", "name", "title", "status", "experimental", "description", "useContext", "item"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"azure-functions-core-tools": {"type": "string"}, "mime-types": {"type": "string"}}, "required": ["azure-functions-core-tools", "mime-types"]}}, "required": ["name", "version", "description", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "api", "version" : "1.0.0", "description" : "", "scripts" : {"start" : "func start --enableAuth", "test" : "echo \"No tests yet...\""}, "dependencies" : {}, "devDependencies" : {"azure-functions-core-tools" : "^3.0.2630", "mime-types" : "^2.1.27"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"azure-functions-core-tools": {"type": "string"}, "mime-types": {"type": "string"}}, "required": ["azure-functions-core-tools", "mime-types"]}}, "required": ["name", "version", "description", "scripts", "dependencies", "devDependencies"], "$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-grpq-v752-9mjq", "modified" : "2022-05-01T17:51:43Z", "published" : "2022-05-01T17:51:43Z", "aliases" : ["CVE-2007-1253"], "details" : "Eval injection vulnerability in the (a) kmz_ImportWithMesh.py Script for Blender 0.1.9h, as used in (b) Blender before 2.43, allows user-assisted remote attackers to execute arbitrary Python code by importing a crafted (1) KML or (2) KMZ file.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2007-1253"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/32778"}, {"type" : "WEB", "url" : "http://osvdb.org/33836"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/24232"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/24233"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/24991"}, {"type" : "WEB", "url" : "http://secunia.com/secunia_research/2007-39/advisory/"}, {"type" : "WEB", "url" : "http://secunia.com/secunia_research/2007-40/advisory/"}, {"type" : "WEB", "url" : "http://security.gentoo.org/glsa/glsa-200704-19.xml"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/22770"}, {"type" : "WEB", "url" : "http://www.securitytracker.com/id?1017714"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2007/0798"}], "database_specific" : {"cwe_ids" : ["CWE-94"], "severity" : "HIGH", "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"qc": {"type": "string"}}, "required": ["qc"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "compile": {"type": "string"}}, "required": ["test", "compile"]}, "files": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/generator": {"type": "string"}, "@babel/parser": {"type": "string"}, "@babel/traverse": {"type": "string"}, "@babel/types": {"type": "string"}, "chalk": {"type": "string"}, "ejs": {"type": "string"}, "minimist": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["@babel/generator", "@babel/parser", "@babel/traverse", "@babel/types", "chalk", "ejs", "minimist", "prettier"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/preset-env"]}}, "required": ["name", "version", "description", "bin", "scripts", "files", "repository", "keywords", "engines", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "quickcopy", "version" : "0.0.1", "description" : "", "bin" : {"qc" : "bin/quickcopy"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "compile" : "babel src --out-dir lib"}, "files" : ["bin", "lib", "plugin-copy-assets", "templates", "index.js"], "repository" : {"type" : "git", "url" : "git+https://github.com/afishhhhh/quickcopy.git"}, "keywords" : [], "engines" : {"node" : ">=8"}, "author" : "afishhhhh", "license" : "MIT", "bugs" : {"url" : "https://github.com/afishhhhh/quickcopy/issues"}, "homepage" : "https://github.com/afishhhhh/quickcopy#readme", "dependencies" : {"@babel/generator" : "^7.11.6", "@babel/parser" : "^7.11.5", "@babel/traverse" : "^7.12.1", "@babel/types" : "^7.12.1", "chalk" : "^4.1.0", "ejs" : "^3.1.5", "minimist" : "^1.2.5", "prettier" : "2.1.2"}, "devDependencies" : {"@babel/cli" : "^7.7.5", "@babel/core" : "^7.7.5", "@babel/preset-env" : "^7.7.6"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"qc": {"type": "string"}}, "required": ["qc"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "compile": {"type": "string"}}, "required": ["test", "compile"]}, "files": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/generator": {"type": "string"}, "@babel/parser": {"type": "string"}, "@babel/traverse": {"type": "string"}, "@babel/types": {"type": "string"}, "chalk": {"type": "string"}, "ejs": {"type": "string"}, "minimist": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["@babel/generator", "@babel/parser", "@babel/traverse", "@babel/types", "chalk", "ejs", "minimist", "prettier"]}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/preset-env"]}}, "required": ["name", "version", "description", "bin", "scripts", "files", "repository", "keywords", "engines", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Isugan, Bacong, Negros Oriental, Central Visayas (Region VII), PH", "locale" : "ph.central-visayas-region-vii.negros-oriental.bacong.isugan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "7", "region_reference" : "7", "region_name" : "Central Visayas (Region VII)", "province_id" : "52", "province_reference" : "52", "province_name" : "Negros Oriental", "city_id" : "93", "city_reference" : "1054", "city_name" : "Bacong", "barangay_id" : "2302", "barangay_reference" : "27668", "barangay_name" : "Isugan"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[123.27417, 9.26783], [123.278343, 9.26841], [123.272713, 9.26349], [123.274658, 9.2615], [123.264122, 9.26277], [123.264214, 9.2662], [123.267487, 9.26648], [123.27417, 9.26783]]]]}} | 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": {"Cancel": {"type": "string"}, "Reset to Defaults": {"type": "string"}, "ResetDefaultMessage": {"type": "string"}, "Save": {"type": "string"}, "SaveMessage": {"type": "string"}, "User Preferences": {"type": "string"}, "Next Viewport": {"type": "string"}, "Previous Viewport": {"type": "string"}, "Rotate Right": {"type": "string"}, "Rotate Left": {"type": "string"}, "Invert": {"type": "string"}, "Flip Horizontally": {"type": "string"}, "Flip Vertically": {"type": "string"}, "Zoom In": {"type": "string"}, "Zoom Out": {"type": "string"}, "Zoom to Fit": {"type": "string"}, "Reset": {"type": "string"}, "Next Image": {"type": "string"}, "Previous Image": {"type": "string"}, "Previous Series": {"type": "string"}, "Next Series": {"type": "string"}, "Zoom": {"type": "string"}, "W/L Preset 1": {"type": "string"}, "W/L Preset 2": {"type": "string"}, "W/L Preset 3": {"type": "string"}, "W/L Preset 4": {"type": "string"}, "W/L Preset 5": {"type": "string"}, "W/L Preset 6": {"type": "string"}, "W/L Preset 7": {"type": "string"}, "W/L Preset 8": {"type": "string"}, "W/L Preset 9": {"type": "string"}}, "required": ["Cancel", "Reset to Defaults", "ResetDefaultMessage", "Save", "SaveMessage", "User Preferences", "Next Viewport", "Previous Viewport", "Rotate Right", "Rotate Left", "Invert", "Flip Horizontally", "Flip Vertically", "Zoom In", "Zoom Out", "Zoom to Fit", "Reset", "Next Image", "Previous Image", "Previous Series", "Next Series", "Zoom", "W/L Preset 1", "W/L Preset 2", "W/L Preset 3", "W/L Preset 4", "W/L Preset 5", "W/L Preset 6", "W/L Preset 7", "W/L Preset 8", "W/L Preset 9"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Cancel" : "Cancelar", "Reset to Defaults" : "$t(Common:Reset) para Padr\u00e3o", "ResetDefaultMessage" : "Prefer\u00eancias resetadas com sucesso. <br /> Voc\u00ea deve <strong>Salvar</strong> para que essa a\u00e7\u00e3o seja realizada.", "Save" : "Salvar", "SaveMessage" : "Prefer\u00eancias salvas", "User Preferences" : "Prefer\u00eancias do Usu\u00e1rio", "Next Viewport" : "Pr\u00f3xima janela de visualiza\u00e7\u00e3o", "Previous Viewport" : "Janela de visualiza\u00e7\u00e3o anterior", "Rotate Right" : "Girar para a direita", "Rotate Left" : "Girar para a esquerda", "Invert" : "Inverter", "Flip Horizontally" : "Inverter horizontalmente", "Flip Vertically" : "Inverter verticalmente", "Zoom In" : "Mais Zoom", "Zoom Out" : "Reduzir o zoom", "Zoom to Fit" : "Zoom para ajustar", "Reset" : "Redefinir", "Next Image" : "Pr\u00f3xima imagem", "Previous Image" : "Imagem Anterior", "Previous Series" : "S\u00e9rie anterior", "Next Series" : "Pr\u00f3xima s\u00e9rie", "Zoom" : "Zoom", "W/L Preset 1" : "W / L Preset 1", "W/L Preset 2" : "W / L Preset 2", "W/L Preset 3" : "W / L Preset 3", "W/L Preset 4" : "W / L Preset 4", "W/L Preset 5" : "W / L Preset 5", "W/L Preset 6" : "W / L Preset 6", "W/L Preset 7" : "W / L Preset 7", "W/L Preset 8" : "W / L Preset 8", "W/L Preset 9" : "W / L Preset 9"} | json_instruct | {"type": "object", "properties": {"Cancel": {"type": "string"}, "Reset to Defaults": {"type": "string"}, "ResetDefaultMessage": {"type": "string"}, "Save": {"type": "string"}, "SaveMessage": {"type": "string"}, "User Preferences": {"type": "string"}, "Next Viewport": {"type": "string"}, "Previous Viewport": {"type": "string"}, "Rotate Right": {"type": "string"}, "Rotate Left": {"type": "string"}, "Invert": {"type": "string"}, "Flip Horizontally": {"type": "string"}, "Flip Vertically": {"type": "string"}, "Zoom In": {"type": "string"}, "Zoom Out": {"type": "string"}, "Zoom to Fit": {"type": "string"}, "Reset": {"type": "string"}, "Next Image": {"type": "string"}, "Previous Image": {"type": "string"}, "Previous Series": {"type": "string"}, "Next Series": {"type": "string"}, "Zoom": {"type": "string"}, "W/L Preset 1": {"type": "string"}, "W/L Preset 2": {"type": "string"}, "W/L Preset 3": {"type": "string"}, "W/L Preset 4": {"type": "string"}, "W/L Preset 5": {"type": "string"}, "W/L Preset 6": {"type": "string"}, "W/L Preset 7": {"type": "string"}, "W/L Preset 8": {"type": "string"}, "W/L Preset 9": {"type": "string"}}, "required": ["Cancel", "Reset to Defaults", "ResetDefaultMessage", "Save", "SaveMessage", "User Preferences", "Next Viewport", "Previous Viewport", "Rotate Right", "Rotate Left", "Invert", "Flip Horizontally", "Flip Vertically", "Zoom In", "Zoom Out", "Zoom to Fit", "Reset", "Next Image", "Previous Image", "Previous Series", "Next Series", "Zoom", "W/L Preset 1", "W/L Preset 2", "W/L Preset 3", "W/L Preset 4", "W/L Preset 5", "W/L Preset 6", "W/L Preset 7", "W/L Preset 8", "W/L Preset 9"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"general": {"type": "object", "properties": {"overwrite": {"type": "object", "properties": {"lang_codes": {"type": "boolean"}, "emb_txt": {"type": "boolean"}, "emb_txt_trans": {"type": "boolean"}, "emb_xml": {"type": "boolean"}, "emb_xml_trans": {"type": "boolean"}, "ocr_txt": {"type": "boolean"}, "ocr_txt_trans": {"type": "boolean"}}, "required": ["lang_codes", "emb_txt", "emb_txt_trans", "emb_xml", "emb_xml_trans", "ocr_txt", "ocr_txt_trans"]}, "store_output": {"type": "object", "properties": {"lang_codes": {"type": "boolean"}, "emb_txt": {"type": "boolean"}, "emb_txt_trans": {"type": "boolean"}, "emb_xml": {"type": "boolean"}, "emb_xml_trans": {"type": "boolean"}, "ocr_txt": {"type": "boolean"}, "ocr_txt_trans": {"type": "boolean"}}, "required": ["lang_codes", "emb_txt", "emb_txt_trans", "emb_xml", "emb_xml_trans", "ocr_txt", "ocr_txt_trans"]}}, "required": ["overwrite", "store_output"]}, "dataset": {"type": "object", "properties": {"path": {"type": "string"}, ".path": {"type": "string"}}, "required": ["path", ".path"]}, "conversion": {"type": "object", "properties": {"tool_names": {"type": "array", "items": {"type": "string"}}}, "required": ["tool_names"]}, "grobid": {"type": "object", "properties": {"grobid_inst_path": {"type": "string"}, "config_path": {"type": "string"}, "GROBID_URL": {"type": "string"}, "end_url": {"type": "string"}}, "required": ["grobid_inst_path", "config_path", "GROBID_URL", "end_url"]}, "appearance": {"type": "object", "properties": {"message_colours": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}, "stages": {"type": "string"}, "verbose": {"type": "string"}}, "required": ["start", "end", "stages", "verbose"]}}, "required": ["message_colours"]}}, "required": ["general", "dataset", "conversion", "grobid", "appearance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"general" : {"overwrite" : {"lang_codes" : true, "emb_txt" : false, "emb_txt_trans" : false, "emb_xml" : true, "emb_xml_trans" : false, "ocr_txt" : false, "ocr_txt_trans" : true}, "store_output" : {"lang_codes" : true, "emb_txt" : true, "emb_txt_trans" : false, "emb_xml" : true, "emb_xml_trans" : false, "ocr_txt" : true, "ocr_txt_trans" : true}}, "dataset" : {"path" : "/home/elubrini/GitHub/psylloidea_ontology/pdf2txt/data/docs_for_conv", ".path" : "/home/elubrini/GitHub/psylloidea_ontology/pdf2txt/data/test"}, "conversion" : {"tool_names" : ["pytesseract_ocr"]}, "grobid" : {"grobid_inst_path" : "../../grobid", "config_path" : "/home/lubrini/GitHub/grobid_client_python/config.json", "GROBID_URL" : "https://cloud.science-miner.com/grobid/", "end_url" : "api/processHeaderDocument"}, "appearance" : {"message_colours" : {"start" : "blue", "end" : "blue", "stages" : "cyan", "verbose" : "yellow"}}} | json_instruct | {"type": "object", "properties": {"general": {"type": "object", "properties": {"overwrite": {"type": "object", "properties": {"lang_codes": {"type": "boolean"}, "emb_txt": {"type": "boolean"}, "emb_txt_trans": {"type": "boolean"}, "emb_xml": {"type": "boolean"}, "emb_xml_trans": {"type": "boolean"}, "ocr_txt": {"type": "boolean"}, "ocr_txt_trans": {"type": "boolean"}}, "required": ["lang_codes", "emb_txt", "emb_txt_trans", "emb_xml", "emb_xml_trans", "ocr_txt", "ocr_txt_trans"]}, "store_output": {"type": "object", "properties": {"lang_codes": {"type": "boolean"}, "emb_txt": {"type": "boolean"}, "emb_txt_trans": {"type": "boolean"}, "emb_xml": {"type": "boolean"}, "emb_xml_trans": {"type": "boolean"}, "ocr_txt": {"type": "boolean"}, "ocr_txt_trans": {"type": "boolean"}}, "required": ["lang_codes", "emb_txt", "emb_txt_trans", "emb_xml", "emb_xml_trans", "ocr_txt", "ocr_txt_trans"]}}, "required": ["overwrite", "store_output"]}, "dataset": {"type": "object", "properties": {"path": {"type": "string"}, ".path": {"type": "string"}}, "required": ["path", ".path"]}, "conversion": {"type": "object", "properties": {"tool_names": {"type": "array", "items": {"type": "string"}}}, "required": ["tool_names"]}, "grobid": {"type": "object", "properties": {"grobid_inst_path": {"type": "string"}, "config_path": {"type": "string"}, "GROBID_URL": {"type": "string"}, "end_url": {"type": "string"}}, "required": ["grobid_inst_path", "config_path", "GROBID_URL", "end_url"]}, "appearance": {"type": "object", "properties": {"message_colours": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}, "stages": {"type": "string"}, "verbose": {"type": "string"}}, "required": ["start", "end", "stages", "verbose"]}}, "required": ["message_colours"]}}, "required": ["general", "dataset", "conversion", "grobid", "appearance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"subreddit" : "NBA2kMTselling", "hour" : "01", "avg" : 1.391304347826087}, {"subreddit" : "NBA2kMTselling", "hour" : "02", "avg" : 1.4166666666666667}, {"subreddit" : "NBA2kMTselling", "hour" : "03", "avg" : 1.3529411764705883}, {"subreddit" : "NBA2kMTselling", "hour" : "04", "avg" : 0.8518518518518519}, {"subreddit" : "NBA2kMTselling", "hour" : "05", "avg" : 1.4666666666666666}, {"subreddit" : "NBA2kMTselling", "hour" : "06", "avg" : 0.7272727272727273}, {"subreddit" : "NBA2kMTselling", "hour" : "07", "avg" : 0.8}, {"subreddit" : "NBA2kMTselling", "hour" : "08", "avg" : 0.8181818181818182}, {"subreddit" : "NBA2kMTselling", "hour" : "09", "avg" : 1.3333333333333333}, {"subreddit" : "NBA2kMTselling", "hour" : "10", "avg" : 0.8888888888888888}, {"subreddit" : "NBA2kMTselling", "hour" : "11", "avg" : 1.2142857142857142}, {"subreddit" : "NBA2kMTselling", "hour" : "12", "avg" : 1.0769230769230769}, {"subreddit" : "NBA2kMTselling", "hour" : "13", "avg" : 1.0}, {"subreddit" : "NBA2kMTselling", "hour" : "14", "avg" : 0.5625}, {"subreddit" : "NBA2kMTselling", "hour" : "15", "avg" : 0.72}, {"subreddit" : "NBA2kMTselling", "hour" : "16", "avg" : 0.68}, {"subreddit" : "NBA2kMTselling", "hour" : "17", "avg" : 1.0}, {"subreddit" : "NBA2kMTselling", "hour" : "18", "avg" : 0.9696969696969697}, {"subreddit" : "NBA2kMTselling", "hour" : "19", "avg" : 1.2}, {"subreddit" : "NBA2kMTselling", "hour" : "20", "avg" : 0.96}, {"subreddit" : "NBA2kMTselling", "hour" : "21", "avg" : 1.0625}, {"subreddit" : "NBA2kMTselling", "hour" : "22", "avg" : 1.1785714285714286}, {"subreddit" : "NBA2kMTselling", "hour" : "23", "avg" : 0.9761904761904762}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$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"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "license": {"type": "string"}}, "required": ["name", "description", "version", "repository", "homepage", "keywords", "main", "dependencies", "devDependencies", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "level-community", "description" : "Meta data on members of the LevelDB community", "version" : "3.0.0", "repository" : {"type" : "git", "url" : "https://github.com/level/community.git"}, "homepage" : "https://github.com/level/community", "keywords" : ["leveldb", "community", "npm"], "main" : "index.js", "dependencies" : {}, "devDependencies" : {}, "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "license": {"type": "string"}}, "required": ["name", "description", "version", "repository", "homepage", "keywords", "main", "dependencies", "devDependencies", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "spatialharvesters:block/bio_harvester_1"} | 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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"url": {"type": "string"}, "type": {"type": "string"}}, "required": ["url", "type"]}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "files", "repository", "author", "keywords", "homepage", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "react-native-autotrack-growingio", "version" : "0.0.6", "description" : "GrowingIO autotrack SDK for ReactNative", "main" : "hook.js", "files" : ["GIOCommon.js", "GIOInjector.js", "hook.js"], "repository" : {"url" : "https://github.com/growingio/GIORNHook.git", "type" : "git"}, "author" : "liangdengke <liangdengke@growingio.com>", "keywords" : ["Android", "IOS", "ReactNative", "GrowingIO", "autotrack", "SDK"], "homepage" : "https://www.growingio.com/", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"url": {"type": "string"}, "type": {"type": "string"}}, "required": ["url", "type"]}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "files", "repository", "author", "keywords", "homepage", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"page": {"type": "object", "properties": {"title": {"type": "string"}, "logo_src": {"type": "string"}, "font": {"type": "object", "properties": {"color": {"type": "string"}, "weight": {"type": "string"}, "font-style": {"type": "string"}, "font-size": {"type": "string"}, "text-aline": {"type": "string"}}, "required": ["color", "weight", "font-style", "font-size", "text-aline"]}}, "required": ["title", "logo_src", "font"]}}, "required": ["page"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"page" : {"title" : "This is a amazing Web page.", "logo_src" : "./logo.svg", "font" : {"color" : "red", "weight" : "bold", "font-style" : "italic", "font-size" : "20px", "text-aline" : "center"}}} | json_instruct | {"type": "object", "properties": {"page": {"type": "object", "properties": {"title": {"type": "string"}, "logo_src": {"type": "string"}, "font": {"type": "object", "properties": {"color": {"type": "string"}, "weight": {"type": "string"}, "font-style": {"type": "string"}, "font-size": {"type": "string"}, "text-aline": {"type": "string"}}, "required": ["color", "weight", "font-style", "font-size", "text-aline"]}}, "required": ["title", "logo_src", "font"]}}, "required": ["page"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 11.0, 11.0, 5.0, 9.0] | json_instruct | {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"choose-insufficientArgs": {"type": "string"}, "choose": {"type": "string"}}, "required": ["choose-insufficientArgs", "choose"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"choose-insufficientArgs" : "Please give me at least two `(2)` choices.", "choose" : "**{{name}}**, I choose **{{choice}}**!"} | json_instruct | {"type": "object", "properties": {"choose-insufficientArgs": {"type": "string"}, "choose": {"type": "string"}}, "required": ["choose-insufficientArgs", "choose"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"raw": {"type": "integer"}, "interpretation_level": {"type": "string"}}, "required": ["raw", "interpretation_level"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"raw" : 30, "interpretation_level" : "severe"} | json_instruct | {"type": "object", "properties": {"raw": {"type": "integer"}, "interpretation_level": {"type": "string"}}, "required": ["raw", "interpretation_level"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "SUMENEP", "originalFilename" : "KH. Syaiful Bari, S.Pd.JPG", "namaPartai" : "Partai Persatuan pembangunan", "id" : 41249, "noUrut" : 1, "nama" : "KH. SYAIFUL BARI, S. Pd.", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SUMENEP", "originalFilename" : "foto Hasan.jpeg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 136658, "noUrut" : 2, "nama" : "MOH. HASAN, SS", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SUMENEP", "originalFilename" : "Marlina.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 114671, "noUrut" : 3, "nama" : "MARLINA IRAWATI, S.HI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "SUMENEP", "originalFilename" : "Khotimah.jpg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 116447, "noUrut" : 4, "nama" : "KHOTIMAH, S. Pd.I", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "SUMENEP", "originalFilename" : "foto siti Laila.jpeg", "namaPartai" : "Partai Persatuan pembangunan", "id" : 240120, "noUrut" : 5, "nama" : "SITI LAILATUL AMALIA", "stringJenisKelamin" : "Perempuan"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"jsonmodel_type": {"type": "string"}, "content": {"type": "array", "items": {"type": "string"}}, "items": {"type": "array", "items": {"type": "string"}}, "persistent_id": {"type": "string"}, "publish": {"type": "boolean"}}, "required": ["jsonmodel_type", "content", "items", "persistent_id", "publish"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jsonmodel_type" : "note_bibliography", "content" : ["bibliography"], "items" : ["item 1", "item 2"], "persistent_id" : "e5275d70ec328dd680d701e8594601f2", "publish" : true} | json_instruct | {"type": "object", "properties": {"jsonmodel_type": {"type": "string"}, "content": {"type": "array", "items": {"type": "string"}}, "items": {"type": "array", "items": {"type": "string"}}, "persistent_id": {"type": "string"}, "publish": {"type": "boolean"}}, "required": ["jsonmodel_type", "content", "items", "persistent_id", "publish"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "browser_action": {"type": "object", "properties": {"default_title": {"type": "string"}, "default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_title", "default_icon", "default_popup"]}, "chrome_url_overrides": {"type": "object", "properties": {"newtab": {"type": "string"}}, "required": ["newtab"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}, "oauth2": {"type": "object", "properties": {"client_id": {"type": "string"}, "scopes": {"type": "array", "items": {"type": "string"}}}, "required": ["client_id", "scopes"]}}, "required": ["manifest_version", "name", "description", "version", "browser_action", "chrome_url_overrides", "permissions", "key", "oauth2"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"manifest_version" : 2, "name" : "Manna", "description" : "Dashboard with daily bible verse", "version" : "1.2.3", "browser_action" : {"default_title" : "Manna", "default_icon" : "icon.png", "default_popup" : "popup.html"}, "chrome_url_overrides" : {"newtab" : "main.html"}, "permissions" : ["identity", "identity.email"], "key" : "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuPUynYWcQiNi91qCNhWIlKxqYaG+893a4quemDNiESXXBusoifyjV15swdgK8KnhpoWL9ol9acSsK9Jtqaqa/HWdvLnXYBrHWXsKHZjlbpjJ6bcW9kinZbuW4h9+ErEr+kb427fh1Q+tR3YwVXxurFjssmQum+li6XzGUJhF8763/q7sL4dGWjmGe51cxadj1uXfb0R5xAySN5ort591K0ZWrIIq4WMP5hSCrb436xBSJ+JasQwnpELQbIY2BLZNCUCfLuLcUNtcJt9VAFCCvXrluInjruRCXNyAJsBoIm+sz24XerAok6PYwbgkaOtvQtZZnTtQ/TiQtqNuJptwqQIDAQAB", "oauth2" : {"client_id" : "424209103813-ei0ju551ljolniv6fva9j5603g3i6df7.apps.googleusercontent.com", "scopes" : ["https://www.googleapis.com/auth/drive"]}} | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "browser_action": {"type": "object", "properties": {"default_title": {"type": "string"}, "default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_title", "default_icon", "default_popup"]}, "chrome_url_overrides": {"type": "object", "properties": {"newtab": {"type": "string"}}, "required": ["newtab"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}, "oauth2": {"type": "object", "properties": {"client_id": {"type": "string"}, "scopes": {"type": "array", "items": {"type": "string"}}}, "required": ["client_id", "scopes"]}}, "required": ["manifest_version", "name", "description", "version", "browser_action", "chrome_url_overrides", "permissions", "key", "oauth2"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"classing": {"type": "string"}, "validating": {"type": "string"}, "casting": {"type": "string"}}, "required": ["classing", "validating", "casting"]}}, "required": ["name", "main", "version", "homepage", "authors", "description", "moduleType", "keywords", "license", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "modeling", "main" : "lib/index.js", "version" : "0.2.0", "homepage" : "https://github.com/codemix/modeling", "authors" : ["Charles Pick <charles@codemix.com>"], "description" : "Fast and flexible data models for node.js and the browser.", "moduleType" : ["node"], "keywords" : ["model", "models", "data models", "mvc"], "license" : "MIT", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"classing" : "~0.1.0", "validating" : "~0.0.6", "casting" : "~0.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"classing": {"type": "string"}, "validating": {"type": "string"}, "casting": {"type": "string"}}, "required": ["classing", "validating", "casting"]}}, "required": ["name", "main", "version", "homepage", "authors", "description", "moduleType", "keywords", "license", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"pluginsFile": {"type": "string"}, "defaultCommandTimeout": {"type": "integer"}}, "required": ["pluginsFile", "defaultCommandTimeout"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pluginsFile" : "tests/e2e/plugins/index.js", "defaultCommandTimeout" : 15000} | json_instruct | {"type": "object", "properties": {"pluginsFile": {"type": "string"}, "defaultCommandTimeout": {"type": "integer"}}, "required": ["pluginsFile", "defaultCommandTimeout"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "locationSet": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}}, "required": ["include"]}, "country_code": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}, "category": {"type": "string"}, "min_zoom": {"type": "integer"}, "max_zoom": {"type": "integer"}, "license_url": {"type": "string"}, "privacy_policy_url": {"type": "string"}, "best": {"type": "boolean"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}, "available_projections": {"type": "array", "items": {"type": "string"}}, "attribution": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}}, "required": ["id", "type", "locationSet", "country_code", "name", "url", "category", "min_zoom", "max_zoom", "license_url", "privacy_policy_url", "best", "start_date", "end_date", "available_projections", "attribution"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "Zug-2018", "type" : "wms", "locationSet" : {"include" : ["kanton_zug_sud.geojson"]}, "country_code" : "CH", "name" : "Kanton Zug Gemeinde Zug S\u00fcd 2018", "url" : "https://services.geo.zg.ch:443/ows/Orthofotos?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=zg.orthofoto_2018_kt_zg&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}", "category" : "photo", "min_zoom" : 10, "max_zoom" : 21, "license_url" : "https://www.zg.ch/behoerden/direktion-des-innern/geoportal/geodaten-einbinden/wms", "privacy_policy_url" : "https://www.zg.ch/datenschutzerklaerung", "best" : true, "start_date" : "2018", "end_date" : "2018", "available_projections" : ["EPSG:2056", "EPSG:3857", "EPSG:4326", "EPSG:21781"], "attribution" : {"text" : "GIS Kanton Zug"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "locationSet": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}}, "required": ["include"]}, "country_code": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}, "category": {"type": "string"}, "min_zoom": {"type": "integer"}, "max_zoom": {"type": "integer"}, "license_url": {"type": "string"}, "privacy_policy_url": {"type": "string"}, "best": {"type": "boolean"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}, "available_projections": {"type": "array", "items": {"type": "string"}}, "attribution": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}}, "required": ["id", "type", "locationSet", "country_code", "name", "url", "category", "min_zoom", "max_zoom", "license_url", "privacy_policy_url", "best", "start_date", "end_date", "available_projections", "attribution"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"app-config": {"type": "string"}, "express": {"type": "string"}, "process-promises": {"type": "string"}, "q": {"type": "string"}, "querystring": {"type": "string"}, "split": {"type": "string"}}, "required": ["app-config", "express", "process-promises", "q", "querystring", "split"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "higgo-music-recognition", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "ISC", "dependencies" : {"app-config" : "^1.0.0", "express" : "^4.15.4", "process-promises" : "^1.0.0", "q" : "^1.5.0", "querystring" : "^0.2.0", "split" : "^1.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"app-config": {"type": "string"}, "express": {"type": "string"}, "process-promises": {"type": "string"}, "q": {"type": "string"}, "querystring": {"type": "string"}, "split": {"type": "string"}}, "required": ["app-config", "express", "process-promises", "q", "querystring", "split"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01000895": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01000895"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Topology", "objects" : {"E01000895" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00004409", "LAD11CD" : "E09000007"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00004410", "LAD11CD" : "E09000007"}, "arcs" : [[-2, 4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00004415", "LAD11CD" : "E09000007"}, "arcs" : [[-5, -1, 6, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00004419", "LAD11CD" : "E09000007"}, "arcs" : [[-4, 8, 9, 10, 11, -7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00004422", "LAD11CD" : "E09000007"}, "arcs" : [[12, 13, -10, 14]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00004428", "LAD11CD" : "E09000007"}, "arcs" : [[15, -13, 16]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00004430", "LAD11CD" : "E09000007"}, "arcs" : [[-11, -14, -16, 17]]}]}}, "arcs" : [[[4142, 4863], [1530, 1121]], [[5672, 5984], [561, 1256], [922, 221], [-293, 639], [1247, 251]], [[8109, 8351], [1818, -152], [72, -32], [-1142, -1042], [-1580, -214], [-406, -632], [-2822, -1918], [365, -242]], [[4414, 4119], [-967, 366], [695, 378]], [[5672, 5984], [-899, 32], [-7, 812]], [[4766, 6828], [106, 856], [766, -337], [151, 784], [-811, 132], [167, 502], [714, 62], [152, 1172], [2098, -1648]], [[4142, 4863], [-2006, 1630], [-286, -1599]], [[1850, 4894], [-1850, 1684], [1079, 551], [-80, -565], [960, 148], [570, 191], [635, -531], [1602, 456]], [[4414, 4119], [1782, -761]], [[6196, 3358], [-1779, -349], [-1635, 635], [1, -1277]], [[2783, 2367], [-402, -144]], [[2381, 2223], [-507, 801], [-24, 1870]], [[7464, 2546], [-616, 153], [-1284, -1267]], [[5564, 1432], [-879, -372], [-828, 1300], [-1074, 7]], [[6196, 3358], [1111, 422], [227, 25], [-70, -1259]], [[6053, 1073], [-489, 359]], [[7464, 2546], [541, -910], [-610, -778], [-1342, 215]], [[6053, 1073], [-1075, -1073], [-2597, 2223]]], "transform" : {"scale" : [5.899542641037116e-07, 5.850535046702992e-07], "translate" : [-0.179732421504108, 51.55386625420093]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01000895": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01000895"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "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" : 101820431, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "8faee1fcc9dfdfcf1c1538a4ac11d4cf", "wof:id" : 101820431, "wof:repo" : "whosonfirst-data-admin-pl"}, "bbox" : [21.057093, 52.505482, 21.083235, 52.520281], "geometry" : {"coordinates" : [[[21.064049, 52.519258], [21.068425, 52.51885], [21.06865, 52.519736], [21.070108, 52.5196], [21.069884, 52.518713], [21.071342, 52.518577], [21.070893, 52.516804], [21.075268, 52.516394], [21.075493, 52.517281], [21.076952, 52.517145], [21.077626, 52.519805], [21.082002, 52.519395], [21.081777, 52.518509], [21.083235, 52.518372], [21.081661, 52.512166], [21.080203, 52.512302], [21.079753, 52.510529], [21.078295, 52.510665], [21.077845, 52.508892], [21.076387, 52.509029], [21.075488, 52.505482], [21.07403, 52.505618], [21.074704, 52.508278], [21.070329, 52.508687], [21.070105, 52.507801], [21.068647, 52.507937], [21.068197, 52.506164], [21.065281, 52.506437], [21.065506, 52.507323], [21.064047, 52.507459], [21.064272, 52.508346], [21.061355, 52.508619], [21.061804, 52.510392], [21.063263, 52.510256], [21.064161, 52.513802], [21.062702, 52.513939], [21.062927, 52.514825], [21.057093, 52.51537], [21.057542, 52.517143], [21.061917, 52.516735], [21.062815, 52.520281], [21.064274, 52.520145], [21.064049, 52.519258]]], "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#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["ee-soa-testservice"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Solcrystol", "symbol" : "SOC", "logoURI" : "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/CJze5X3G3V6nqqrfeALTpb1HbkKvspjiUGR12rVchL3T/SOC.png", "decimals" : 9, "address" : "CJze5X3G3V6nqqrfeALTpb1HbkKvspjiUGR12rVchL3T", "chainId" : 101, "tags" : ["social-token", "Metaverses", "community-token", "game"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$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"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d696-125", "text" : "- 2 -\nRepresentation at Meetings\nIt has come to the attention of various members of the P.R. Committee\nthat there is a lackof NAEB representation at many meetings of learned\ngroups. Since the membership of the Committee encompasses most of the\nareas of the United States, the chairman of the committee has offered\nto provide as far as possible such representation from the membership\nof the committee, in each case selecting a member sufficiently near the\nplace of meeting to free the NAEB of all expense.\nPromotion Slides for NAEB ET Stations\nAt the request of Headquarters, suggested copy for TV slides promoting\nNAEB (and the member station) as well as quotations have been prepared\nhave h\u00a9cn submitted to the Board for approval.\nLapel Pin Proposal\nA proposal has been made that NAEB adopt an official lapel pin.\nSeveral designs have: been made and circulated to Committee members.\nAs of now, those of the Committee who have commented are perfectly\ndivided on the idea. Those favoring the idea of a pin have each\nfavored a different design; one member does not like the idea of a\npin. On this point the Committee earnestly requests the comments of\nits constituents.\nUp-Grading the P.R. Manual\nDuring the course of the year your Chairman solicited and received\nfrom various members of the Committee numerous suggestions and ideas that\nmight be incorporated into future editions of the Manual.\nP.R, Article\nAn authoritative illustrated article entitled \"Personalized Public\nRelations was prepared by Committee Member Marion Corwell for publication\nin the NAEB magazine.\nj^,.cellaneous Ideas and Suggestions for Further Consideration\numbus\nthose\nFULL TIME NAEB P.R. PERSON- initially approved by Committee at Col-\nmeeting\u2014later objected to by some absentee members as well as by\nvoting for proposal\u2014currently impossible for budgetary reason.\nWIDER USE OF NAEB OFFICIAL LOGOTYPE - self-explanatory.\nADOPTION OF AN NAEB MUSICAL SIGNATURE - never discussed."} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"STT": {"type": "string"}, "STX": {"type": "string"}}, "required": ["STT", "STX"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"STT" : "St. Thomas", "STX" : "St. Croix"} | json_instruct | {"type": "object", "properties": {"STT": {"type": "string"}, "STX": {"type": "string"}}, "required": ["STT", "STX"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"minecraft-classic-protocol": {"type": "string"}}, "required": ["minecraft-classic-protocol"]}, "devDependencies": {"type": "object", "properties": {"protodef-validator": {"type": "string"}}, "required": ["protodef-validator"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "minecraft-classic-protocol-extension", "version" : "1.2.0", "description" : "A plugin for minecraft-classic-protocol that adds experimental and bleeding-edge CPE features", "main" : "index.js", "scripts" : {"test" : "protodef-validator data/protocol.json"}, "repository" : {"type" : "git", "url" : "git+https://github.com/PrismarineJS/minecraft-classic-protocol-extension.git"}, "keywords" : [], "author" : "mhsjlw", "license" : "MIT", "bugs" : {"url" : "https://github.com/PrismarineJS/minecraft-classic-protocol-extension/issues"}, "homepage" : "https://github.com/PrismarineJS/minecraft-classic-protocol-extension#readme", "dependencies" : {"minecraft-classic-protocol" : "^1.3.0"}, "devDependencies" : {"protodef-validator" : "^1.3.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"minecraft-classic-protocol": {"type": "string"}}, "required": ["minecraft-classic-protocol"]}, "devDependencies": {"type": "object", "properties": {"protodef-validator": {"type": "string"}}, "required": ["protodef-validator"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 5025, "cartId" : "40443137-fc38-4aa3-a53a-749814bd3f28", "preferredProducts" : [3150], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$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"}, "paypalEmail": {"type": "string"}}, "required": ["id", "name", "paypalEmail"]}}, "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" : 3634, "info" : {"name" : "blog.hu - no ads", "description" : "Rekl\u00e1mok ki\u00edrt\u00e1sa a blog.hu-r\u00f3l", "additionalInfo" : null, "format" : "uso", "category" : "blog", "createdAt" : "2007-09-30T16:41:45.000Z", "updatedAt" : "2007-09-30T16:41:45.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 3475, "name" : "Psyche", "paypalEmail" : "heja@freemail.hu"}}, "stats" : {"installs" : {"total" : 297, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "3634-after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"blog.hu\") {\r\n/* Arial helyett Trebuchet MS a linkekben */\r\na {\r\n font-family: \"Trebuchet MS\", sans serif !important;\r\n}\r\n/* rekl\u00c3\u00a1mok off */\r\ndiv#banner, div#detailsbox {\r\n display: none !important;\r\n}\r\ndiv#head {\r\n height: 70px !important;\r\n background-image: 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"}, "paypalEmail": {"type": "string"}}, "required": ["id", "name", "paypalEmail"]}}, "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#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.