input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1 value | schema stringlengths 100 1.99k |
|---|---|---|---|
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"dist/source.js": {"type": "integer"}, "dist/source.min.js": {"type": "integer"}, "dist/source.min.js.gz": {"type": "integer"}}, "required": ["dist/source.js", "dist/source.min.js", "dist/source.min.js.gz"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dist/source.js" : 2687, "dist/source.min.js" : 305, "dist/source.min.js.gz" : 208} | json_instruct | {"type": "object", "properties": {"dist/source.js": {"type": "integer"}, "dist/source.min.js": {"type": "integer"}, "dist/source.min.js.gz": {"type": "integer"}}, "required": ["dist/source.js", "dist/source.min.js", "dist/source.min.js.gz"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "http": {"type": "object", "properties": {"port": {"type": "integer"}}, "required": ["port"]}}, "required": ["name", "http"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "my well-configured app", "http" : {"port" : 3000}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "http": {"type": "object", "properties": {"port": {"type": "integer"}}, "required": ["port"]}}, "required": ["name", "http"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following 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" : [404.085, 307.988, 1, 424.831, 297.016, 1, 406.784, 295.042, 1, 825.065, 381.783, 0, 832.962, 397.002, 0, 444.291, 299.916, 1, 466.961, 351.28, 1, 441.552, 388.248, 1, 435.11, 376.409, 1, 397.615, 431.2, 1, 387.869, 502.099, 1, 472.855, 380.407, 1, 490.643, 446.751, 1, 541.008, 490.937, 1, 397.273, 305.574, 1, 407.941, 306.175, 1, 876.035, 345.523, 0, 413.879, 289.447, 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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "bin": {"type": "object", "properties": {"days": {"type": "string"}}, "required": ["days"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "mutation-testing": {"type": "string"}}, "required": ["test", "mutation-testing"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "grunt": {"type": "string"}, "grunt-mutation-testing": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "grunt", "grunt-mutation-testing", "mocha"]}}, "required": ["name", "version", "private", "description", "main", "directories", "bin", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dv-date-calculator", "version" : "1.0.0", "private" : true, "description" : "A utility for calculating the number of days a project has run", "main" : "index.js", "directories" : {"test" : "test"}, "bin" : {"days" : "./bin/dateCalculator.js"}, "scripts" : {"test" : "./node_modules/.bin/mocha --reporter spec && grunt", "mutation-testing" : "grunt"}, "author" : "Tomas McKinless", "license" : "MIT", "devDependencies" : {"chai" : "^3.5.0", "grunt" : "^0.4.5", "grunt-mutation-testing" : "^1.3.2", "mocha" : "^2.4.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "bin": {"type": "object", "properties": {"days": {"type": "string"}}, "required": ["days"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "mutation-testing": {"type": "string"}}, "required": ["test", "mutation-testing"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "grunt": {"type": "string"}, "grunt-mutation-testing": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "grunt", "grunt-mutation-testing", "mocha"]}}, "required": ["name", "version", "private", "description", "main", "directories", "bin", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"clients_without_service": {"type": "string"}, "outages": {"type": "string"}, "created_at": {"type": "string"}}, "required": ["clients_without_service", "outages", "created_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"clients_without_service" : "3ef9890b4105efa341ec35069dbeaa79", "outages" : "ab5109bb5909b37961b32cdbf869efe6", "created_at" : "2021-12-31T06:19:48.164306"} | json_instruct | {"type": "object", "properties": {"clients_without_service": {"type": "string"}, "outages": {"type": "string"}, "created_at": {"type": "string"}}, "required": ["clients_without_service", "outages", "created_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"editor.formatOnSave": {"type": "boolean"}, "eslint.workingDirectories": {"type": "array", "items": {"type": "object", "properties": {"mode": {"type": "string"}}, "required": ["mode"]}}, "eslint.validate": {"type": "array", "items": {"type": "string"}}, "editor.codeActionsOnSave": {"type": "object", "properties": {"source.fixAll.eslint": {"type": "boolean"}}, "required": ["source.fixAll.eslint"]}, "typescript.updateImportsOnFileMove.enabled": {"type": "string"}, "typescript.preferences.importModuleSpecifier": {"type": "string"}, "todo-tree.tree.showCountsInTree": {"type": "boolean"}, "editor.renderControlCharacters": {"type": "boolean"}}, "required": ["editor.formatOnSave", "eslint.workingDirectories", "eslint.validate", "editor.codeActionsOnSave", "typescript.updateImportsOnFileMove.enabled", "typescript.preferences.importModuleSpecifier", "todo-tree.tree.showCountsInTree", "editor.renderControlCharacters"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"editor.formatOnSave" : true, "eslint.workingDirectories" : [{"mode" : "auto"}], "eslint.validate" : ["javascript", "javascriptreact", "html", "typescriptreact", "json"], "editor.codeActionsOnSave" : {"source.fixAll.eslint" : true}, "typescript.updateImportsOnFileMove.enabled" : "always", "typescript.preferences.importModuleSpecifier" : "non-relative", "todo-tree.tree.showCountsInTree" : true, "editor.renderControlCharacters" : true} | json_instruct | {"type": "object", "properties": {"editor.formatOnSave": {"type": "boolean"}, "eslint.workingDirectories": {"type": "array", "items": {"type": "object", "properties": {"mode": {"type": "string"}}, "required": ["mode"]}}, "eslint.validate": {"type": "array", "items": {"type": "string"}}, "editor.codeActionsOnSave": {"type": "object", "properties": {"source.fixAll.eslint": {"type": "boolean"}}, "required": ["source.fixAll.eslint"]}, "typescript.updateImportsOnFileMove.enabled": {"type": "string"}, "typescript.preferences.importModuleSpecifier": {"type": "string"}, "todo-tree.tree.showCountsInTree": {"type": "boolean"}, "editor.renderControlCharacters": {"type": "boolean"}}, "required": ["editor.formatOnSave", "eslint.workingDirectories", "eslint.validate", "editor.codeActionsOnSave", "typescript.updateImportsOnFileMove.enabled", "typescript.preferences.importModuleSpecifier", "todo-tree.tree.showCountsInTree", "editor.renderControlCharacters"], "$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-string": {"type": "string"}, "port-version": {"type": "integer"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version-string", "port-version", "homepage", "description", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gcp-cpp-samples-gcs-indexer", "version-string" : "0.0.1-dev", "port-version" : 1, "homepage" : "https://github.com/GoogleCloudPlatform/cpp-samples/", "description" : "Indexing GCS Buckets with C++ and Cloud Spanner", "dependencies" : ["boost-program-options", "boost-core", "boost-serialization", "boost-asio", "boost-beast", "boost-property-tree", "google-cloud-cpp"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version-string": {"type": "string"}, "port-version": {"type": "integer"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version-string", "port-version", "homepage", "description", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"website": {"type": "string"}, "published_on": {"type": "string"}, "links": {"type": "object", "properties": {"reddit": {"type": "string"}, "github": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["reddit", "github", "twitter"]}, "overview": {"type": "object", "properties": {"en": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "zh"]}, "symbol": {"type": "string"}, "initial_price": {"type": "object", "properties": {"ETH": {"type": "string"}, "USD": {"type": "string"}}, "required": ["ETH", "USD"]}, "address": {"type": "string"}, "email": {"type": "string"}}, "required": ["website", "published_on", "links", "overview", "symbol", "initial_price", "address", "email"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"website" : "https://raiden.network/", "published_on" : "2017-10-18", "links" : {"reddit" : "https://www.reddit.com/r/raidennetwork/", "github" : "https://github.com/raiden-network/raiden/", "twitter" : "https://twitter.com/raiden_network"}, "overview" : {"en" : "The Raiden Network is an off-chain scaling solution, enabling near-instant, low-fee and scalable payments. It\u2019s complementary to the Ethereum blockchain and works with any ERC20 compatible token.", "zh" : "\u96f7\u7535\u7f51\u7edc(Raiden Network)\u662f\u4e00\u4e2a ERC-20 \u4ee3\u5e01\u7684\u94fe\u5916\u4f20\u8f93\u7f51\u7edc\uff0c\u76f8\u6bd4\u4e8e\u94fe\u4e0a\u7684\u4ee3\u5e01\u4f20\u8f93\uff0c\u96f7\u7535\u7f51\u7edc\u63d0\u4f9b\u4e86\u4e00\u4e2a\u5feb\u901f\u7684\u3001\u53ef\u6269\u5c55\u7684\u548c\u7ecf\u6d4e\u7684\u9009\u62e9\u3002"}, "symbol" : "RDN", "initial_price" : {"ETH" : "0.00213663 ETH", "USD" : "0.67 USD"}, "address" : "0x255Aa6DF07540Cb5d3d297f0D0D4D84cb52bc8e6", "email" : "contact@raiden.network"} | json_instruct | {"type": "object", "properties": {"website": {"type": "string"}, "published_on": {"type": "string"}, "links": {"type": "object", "properties": {"reddit": {"type": "string"}, "github": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["reddit", "github", "twitter"]}, "overview": {"type": "object", "properties": {"en": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "zh"]}, "symbol": {"type": "string"}, "initial_price": {"type": "object", "properties": {"ETH": {"type": "string"}, "USD": {"type": "string"}}, "required": ["ETH", "USD"]}, "address": {"type": "string"}, "email": {"type": "string"}}, "required": ["website", "published_on", "links", "overview", "symbol", "initial_price", "address", "email"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"textCitation" : "[See iunss1 on Metamath](http://us.metamath.org/mpegif/iunss1.html)"}], "names" : ["iunss1"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cA", "#T_wss", "#T_cB", "#T_wi", "#T_ciun--1", "#T_vx", "#T_ciun--2", "#T_cA", "#T_cC", "#T_wss", "#T_ciun--1", "#T_vx", "#T_ciun--2", "#T_cB", "#T_cC", "#T_cA", "#T_vx", "#T_cB", "#T_vx"], "metaLanguage" : "METAMATH", "remarks" : " Subclass theorem for indexed union. (Contributed by NM, 10-Dec-2004.) (Proof shortened by Andrew Salmon, 25-Jul-2011.) ", "statement" : "iunss1 $p |- ( A C_ B -> U_ x e. A C C_ U_ x e. B C ) $.\n$d A x $.\n$d B x $."} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : 1273020001, "parent" : 1273020, "name" : "AEK NAULI", "latitude" : null, "longitude" : null, "postal" : [21126], "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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"kind": {"type": "string"}, "collectionName": {"type": "string"}, "info": {"type": "object", "properties": {"singularName": {"type": "string"}, "pluralName": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["singularName", "pluralName", "displayName"]}, "options": {"type": "object", "properties": {"draftAndPublish": {"type": "boolean"}}, "required": ["draftAndPublish"]}, "pluginOptions": {"type": "object", "properties": {}, "required": []}, "attributes": {"type": "object", "properties": {"first_name": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "last_name": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "movies": {"type": "object", "properties": {"type": {"type": "string"}, "relation": {"type": "string"}, "target": {"type": "string"}, "inversedBy": {"type": "string"}}, "required": ["type", "relation", "target", "inversedBy"]}}, "required": ["first_name", "last_name", "movies"]}}, "required": ["kind", "collectionName", "info", "options", "pluginOptions", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"kind" : "collectionType", "collectionName" : "actors", "info" : {"singularName" : "actor", "pluralName" : "actors", "displayName" : "Actor"}, "options" : {"draftAndPublish" : true}, "pluginOptions" : {}, "attributes" : {"first_name" : {"type" : "string"}, "last_name" : {"type" : "string"}, "movies" : {"type" : "relation", "relation" : "manyToMany", "target" : "api::movie.movie", "inversedBy" : "actors"}}} | json_instruct | {"type": "object", "properties": {"kind": {"type": "string"}, "collectionName": {"type": "string"}, "info": {"type": "object", "properties": {"singularName": {"type": "string"}, "pluralName": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["singularName", "pluralName", "displayName"]}, "options": {"type": "object", "properties": {"draftAndPublish": {"type": "boolean"}}, "required": ["draftAndPublish"]}, "pluginOptions": {"type": "object", "properties": {}, "required": []}, "attributes": {"type": "object", "properties": {"first_name": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "last_name": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "movies": {"type": "object", "properties": {"type": {"type": "string"}, "relation": {"type": "string"}, "target": {"type": "string"}, "inversedBy": {"type": "string"}}, "required": ["type", "relation", "target", "inversedBy"]}}, "required": ["first_name", "last_name", "movies"]}}, "required": ["kind", "collectionName", "info", "options", "pluginOptions", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}, "egis": {"type": "null"}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1", "egis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\u5de5\u5ee0\u540d\u7a31" : "\u88d5\u8c50\u4f01\u696d\u793e", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99621994", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "07510003120484", "\u5de5\u5ee0\u5730\u5740" : "\u6843\u5712\u5e02\u4e2d\u58e2\u5340\u6210\u529f\u91cc\u5927\u83ef\u8def\u4e00\u56db\u865f\u4e00\u6a13", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u6843\u5712\u5e02\u4e2d\u58e2\u5340\u6210\u529f\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u66fe\u6797\u6021\u5982", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "45056416", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u7368\u8cc7", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "0751018", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0751114", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["11\u7d21\u7e54\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["111\u7d21\u7d17"], "egis" : null} | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}, "egis": {"type": "null"}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1", "egis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Department": {"type": "string"}, "Region": {"type": "string"}, "Position": {"type": "string"}, "Name": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016": {"type": "string"}, "\u0424\u043e\u0442\u043e": {"type": "string"}, "\u042f\u043a \u0436\u0438\u0432\u0435": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456": {"type": "string"}, "type": {"type": "string"}, "key": {"type": "string"}, "analytics": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "integer"}, "i": {"type": "integer"}, "k": {"type": "integer"}, "ka": {"type": "integer"}}, "required": ["y", "i", "k", "ka"]}}, "declarationsLinks": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "year": {"type": "integer"}, "provider": {"type": "string"}}, "required": ["id", "year", "provider"]}}}, "required": ["Department", "Region", "Position", "Name", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016", "\u0424\u043e\u0442\u043e", "\u042f\u043a \u0436\u0438\u0432\u0435", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456", "type", "key", "analytics", "declarationsLinks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Department" : "\u0416\u0438\u0442\u043e\u043c\u0438\u0440\u0441\u044c\u043a\u0430 \u043c\u0456\u0441\u0446\u0435\u0432\u0430 \u043f\u0440\u043e\u043a\u0443\u0440\u0430\u0442\u0443\u0440\u0430", "Region" : "\u0416\u0438\u0442\u043e\u043c\u0438\u0440\u0441\u044c\u043a\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c", "Position" : "\u041f\u0440\u043e\u043a\u0443\u0440\u043e\u0440 \u0416\u0438\u0442\u043e\u043c\u0438\u0440\u0441\u044c\u043a\u043e\u0457 \u043c\u0456\u0441\u0446\u0435\u0432\u043e\u0457 \u043f\u0440\u043e\u043a\u0443\u0440\u0430\u0442\u0443\u0440\u0438 \u0416\u0438\u0442\u043e\u043c\u0438\u0440\u0441\u044c\u043a\u043e\u0457 \u043e\u0431\u043b\u0430\u0441\u0442\u0456", "Name" : "\u0406\u043b\u044c\u0447\u0435\u043d\u043a\u043e \u041f\u0435\u0442\u0440\u043e \u041b\u0435\u043e\u043d\u0456\u0434\u043e\u0432\u0438\u0447", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013" : "", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014" : "", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015" : "https://public.nazk.gov.ua/declaration/ab5bacf0-55ae-4fc0-8944-30717597fddb", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016" : "https://public.nazk.gov.ua/declaration/9ef7259c-4149-4976-a546-67a4099e1fad", "\u0424\u043e\u0442\u043e" : "", "\u042f\u043a \u0436\u0438\u0432\u0435" : "", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456" : "", "type" : "prosecutor", "key" : "ilchenko_petro_leonidovich", "analytics" : [{"y" : 2015, "i" : 83641, "k" : 37, "ka" : 1}, {"y" : 2016, "i" : 131952, "k" : 37, "ka" : 1}, {"y" : 2017, "b" : 86384.97, "i" : 271589, "k" : 37, "ka" : 1}], "declarationsLinks" : [{"id" : "nacp_ab5bacf0-55ae-4fc0-8944-30717597fddb", "year" : 2015, "provider" : "declarations.com.ua.opendata"}, {"id" : "nacp_9ef7259c-4149-4976-a546-67a4099e1fad", "year" : 2016, "provider" : "declarations.com.ua.opendata"}, {"id" : "nacp_c31980d0-6ed8-42d3-98e0-2d96d13a85ce", "year" : 2017, "provider" : "declarations.com.ua.opendata"}]} | json_instruct | {"type": "object", "properties": {"Department": {"type": "string"}, "Region": {"type": "string"}, "Position": {"type": "string"}, "Name": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016": {"type": "string"}, "\u0424\u043e\u0442\u043e": {"type": "string"}, "\u042f\u043a \u0436\u0438\u0432\u0435": {"type": "string"}, "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456": {"type": "string"}, "type": {"type": "string"}, "key": {"type": "string"}, "analytics": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "integer"}, "i": {"type": "integer"}, "k": {"type": "integer"}, "ka": {"type": "integer"}}, "required": ["y", "i", "k", "ka"]}}, "declarationsLinks": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "year": {"type": "integer"}, "provider": {"type": "string"}}, "required": ["id", "year", "provider"]}}}, "required": ["Department", "Region", "Position", "Name", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2013", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2014", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2015", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 2016", "\u0424\u043e\u0442\u043e", "\u042f\u043a \u0436\u0438\u0432\u0435", "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0456\u0457 \u0434\u043e\u0431\u0440\u043e\u0447\u0435\u0441\u043d\u043e\u0441\u0442\u0456", "type", "key", "analytics", "declarationsLinks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {}, "required": []}, "exports": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}}, "required": ["from"]}}}, "required": ["__symbolic", "version", "metadata", "exports"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"__symbolic" : "module", "version" : 3, "metadata" : {}, "exports" : [{"from" : "./tabbed-line-chart-group/tabbed-line-chart-group.component"}, {"from" : "./line-chart.component"}, {"from" : "./line-chart.module"}]}, {"__symbolic" : "module", "version" : 1, "metadata" : {}, "exports" : [{"from" : "./tabbed-line-chart-group/tabbed-line-chart-group.component"}, {"from" : "./line-chart.component"}, {"from" : "./line-chart.module"}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {}, "required": []}, "exports": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}}, "required": ["from"]}}}, "required": ["__symbolic", "version", "metadata", "exports"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"parserOptions": {"type": "object", "properties": {"sourceType": {"type": "string"}, "ecmaVersion": {"type": "integer"}, "experimentalObjectRestSpread": {"type": "boolean"}}, "required": ["sourceType", "ecmaVersion", "experimentalObjectRestSpread"]}, "extends": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"es6": {"type": "boolean"}, "node": {"type": "boolean"}, "jest": {"type": "boolean"}}, "required": ["es6", "node", "jest"]}, "rules": {"type": "object", "properties": {"eqeqeq": {"type": "integer"}, "no-alert": {"type": "integer"}, "no-caller": {"type": "integer"}, "no-eval": {"type": "integer"}, "no-extend-native": {"type": "integer"}, "no-floating-decimal": {"type": "integer"}, "no-implicit-globals": {"type": "integer"}, "no-labels": {"type": "integer"}, "no-loop-func": {"type": "integer"}, "no-new-require": {"type": "integer"}, "no-path-concat": {"type": "integer"}, "no-useless-rename": {"type": "integer"}, "no-var": {"type": "integer"}, "no-shadow": {"type": "integer"}, "prefer-const": {"type": "integer"}, "prefer-spread": {"type": "integer"}, "strict": {"type": "integer"}, "valid-jsdoc": {"type": "integer"}, "global-require": {"type": "integer"}, "no-console": {"type": "integer"}, "no-unused-vars": {"type": "integer"}, "require-atomic-updates": {"type": "integer"}, "no-prototype-builtins": {"type": "integer"}}, "required": ["eqeqeq", "no-alert", "no-caller", "no-eval", "no-extend-native", "no-floating-decimal", "no-implicit-globals", "no-labels", "no-loop-func", "no-new-require", "no-path-concat", "no-useless-rename", "no-var", "no-shadow", "prefer-const", "prefer-spread", "strict", "valid-jsdoc", "global-require", "no-console", "no-unused-vars", "require-atomic-updates", "no-prototype-builtins"]}}, "required": ["parserOptions", "extends", "env", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parserOptions" : {"sourceType" : "module", "ecmaVersion" : 2019, "experimentalObjectRestSpread" : true}, "extends" : ["eslint:recommended", "plugin:prettier/recommended"], "env" : {"es6" : true, "node" : true, "jest" : true}, "rules" : {"eqeqeq" : 2, "no-alert" : 2, "no-caller" : 2, "no-eval" : 2, "no-extend-native" : 2, "no-floating-decimal" : 2, "no-implicit-globals" : 2, "no-labels" : 2, "no-loop-func" : 2, "no-new-require" : 2, "no-path-concat" : 2, "no-useless-rename" : 2, "no-var" : 2, "no-shadow" : 2, "prefer-const" : 2, "prefer-spread" : 2, "strict" : 2, "valid-jsdoc" : 2, "global-require" : 0, "no-console" : 0, "no-unused-vars" : 0, "require-atomic-updates" : 0, "no-prototype-builtins" : 0}} | json_instruct | {"type": "object", "properties": {"parserOptions": {"type": "object", "properties": {"sourceType": {"type": "string"}, "ecmaVersion": {"type": "integer"}, "experimentalObjectRestSpread": {"type": "boolean"}}, "required": ["sourceType", "ecmaVersion", "experimentalObjectRestSpread"]}, "extends": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"es6": {"type": "boolean"}, "node": {"type": "boolean"}, "jest": {"type": "boolean"}}, "required": ["es6", "node", "jest"]}, "rules": {"type": "object", "properties": {"eqeqeq": {"type": "integer"}, "no-alert": {"type": "integer"}, "no-caller": {"type": "integer"}, "no-eval": {"type": "integer"}, "no-extend-native": {"type": "integer"}, "no-floating-decimal": {"type": "integer"}, "no-implicit-globals": {"type": "integer"}, "no-labels": {"type": "integer"}, "no-loop-func": {"type": "integer"}, "no-new-require": {"type": "integer"}, "no-path-concat": {"type": "integer"}, "no-useless-rename": {"type": "integer"}, "no-var": {"type": "integer"}, "no-shadow": {"type": "integer"}, "prefer-const": {"type": "integer"}, "prefer-spread": {"type": "integer"}, "strict": {"type": "integer"}, "valid-jsdoc": {"type": "integer"}, "global-require": {"type": "integer"}, "no-console": {"type": "integer"}, "no-unused-vars": {"type": "integer"}, "require-atomic-updates": {"type": "integer"}, "no-prototype-builtins": {"type": "integer"}}, "required": ["eqeqeq", "no-alert", "no-caller", "no-eval", "no-extend-native", "no-floating-decimal", "no-implicit-globals", "no-labels", "no-loop-func", "no-new-require", "no-path-concat", "no-useless-rename", "no-var", "no-shadow", "prefer-const", "prefer-spread", "strict", "valid-jsdoc", "global-require", "no-console", "no-unused-vars", "require-atomic-updates", "no-prototype-builtins"]}}, "required": ["parserOptions", "extends", "env", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "source": {"type": "string"}, "time": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "source", "time", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "\u8428\u5229\u5df4\uff1a\u9057\u61be\u4e0d\u80fd\u51fa\u6218\u6cd5\u56fd\u676f\u51b3\u8d5b\uff0c\u6700\u5f00\u59cb\u5c31\u8ff7\u604b\u963f\u68ee\u7eb3", "source" : "Goal.com", "time" : "2020-07-24 08:14:28", "content" : "\u864e\u62517\u670824\u65e5\u8baf\u00a0\u8fd1\u65e5\uff0c\u672c\u8d5b\u5b63\u88ab\u963f\u68ee\u7eb3\u79df\u501f\u81f3\u6cd5\u7532\u5723\u57c3\u8482\u5b89\u7684\u7403\u961f\u5c0f\u5c06\u8428\u5229\u5df4\u63a5\u53d7\u4e86\u5a92\u4f53\u7684\u91c7\u8bbf\uff0c\u4ed6\u8868\u793a\u4e0d\u80fd\u591f\u53c2\u52a0\u5723\u57c3\u8482\u5b89\u5bf9\u9635\u5df4\u9ece\u5723\u65e5\u8033\u66fc\u7684\u6cd5\u56fd\u676f\u51b3\u8d5b\u8ba9\u4ed6\u611f\u5230\u6709\u4e9b\u5931\u671b\uff0c\u540c\u65f6\u4ed6\u4e5f\u8868\u793a\u4e86\u4ed6\u5bf9\u67aa\u624b\u7684\u8ff7\u604b\uff0c\u4ed6\u8868\u793a\u6e34\u671b\u8d5b\u5b63\u6b63\u5f0f\u62ab\u4e0a\u963f\u68ee\u7eb3\u6218\u888d\u4e3a\u5176\u51fa\u6218\u3002\n2019\u5e747\u6708\uff0c\u67aa\u624b\u4ee52500\u4e07\u82f1\u9551\u7684\u4ef7\u683c\u4ece\u5723\u57c3\u8482\u5b89\u7b7e\u4e0b\u4e86\u8428\u5229\u5df4\uff0c\u4f5c\u4e3a\u8fd9\u7b14\u4ea4\u6613\u7684\u4e00\u90e8\u5206\uff0c\u8fd9\u4f4d\u6cd5\u56fd\u5c0f\u5c06\u672c\u8d5b\u5b63\u88ab\u79df\u501f\u56de\u5723\u57c3\u8482\u5b89\u53c2\u52a0\u6bd4\u8d5b\uff0c\u672c\u8d5b\u5b63\u4ed6\u4e5f\u4e3a\u5723\u57c3\u8482\u5b89\u51fa\u6218\u4e8612\u6b21\u3002\n\u8428\u5229\u5df4\u5728\u63a5\u53d7\u91c7\u8bbf\u65f6\u8868\u793a\uff1a\u201c\u5f88\u591a\u51fa\u8272\u7684\u7403\u5458\u90fd\u66fe\u5728\u963f\u68ee\u7eb3\u6548\u529b\u8fc7\uff0c\u6211\u4ece\u4e00\u5f00\u59cb\u5c31\u7231\u4e0a\u4e86\u963f\u68ee\u7eb3\u3002\u201d\n\u201c\u5c3d\u7ba1\u963f\u68ee\u7eb3\u5728\u8fc7\u53bb3\u30014\u5e74\u91cc\u5e76\u6ca1\u6709\u5728\u8d5b\u4e8b\u4e2d\u53d6\u5f97\u9886\u5148\u5730\u4f4d\uff0c\u4f46\u548c\u5723\u57c3\u8482\u5b89\u4e00\u6837\uff0c\u5b83\u5149\u8f89\u7684\u5386\u53f2\u548c\u4ee4\u4eba\u5174\u594b\u7684\u7403\u8ff7\u4f7f\u6211\u5411\u5f80\u3002\u201d\n\u201c\u6211\u8ff7\u604b\u7740\u963f\u68ee\u7eb3\uff0c\u963f\u68ee\u7eb3\u72ec\u7279\u7684\u6c14\u8d28\u5438\u5f15\u7740\u6211\uff0c\u80fd\u591f\u52a0\u76df\u963f\u68ee\u7eb3\u7b80\u76f4\u5c31\u50cf\u662f\u6253\u5f00\u4e86\u65b0\u4e16\u754c\u7684\u5927\u95e8\u3002\u201d\n\u201c\u4e0a\u8d5b\u5b63\u6211\u5728\u5723\u57c3\u8482\u5b89\u8e22\u4e8619\u573a\u6bd4\u8d5b\uff0c\u90a3\u65f6\u5019\u6211\u8fd8\u6ca1\u6709\u505a\u597d\u52a0\u76df\u963f\u68ee\u7eb3\u7684\u51c6\u5907\uff0c\u6211\u9700\u8981\u901a\u8fc7\u6bd4\u8d5b\u6765\u8bc1\u660e\u6211\u7684\u5b9e\u529b\u3002\u540e\u6765\u5f88\u4e0d\u5e78\uff0c\u6211\u906d\u9047\u4e86\u5f88\u4e45\u7684\u4f24\u75c5\u3002\u201d\n\u201c\u4f24\u75c5\u7684\u786e\u5f88\u56f0\u96be\uff0c\u5c24\u5176\u56e0\u4e3a\u4f24\u75c5\u5bfc\u81f4\u6211\u65e0\u6cd5\u53c2\u52a0\u6bd4\u8d5b\uff0c\u5176\u4e2d\u8fd8\u5305\u542b\u6b27\u8054\u676f\u7684\u6bd4\u8d5b\u3002\u4f46\u8fd9\u5728\u4e00\u5b9a\u7a0b\u5ea6\u4e0a\u4e5f\u78e8\u7ec3\u6211\u7684\u610f\u5fd7\u3002\u201d\n\u5bf9\u4e8e\u65e0\u7f18\u51fa\u6218\u5723\u57c3\u8482\u5b89\u5bf9\u9635\u5df4\u9ece\u5723\u65e5\u8033\u66fc\u7684\u6cd5\u56fd\u676f\u51b3\u8d5b\uff0c\u8428\u5229\u5df4\u8868\u793a\uff1a\u201c\u867d\u7136\u6211\u4e0d\u80fd\u4e0a\u573a\u6bd4\u8d5b\uff0c\u4f46\u6211\u4e5f\u4e0d\u4f1a\u9519\u8fc7\u8fd9\u573a\u6bd4\u8d5b\u3002\u6211\u4f1a\u53bb\u7403\u573a\u5185\u4e3a\u5723\u57c3\u8482\u5b89\u52a0\u6cb9\uff0c\u8ba9\u4ed6\u4eec\u5c3d\u53ef\u80fd\u591a\u5730\u611f\u53d7\u9053\u652f\u6301\u3002\u201d\n\u201c\u5982\u679c\u6211\u4ec5\u4ec5\u662f\u5728\u7535\u89c6\u673a\u524d\u89c2\u770b\u8fd9\u573a\u6cd5\u56fd\u676f\u51b3\u8d5b\uff0c\u611f\u89c9\u5c31\u5b8c\u5168\u4e0d\u4e00\u6837\u4e86\u3002\u6211\u5e0c\u671b\u770b\u89c1\u5723\u57c3\u8482\u5b89\u593a\u51a0\uff0c\u8fd9\u6837\u6211\u5c31\u53ef\u4ee5\u5b89\u5fc3\u5730\u548c\u6211\u5723\u57c3\u8482\u5b89\u7684\u961f\u53cb\u9053\u522b\u3002\u201d\n\u201c\u8fd9\u662f\u6211\u4f5c\u4e3a\u804c\u4e1a\u7403\u5458\u7684\u7b2c\u4e8c\u4e2a\u8d5b\u5b63\uff0c\u4e5f\u662f\u6211\u7b2c\u4e00\u6b21\u53c2\u52a0\u51b3\u8d5b\u3002\u5f53\u7136\uff0c\u6211\u4e5f\u5e0c\u671b\u6211\u672a\u6765\u80fd\u6709\u66f4\u591a\u7684\u673a\u4f1a\u53c2\u52a0\u5404\u79cd\u51b3\u8d5b\u3002\u201d\n\u201c\u6b64\u5916\uff0c\u8fd9\u4e5f\u5c06\u4f1a\u662f\u6211\u5728\u5723\u57c3\u8482\u5b89\u7684\u6700\u540e\u4e00\u573a\u6bd4\u8d5b\uff0c\u662f\u5723\u57c3\u8482\u5b89\u57f9\u80b2\u4e86\u6211\u3002\u201d\n\u201c\u6b64\u524d\u5723\u57c3\u8482\u5b89\u548c\u963f\u68ee\u7eb3\u66fe\u5c31\u6211\u6cd5\u56fd\u676f\u767b\u573a\u6bd4\u8d5b\u8fdb\u884c\u8fc7\u8c08\u5224\uff0c\u4f46\u6700\u7ec8\u6ca1\u80fd\u8fbe\u6210\u534f\u8bae\uff0c\u6211\u611f\u5230\u6709\u4e9b\u5931\u671b\u3002\u201d\n\u76f8\u5173\u9605\u8bfb\uff1a\u963f\u68ee\u7eb3\u6b63\u5f0f\u53d1\u5e03\u65b0\u8d5b\u5b63\u4e3b\u573a\u7403\u8863\uff0c\u8428\u5361\u6539\u7a7f7\u53f7\n\u76f8\u5173\u9605\u8bfb\uff1a\u963f\u5c14\u7279\u5854\uff1a\u5373\u4f7f\u7403\u961f\u593a\u5f97\u8db3\u603b\u676f\uff0c\u8fd9\u4e5f\u4e0d\u80fd\u7b97\u4f5c\u4e0d\u9519\u7684\u8d5b\u5b63\n\u76f8\u5173\u9605\u8bfb\uff1a\u90ae\u62a5\uff1a\u5c3c\u65e5\u5229\u4e9a\u6b63\u5728\u52a0\u901f\u8bf4\u670d\u8428\u5361\u4e3a\u5176\u56fd\u5bb6\u961f\u6548\u529b\u00a0\n\u76f8\u5173\u9605\u8bfb\uff1a\u8def\u6613\u65af\uff1a\u5982\u679c\u6211\u672a\u6765\u8981\u5f53\u6559\u7ec3\uff0c\u6211\u9700\u8981\u526a\u6389\u81ea\u5df1\u7684\u84ec\u84ec\u5934 (\u7f16\u8f91\uff1a\u59da\u51e1)"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "source": {"type": "string"}, "time": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "source", "time", "content"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "Lars O. Grobe wrote:\n>> Because unless the campatability link is installed, a large number of\n>> existing scenes won't render, and none of the docs will tell you why. \n>> Can you imagine something more frustrating to a new user?\n> \n> But that is what I am wondering. The new user does not have existing\n> scenes. And it is trivial to change the scenes that are distributed,\n\n\nThey're patched if you look into the package.\n\n\n\n\n> The real worry I could understand is that things are documented in RwR\n> which is not so easy to update. But that is also true for all changes of\n> Radiance including new features.\n\n\nAt least those changes, including the rename of rview to rvu, are\ndocumented in /usr/share/doc/radiance/README.Debian, which is the\nappropriate place for such a documentation.\n\n\n\n\nBernd Zeimetz\n<bernd at bzed.de> <http://bzed.de/>\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-dev/2007-November/000819.html).</sup>", "attachments" : [], "created_by_name" : "Bernd Zeimetz", "created_at" : "November 06, 2007 at 05:04AM", "created_by" : "Bernd_Zeimetz", "parent_id" : "radiance-dev_000784", "id" : "radiance-dev_000819"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"client_id": {"type": "integer"}, "experiment_id": {"type": "string"}, "ports": {"type": "object", "properties": {"video": {"type": "integer"}, "result": {"type": "integer"}, "control": {"type": "integer"}}, "required": ["video", "result", "control"]}, "run_results": {"type": "object", "properties": {"init": {"type": "number"}, "end": {"type": "number"}, "timestamp_error": {"type": "number"}, "success": {"type": "boolean"}, "ntp_offset": {"type": "number"}, "frames": {"type": "array", "items": {"type": "object", "properties": {"frame_id": {"type": "integer"}, "sent": {"type": "number"}, "recv": {"type": "number"}, "feedback": {"type": "boolean"}}, "required": ["frame_id", "sent", "recv", "feedback"]}}}, "required": ["init", "end", "timestamp_error", "success", "ntp_offset", "frames"]}}, "required": ["client_id", "experiment_id", "ports", "run_results"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"client_id" : 8, "experiment_id" : "LEGOHead_15Client100Benchmark", "ports" : {"video" : 60024, "result" : 60025, "control" : 60026}, "run_results" : {"init" : 1527852529173.818, "end" : 1527852595628.818, "timestamp_error" : 12736.773891517287, "success" : true, "ntp_offset" : -44499.181818181816, "frames" : [{"frame_id" : 29, "sent" : 1527852531298.818, "recv" : 1527852531347.818, "feedback" : false}, {"frame_id" : 37, "sent" : 1527852531899.818, "recv" : 1527852531950.818, "feedback" : false}, {"frame_id" : 55, "sent" : 1527852536118.818, "recv" : 1527852536156.818, "feedback" : false}, {"frame_id" : 58, "sent" : 1527852536298.818, "recv" : 1527852536356.818, "feedback" : false}, {"frame_id" : 103, "sent" : 1527852540329.818, "recv" : 1527852541818.818, "feedback" : false}, {"frame_id" : 112, "sent" : 1527852544609.818, "recv" : 1527852545438.818, "feedback" : false}, {"frame_id" : 114, "sent" : 1527852545470.818, "recv" : 1527852545530.818, "feedback" : false}, {"frame_id" : 116, "sent" : 1527852545604.818, "recv" : 1527852545648.818, "feedback" : false}, {"frame_id" : 117, "sent" : 1527852545670.818, "recv" : 1527852545733.818, "feedback" : false}, {"frame_id" : 118, "sent" : 1527852545738.818, "recv" : 1527852545802.818, "feedback" : false}, {"frame_id" : 156, "sent" : 1527852554424.818, "recv" : 1527852555292.818, "feedback" : false}, {"frame_id" : 293, "sent" : 1527852577768.818, "recv" : 1527852577825.818, "feedback" : false}, {"frame_id" : 321, "sent" : 1527852580523.818, "recv" : 1527852580579.818, "feedback" : false}, {"frame_id" : 351, "sent" : 1527852587190.818, "recv" : 1527852587943.818, "feedback" : false}, {"frame_id" : 371, "sent" : 1527852589753.818, "recv" : 1527852589813.818, "feedback" : false}, {"frame_id" : 394, "sent" : 1527852592319.818, "recv" : 1527852592639.818, "feedback" : false}, {"frame_id" : 398, "sent" : 1527852592998.818, "recv" : 1527852593218.818, "feedback" : false}]}} | json_instruct | {"type": "object", "properties": {"client_id": {"type": "integer"}, "experiment_id": {"type": "string"}, "ports": {"type": "object", "properties": {"video": {"type": "integer"}, "result": {"type": "integer"}, "control": {"type": "integer"}}, "required": ["video", "result", "control"]}, "run_results": {"type": "object", "properties": {"init": {"type": "number"}, "end": {"type": "number"}, "timestamp_error": {"type": "number"}, "success": {"type": "boolean"}, "ntp_offset": {"type": "number"}, "frames": {"type": "array", "items": {"type": "object", "properties": {"frame_id": {"type": "integer"}, "sent": {"type": "number"}, "recv": {"type": "number"}, "feedback": {"type": "boolean"}}, "required": ["frame_id", "sent", "recv", "feedback"]}}}, "required": ["init", "end", "timestamp_error", "success", "ntp_offset", "frames"]}}, "required": ["client_id", "experiment_id", "ports", "run_results"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2020-10-27T03:00:00Z", "Temp" : 21.5, "RelHum" : 13, "WindSpeed" : 10.7, "WindDir" : 98} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : "ALT112", "lang" : "en", "description" : null, "name" : "Age groups (under 1- 95 years and over)", "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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"topic" : "Antimatter and windows", "category" : "radiance-general", "attachments" : [], "created_by_name" : "Zack Rogers", "created_at" : "September 09, 2009 at 04:08PM", "body" : "\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2009-September/006208.html).</sup>", "id" : "radiance-general_006208", "created_by" : "Zack_Rogers"} | json_instruct | {"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "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" : 404372267, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "3693bbb02034baa9c34d4839f7c37783", "wof:id" : 404372267, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.13944, 45.94722, 3.13944, 45.94722], "geometry" : {"coordinates" : [3.13944, 45.94722], "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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"collectionName": {"type": "string"}, "info": {"type": "object", "properties": {"displayName": {"type": "string"}, "icon": {"type": "string"}, "description": {"type": "string"}}, "required": ["displayName", "icon", "description"]}, "options": {"type": "object", "properties": {}, "required": []}, "attributes": {"type": "object", "properties": {"bgColor": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "bgPadding": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "title": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "itemPadding": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "itemStyle": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "items": {"type": "object", "properties": {"displayName": {"type": "string"}, "type": {"type": "string"}, "repeatable": {"type": "boolean"}, "component": {"type": "string"}}, "required": ["displayName", "type", "repeatable", "component"]}}, "required": ["bgColor", "bgPadding", "title", "itemPadding", "itemStyle", "items"]}}, "required": ["collectionName", "info", "options", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"collectionName" : "components_widget_quick_links", "info" : {"displayName" : "QuickLinks", "icon" : "link", "description" : ""}, "options" : {}, "attributes" : {"bgColor" : {"type" : "string"}, "bgPadding" : {"type" : "string"}, "title" : {"type" : "string"}, "itemPadding" : {"type" : "string"}, "itemStyle" : {"type" : "string"}, "items" : {"displayName" : "QuickLinksItems", "type" : "component", "repeatable" : true, "component" : "widget-items.quick-links-items"}}} | json_instruct | {"type": "object", "properties": {"collectionName": {"type": "string"}, "info": {"type": "object", "properties": {"displayName": {"type": "string"}, "icon": {"type": "string"}, "description": {"type": "string"}}, "required": ["displayName", "icon", "description"]}, "options": {"type": "object", "properties": {}, "required": []}, "attributes": {"type": "object", "properties": {"bgColor": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "bgPadding": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "title": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "itemPadding": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "itemStyle": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "items": {"type": "object", "properties": {"displayName": {"type": "string"}, "type": {"type": "string"}, "repeatable": {"type": "boolean"}, "component": {"type": "string"}}, "required": ["displayName", "type", "repeatable", "component"]}}, "required": ["bgColor", "bgPadding", "title", "itemPadding", "itemStyle", "items"]}}, "required": ["collectionName", "info", "options", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"manufacturerId": {"type": "integer"}, "name": {"type": "string"}, "addressline1": {"type": "string"}, "addressline2": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "zip": {"type": "string"}, "phone": {"type": "string"}, "fax": {"type": "string"}, "email": {"type": "string"}, "rep": {"type": "string"}}, "required": ["manufacturerId", "name", "addressline1", "addressline2", "city", "state", "zip", "phone", "fax", "email", "rep"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"manufacturerId" : 19985678, "name" : "Happy End Searching", "addressline1" : "5 81st Street", "addressline2" : "Suite 100", "city" : "Mountain View", "state" : "CA", "zip" : "94043", "phone" : "650-555-0102", "fax" : "408-555-0103", "email" : "happysearching@example.com", "rep" : "John Snow"} | json_instruct | {"type": "object", "properties": {"manufacturerId": {"type": "integer"}, "name": {"type": "string"}, "addressline1": {"type": "string"}, "addressline2": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "zip": {"type": "string"}, "phone": {"type": "string"}, "fax": {"type": "string"}, "email": {"type": "string"}, "rep": {"type": "string"}}, "required": ["manufacturerId", "name", "addressline1", "addressline2", "city", "state", "zip", "phone", "fax", "email", "rep"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : ["github>financial-times/renovate-config-next"]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}}, "required": ["extends"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"$schema": {"type": "string"}, "definitions": {"type": "object", "properties": {"tenant": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["tenant"]}, "type": {"type": "string"}, "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["$schema", "definitions", "type", "items"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "http://json-schema.org/draft-04/schema#", "definitions" : {"tenant" : {"type" : "string", "description" : "shortcode of a tenant"}}, "type" : "array", "items" : {"$ref" : "#/definitions/tenant"}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "definitions": {"type": "object", "properties": {"tenant": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["tenant"]}, "type": {"type": "string"}, "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["$schema", "definitions", "type", "items"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 85772681, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "0eb1065fa93b7cdeed0c9e63d08411ca", "wof:id" : 85772681, "wof:repo" : "whosonfirst-data-admin-za"}, "bbox" : [18.46635, -34.00824, 18.46635, -34.00824], "geometry" : {"coordinates" : [18.46635, -34.00824], "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 sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "87ec7d9c6bbd924dc99731e5907f635c40edf357"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ember-data.model-fragments.js": {"type": "string"}, "ember-data.model-fragments.min.js": {"type": "string"}, "ember-data.model-fragments.prod.js": {"type": "string"}, "ember-data.model-fragments.prod.min.js": {"type": "string"}}, "required": ["ember-data.model-fragments.js", "ember-data.model-fragments.min.js", "ember-data.model-fragments.prod.js", "ember-data.model-fragments.prod.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ember-data.model-fragments.js" : "sha512-pBagMEnrJV5+70xVDci6wvBVB+iMgQ0QDh4Z/SwXD/TKif7c0orHbsH1BlB82AaXJgkekhrRGTy3bTW/M/0mvw==", "ember-data.model-fragments.min.js" : "sha512-guPh/ueGsa+/lHiZMJ7an1/z2UzxBB3Hh4gDnWn3H9RrjJzcBgTdjQhdtpieEQih2j495w9VrIi3sh2bf/w+7Q==", "ember-data.model-fragments.prod.js" : "sha512-X3JKVKb8MPl+iy99cXgWZoYvE4AEYIC3QytQJe2m7FRF+wHyLzmgK4dePlUdpIzK0qeIlpz7ipq1tSJMyN+mmA==", "ember-data.model-fragments.prod.min.js" : "sha512-Qs6K1u82zn/D/F7/vlZp39EUSq0JEMKLajeJSqbgKsXmReHrZhGAyPUeV6hyg0mBsbvsxz5LTrloNjkafLT4IQ=="} | json_instruct | {"type": "object", "properties": {"ember-data.model-fragments.js": {"type": "string"}, "ember-data.model-fragments.min.js": {"type": "string"}, "ember-data.model-fragments.prod.js": {"type": "string"}, "ember-data.model-fragments.prod.min.js": {"type": "string"}}, "required": ["ember-data.model-fragments.js", "ember-data.model-fragments.min.js", "ember-data.model-fragments.prod.js", "ember-data.model-fragments.prod.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "legal_status": {"type": "integer"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "provider": {"type": "string"}, "headmaster": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "legal_status", "fax", "phone", "provider", "headmaster", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Grundschule Am Schlo\u00df", "id" : "SH-0702942", "address" : "Schulstra\u00dfe 4, 22926 Ahrensburg", "school_type" : "Grundschule", "legal_status" : 1, "fax" : "04102 - 471418", "phone" : "04102 - 471417", "provider" : "Stadt Ahrensburg", "headmaster" : "Herr Lehmann", "state" : "SH", "programs" : {"programs" : []}, "full_time_school" : false, "lon" : 10.238391, "lat" : 53.678442} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "legal_status": {"type": "integer"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "provider": {"type": "string"}, "headmaster": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "legal_status", "fax", "phone", "provider", "headmaster", "state", "programs", "full_time_school", "lon", "lat"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"wiegand-daemon": {"type": "string"}}, "required": ["wiegand-daemon"]}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "test", "build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "nodemon": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "nodemon", "ts-node", "typescript"]}, "dependencies": {"type": "object", "properties": {"@types/dotenv": {"type": "string"}, "@types/moment-timezone": {"type": "string"}, "dotenv": {"type": "string"}, "local-ip": {"type": "string"}, "moment": {"type": "string"}, "moment-timezone": {"type": "string"}, "quick-local-ip": {"type": "string"}, "wiegand-control": {"type": "string"}}, "required": ["@types/dotenv", "@types/moment-timezone", "dotenv", "local-ip", "moment", "moment-timezone", "quick-local-ip", "wiegand-control"]}}, "required": ["name", "version", "description", "keywords", "repository", "main", "bin", "files", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "wiegand-daemon", "version" : "1.0.6", "description" : "Local network daemon to connect Wiegand access controller and remote server. \u5fae\u8015\u95e8\u7981\u63a7\u5236\u677f\u5c40\u57df\u7f51\u5b88\u62a4\u8fdb\u7a0b\uff0c\u7528\u4e8e\u4e0e\u8fdc\u7aef\u670d\u52a1\u5668\u901a\u8baf", "keywords" : ["wiegand", "\u5fae\u8015", "\u95e8\u7981"], "repository" : {"type" : "git", "url" : "https://github.com/code-is-poetry-software/wiegand-daemon.git"}, "main" : "index.ts", "bin" : {"wiegand-daemon" : "./bin/index.js"}, "files" : ["bin/*", "dist/*", "**/*.ts", "*.example"], "scripts" : {"start" : "nodemon --watch '**/*.ts' --exec 'ts-node' index.ts", "test" : "echo \"No test specified.\" && exit 0", "build" : "tsc"}, "author" : "Uice Lu", "license" : "ISC", "devDependencies" : {"@types/node" : "^12.6.8", "nodemon" : "^1.19.1", "ts-node" : "^8.3.0", "typescript" : "^3.5.3"}, "dependencies" : {"@types/dotenv" : "^6.1.1", "@types/moment-timezone" : "^0.5.12", "dotenv" : "^8.1.0", "local-ip" : "^2.0.0", "moment" : "^2.24.0", "moment-timezone" : "^0.5.26", "quick-local-ip" : "^1.0.7", "wiegand-control" : "^1.0.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"wiegand-daemon": {"type": "string"}}, "required": ["wiegand-daemon"]}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "test", "build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "nodemon": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "nodemon", "ts-node", "typescript"]}, "dependencies": {"type": "object", "properties": {"@types/dotenv": {"type": "string"}, "@types/moment-timezone": {"type": "string"}, "dotenv": {"type": "string"}, "local-ip": {"type": "string"}, "moment": {"type": "string"}, "moment-timezone": {"type": "string"}, "quick-local-ip": {"type": "string"}, "wiegand-control": {"type": "string"}}, "required": ["@types/dotenv", "@types/moment-timezone", "dotenv", "local-ip", "moment", "moment-timezone", "quick-local-ip", "wiegand-control"]}}, "required": ["name", "version", "description", "keywords", "repository", "main", "bin", "files", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x3fd2371b53f2db38765220c90f2ffd4ddbe8afd1", "tool" : "honeybadger", "start" : 1565856826.858525, "end" : 1565856938.7771804, "duration" : 111.91865539550781, "analysis" : [{"errors" : [], "file" : "/unique_chucks/10/0x3fd2371b53f2db38765220c90f2ffd4ddbe8afd1.sol", "name" : "Contactable"}, {"errors" : [], "file" : "/unique_chucks/10/0x3fd2371b53f2db38765220c90f2ffd4ddbe8afd1.sol", "name" : "MonethaUsersClaimHandler"}, {"errors" : [], "file" : "/unique_chucks/10/0x3fd2371b53f2db38765220c90f2ffd4ddbe8afd1.sol", "name" : "MonethaUsersClaimStorage"}, {"errors" : [], "file" : "/unique_chucks/10/0x3fd2371b53f2db38765220c90f2ffd4ddbe8afd1.sol", "name" : "Ownable"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"VersionId": {"type": "string"}, "IsDefaultVersion": {"type": "boolean"}, "CreateDate": {"type": "string"}, "PolicyName": {"type": "string"}}, "required": ["VersionId", "IsDefaultVersion", "CreateDate", "PolicyName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"VersionId" : "v1", "IsDefaultVersion" : false, "CreateDate" : "2019-01-23T19:07:10+00:00", "PolicyName" : "AmazonWorkLinkReadOnly"} | json_instruct | {"type": "object", "properties": {"VersionId": {"type": "string"}, "IsDefaultVersion": {"type": "boolean"}, "CreateDate": {"type": "string"}, "PolicyName": {"type": "string"}}, "required": ["VersionId", "IsDefaultVersion", "CreateDate", "PolicyName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["versionEnd", "versionStart", "changes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"versionEnd" : {"versionNum" : 3113, "commit" : "2e626a2b705108b1920b55b5f18a9139e96cd0c1", "date" : "2021-07-29T15:08:37.332Z"}, "versionStart" : {"versionNum" : 3112, "commit" : "fb14da75eb3c54f4f7c36cebfe7a0c116d9db35d", "date" : "2021-07-29T15:07:07.845Z"}, "changes" : ["blockchains/smartchain/allowlist.json", "blockchains/smartchain/assets/0xBe4628d7E02e9257875149FA4981C400a01A49A3/info.json"]} | json_instruct | {"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["versionEnd", "versionStart", "changes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"player_id": {"type": "integer"}, "name": {"type": "string"}, "position": {"type": "string"}, "height": {"type": "string"}, "weight": {"type": "string"}, "current_team": {"type": "null"}, "birth_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_date": {"type": "null"}, "college": {"type": "string"}, "high_school": {"type": "string"}, "draft_team": {"type": "string"}, "draft_round": {"type": "string"}, "draft_position": {"type": "string"}, "draft_year": {"type": "string"}, "current_salary": {"type": "null"}, "hof_induction_year": {"type": "null"}}, "required": ["player_id", "name", "position", "height", "weight", "current_team", "birth_date", "birth_place", "death_date", "college", "high_school", "draft_team", "draft_round", "draft_position", "draft_year", "current_salary", "hof_induction_year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"player_id" : 3129, "name" : "Chuck Bullough", "position" : "LB", "height" : "6-1", "weight" : "238", "current_team" : null, "birth_date" : "1969-03-03", "birth_place" : "East Lansing, MI", "death_date" : null, "college" : "Michigan St.", "high_school" : "Orchard Park, NY", "draft_team" : "Philadelphia Eagles", "draft_round" : "8", "draft_position" : "214", "draft_year" : "1992", "current_salary" : null, "hof_induction_year" : null} | json_instruct | {"type": "object", "properties": {"player_id": {"type": "integer"}, "name": {"type": "string"}, "position": {"type": "string"}, "height": {"type": "string"}, "weight": {"type": "string"}, "current_team": {"type": "null"}, "birth_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_date": {"type": "null"}, "college": {"type": "string"}, "high_school": {"type": "string"}, "draft_team": {"type": "string"}, "draft_round": {"type": "string"}, "draft_position": {"type": "string"}, "draft_year": {"type": "string"}, "current_salary": {"type": "null"}, "hof_induction_year": {"type": "null"}}, "required": ["player_id", "name", "position", "height", "weight", "current_team", "birth_date", "birth_place", "death_date", "college", "high_school", "draft_team", "draft_round", "draft_position", "draft_year", "current_salary", "hof_induction_year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "SIN\u00c9ADIN", "frequency" : 1, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"source" : "http://lema.rae.es/drae/srv/search?val=sustanciar", "word" : "sustanciar", "infinitivo" : "sustanciar", "participio" : ["sustanciado"], "gerundio" : ["sustanciando"], "tenses" : {"3" : [["sustancio"], ["sustancias", "sustanci\u00e1s"], ["sustancia"], ["sustanciamos"], ["sustanci\u00e1is", "sustancian"], ["sustancian"]], "4" : [["sustanci\u00e9"], ["sustanciaste"], ["sustanci\u00f3"], ["sustanciamos"], ["sustanciasteis", "sustanciaron"], ["sustanciaron"]], "5" : [["sustanciaba"], ["sustanciabas"], ["sustanciaba"], ["sustanci\u00e1bamos"], ["sustanciabais", "sustanciaban"], ["sustanciaban"]], "6" : [["sustanciar\u00eda"], ["sustanciar\u00edas"], ["sustanciar\u00eda"], ["sustanciar\u00edamos"], ["sustanciar\u00edais", "sustanciar\u00edan"], ["sustanciar\u00edan"]], "7" : [["sustanciar\u00e9"], ["sustanciar\u00e1s"], ["sustanciar\u00e1"], ["sustanciaremos"], ["sustanciar\u00e9is", "sustanciar\u00e1n"], ["sustanciar\u00e1n"]], "8" : [["sustancie"], ["sustancies"], ["sustancie"], ["sustanciemos"], ["sustanci\u00e9is", "sustancien"], ["sustancien"]], "9" : [["sustanciara"], ["sustanciaras"], ["sustanciara"], ["sustanci\u00e1ramos"], ["sustanciarais", "sustanciaran"], ["sustanciaran"]], "10" : [["sustanciase"], ["sustanciases"], ["sustanciase"], ["sustanci\u00e1semos"], ["sustanciaseis", "sustanciasen"], ["sustanciasen"]], "11" : [["sustanciare"], ["sustanciares"], ["sustanciare"], ["sustanci\u00e1remos"], ["sustanciareis", "sustanciaren"], ["sustanciaren"]], "12" : {"1" : ["sustancia"], "2" : ["sustancie"], "3" : ["sustanciemos"], "4" : ["sustanciad"], "5" : ["sustancien"]}}} | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$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"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["build", "dev"]}, "devDependencies": {"type": "object", "properties": {"http-server": {"type": "string"}, "parcel": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["http-server", "parcel", "typescript"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "private", "files", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "power-prompt", "version" : "0.1.5", "description" : "A userscript that super charges your web selection!", "main" : "dist/index.js", "repository" : "https://github.com/tinyws/power-prompt.git", "author" : "Dizy <dev@dizy.cc>", "license" : "MIT", "private" : false, "files" : ["dist", "!*.js.map"], "scripts" : {"build" : "parcel build src/index.ts", "dev" : "http-server -p 8080 ."}, "devDependencies" : {"http-server" : "^14.1.0", "parcel" : "^2.3.2", "typescript" : "^4.6.2"}} | 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"}, "private": {"type": "boolean"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["build", "dev"]}, "devDependencies": {"type": "object", "properties": {"http-server": {"type": "string"}, "parcel": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["http-server", "parcel", "typescript"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "private", "files", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationId" : 1192328, "stationGroupId" : 1192328, "name" : "\u8c4a\u5f8c\u6e05\u5ddd", "lineId" : 11923, "zipCode" : "879-6902", "pref" : "\u5927\u5206\u770c", "city" : "\u8c4a\u5f8c\u5927\u91ce\u5e02", "town" : "\u6e05\u5ddd\u753a\u96e8\u5824", "longitude" : 131.523558, "latitude" : 32.972974, "status" : 0} | json_instruct | {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 3673, "hash" : 2103127211, "artDyeHash" : 2103127211, "redacted" : false, "dyeManifestHash" : 3483500203, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"runtimeOptions": {"type": "object", "properties": {"additionalProbingPaths": {"type": "array", "items": {"type": "string"}}}, "required": ["additionalProbingPaths"]}}, "required": ["runtimeOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"runtimeOptions" : {"additionalProbingPaths" : ["/home/tim/.dotnet/store/|arch|/|tfm|", "/home/tim/.nuget/packages", "/usr/share/dotnet/sdk/NuGetFallbackFolder"]}} | json_instruct | {"type": "object", "properties": {"runtimeOptions": {"type": "object", "properties": {"additionalProbingPaths": {"type": "array", "items": {"type": "string"}}}, "required": ["additionalProbingPaths"]}}, "required": ["runtimeOptions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start-leaf-device-dps": {"type": "string"}, "start-iotedge-downstream-device": {"type": "string"}, "start-dev": {"type": "string"}}, "required": ["start-leaf-device-dps", "start-iotedge-downstream-device", "start-dev"]}, "dependencies": {"type": "object", "properties": {"azure-iot-device": {"type": "string"}, "azure-iot-device-http": {"type": "string"}, "azure-iot-device-mqtt": {"type": "string"}, "azure-iot-provisioning-device": {"type": "string"}, "azure-iot-provisioning-device-http": {"type": "string"}, "azure-iot-security-x509": {"type": "string"}, "node-gyp": {"type": "string"}}, "required": ["azure-iot-device", "azure-iot-device-http", "azure-iot-device-mqtt", "azure-iot-provisioning-device", "azure-iot-provisioning-device-http", "azure-iot-security-x509", "node-gyp"]}}, "required": ["name", "description", "repository", "version", "main", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "test-demo", "description" : "", "repository" : "", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "scripts" : {"start-leaf-device-dps" : "node start-leaf-device-dps.js", "start-iotedge-downstream-device" : "node start-iotedge-downstream-device.js", "start-dev" : "nodemon index.js"}, "dependencies" : {"azure-iot-device" : "^1.13.0", "azure-iot-device-http" : "^1.12.0", "azure-iot-device-mqtt" : "^1.12.0", "azure-iot-provisioning-device" : "^1.8.0", "azure-iot-provisioning-device-http" : "^1.8.0", "azure-iot-security-x509" : "^1.7.0", "node-gyp" : "^6.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start-leaf-device-dps": {"type": "string"}, "start-iotedge-downstream-device": {"type": "string"}, "start-dev": {"type": "string"}}, "required": ["start-leaf-device-dps", "start-iotedge-downstream-device", "start-dev"]}, "dependencies": {"type": "object", "properties": {"azure-iot-device": {"type": "string"}, "azure-iot-device-http": {"type": "string"}, "azure-iot-device-mqtt": {"type": "string"}, "azure-iot-provisioning-device": {"type": "string"}, "azure-iot-provisioning-device-http": {"type": "string"}, "azure-iot-security-x509": {"type": "string"}, "node-gyp": {"type": "string"}}, "required": ["azure-iot-device", "azure-iot-device-http", "azure-iot-device-mqtt", "azure-iot-provisioning-device", "azure-iot-provisioning-device-http", "azure-iot-security-x509", "node-gyp"]}}, "required": ["name", "description", "repository", "version", "main", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "string"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["AB", "AW", "SZ", "C", "SOL"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"AB" : ["qa", "qb", "qc", "pc", "od", "nd", "mc", "lc", "lb", "la", "nb"], "AW" : ["ra", "rb", "rc", "ma", "ka", "kb", "kc", "kd", "ld", "md", "ne", "oe", "pd", "qd"], "SZ" : "19", "C" : "White to play", "SOL" : [["W", "ob", "", ""]]} | json_instruct | {"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "string"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["AB", "AW", "SZ", "C", "SOL"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : "Fractional Langevin Monte Carlo: Exploring Levy Driven Stochastic Differential Equations for Markov Chain Monte Carlo.", "fields" : ["monte carlo molecular modeling", "dynamic monte carlo method", "monte carlo method in statistical physics", "markov chain mixing time", "hybrid monte carlo"], "abstract" : "Along with the recent advances in scalable Markov Chain Monte Carlo methods, sampling techniques that are based on Langevin diffusions have started receiving increasing attention. These so called Langevin Monte Carlo (LMC) methods are based on diffusions driven by a Brownian motion, which gives rise to Gaussian proposal distributions in the resulting algorithms. Even though these approaches have proven successful in many applications, their performance can be limited by the light-tailed nature of the Gaussian proposals. In this study, we extend classical LMC and develop a novel Fractional LMC (FLMC) framework that is based on a family of heavy-tailed distributions, called $\\alpha$-stable L\\'{e}vy distributions. As opposed to classical approaches, the proposed approach can possess large jumps while targeting the correct distribution, which would be beneficial for efficient exploration of the state space. We develop novel computational methods that can scale up to large-scale problems and we provide formal convergence analysis of the proposed scheme. Our experiments support our theory: FLMC can provide superior performance in multi-modal settings, improved convergence rates, and robustness to algorithm parameters.", "citation" : "Not cited", "year" : "2017", "departments" : ["Universit\u00e9 Paris-Saclay"], "conf" : "icml", "authors" : ["Umut Simsekli.....http://dblp.org/pers/hd/s/Simsekli:Umut"], "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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"pl__title": {"type": "string"}, "en__title": {"type": "string"}, "de__title": {"type": "string"}, "xx__background": {"type": "string"}, "pl__description": {"type": "string"}, "en__description": {"type": "string"}, "de__description": {"type": "string"}}, "required": ["pl__title", "en__title", "de__title", "xx__background", "pl__description", "en__description", "de__description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pl__title" : "Dermatochirurgia", "en__title" : "Dermatochirurgia", "de__title" : "Dermatochirurgia", "xx__background" : "/images/uploads/adobestock_232552089.jpeg", "pl__description" : "", "en__description" : "", "de__description" : ""} | json_instruct | {"type": "object", "properties": {"pl__title": {"type": "string"}, "en__title": {"type": "string"}, "de__title": {"type": "string"}, "xx__background": {"type": "string"}, "pl__description": {"type": "string"}, "en__description": {"type": "string"}, "de__description": {"type": "string"}}, "required": ["pl__title", "en__title", "de__title", "xx__background", "pl__description", "en__description", "de__description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "FLORIN-NISTOR", "frequency" : 1, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"/js/app.js": {"type": "string"}}, "required": ["/js/app.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"/js/app.js" : "/js/app.js?id=5bc5cfd79f30fe3dfc4c"} | json_instruct | {"type": "object", "properties": {"/js/app.js": {"type": "string"}}, "required": ["/js/app.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"airis kira n9010": {"type": "object", "properties": {"deviceName": {"type": "string"}, "marketingName": {"type": "string"}, "manufacturer": {"type": "string"}, "brand": {"type": "string"}, "display": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "touch": {"type": "boolean"}, "size": {"type": "integer"}}, "required": ["width", "height", "touch", "size"]}, "type": {"type": "string"}, "platform": {"type": "string"}}, "required": ["deviceName", "marketingName", "manufacturer", "brand", "display", "type", "platform"]}}, "required": ["airis kira n9010"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"airis kira n9010" : {"deviceName" : "KIRA N9010", "marketingName" : "KIRA N9010", "manufacturer" : "airis", "brand" : "airis", "display" : {"width" : 800, "height" : 480, "touch" : false, "size" : 9}, "type" : "laptop", "platform" : "android"}} | json_instruct | {"type": "object", "properties": {"airis kira n9010": {"type": "object", "properties": {"deviceName": {"type": "string"}, "marketingName": {"type": "string"}, "manufacturer": {"type": "string"}, "brand": {"type": "string"}, "display": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "touch": {"type": "boolean"}, "size": {"type": "integer"}}, "required": ["width", "height", "touch", "size"]}, "type": {"type": "string"}, "platform": {"type": "string"}}, "required": ["deviceName", "marketingName", "manufacturer", "brand", "display", "type", "platform"]}}, "required": ["airis kira n9010"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"e" : ["\ufff9`Maco'af~ `ko~ `wawa~ `a~ `komaen~ `to~ `holo~.\ufffa\ufffb\u5b69\u5b50\u5403\u98ef\u6642\u564e\u4f4f\u4e86\u611f\u5230\u5835\u3002", "\ufff9`Maco'af~ `no~ `kohaw~ `kako~, `fafahasa~ `kako~.\ufffa\ufffb\u6211\u559d\u6e6f\u88ab\u55c6\u5230\uff0c\u4e00\u76f4\u54b3\u55fd\u3002"], "f" : "(\u88ab\u564e\u4f4f\u7684\u611f\u89ba)\u5835\u5f97\u614c\uff0c\u88ab\u6c34\u6216\u6e6f\u55c6\u5230\u3002"}]}], "stem" : "co'af", "t" : "maco'af"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"version": {"type": "string"}, "salt": {"type": "string"}, "pass_hash": {"type": "string"}, "keys": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "iv": {"type": "string"}}, "required": ["key", "iv"]}}}, "required": ["version", "salt", "pass_hash", "keys"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "5.0", "salt" : "35U2Bkavb7s9tx1uiFym4oHMufr6", "pass_hash" : "jqS7bny1Zx2xBSNvuzxR9oEdDLGvTBCVb4xPsWjRkhS32FEwd", "keys" : [{"key" : "4VeLbSytCaFQfkWfJ4aWgT27J8eAg8SdEMkqVX1pgxLQFReHuMS1SGd6RTQdLv452b5woXLxPaPijybvA8rBUjhtF4oGRDzEcq167NsjUaZYNv2WyYHaL9QhCeRQwJYeksQkkqYGY832Jfmk1hPK7P8z7z3mHtK6z8CTPnCnz4mZ2EqP6MPmfC7qddRjb9Q6qKPVNz9oE5ivKaSpMKF8DD4sYT1Pvxjhgh", "iv" : "5y74DCBoyZcEeZUynDhZKw"}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "salt": {"type": "string"}, "pass_hash": {"type": "string"}, "keys": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "iv": {"type": "string"}}, "required": ["key", "iv"]}}}, "required": ["version", "salt", "pass_hash", "keys"], "$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"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "start"]}, "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"}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "@types/react-router-dom": {"type": "string"}, "babel-core": {"type": "string"}, "babel-runtime": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-router-dom": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-sass": {"type": "string"}, "rollup-plugin-typescript2": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/react", "@types/react-dom", "@types/react-router-dom", "babel-core", "babel-runtime", "react", "react-dom", "react-router-dom", "rollup", "rollup-plugin-sass", "rollup-plugin-typescript2", "typescript"]}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["react", "react-dom"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "peerDependencies", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "react-responsive-see-more", "version" : "1.0.1", "description" : "this package will recieve a list (array) of components and show them responcively in your wrapper", "main" : "dist/index.js", "scripts" : {"build" : "rollup -c", "start" : "rollup -c -w"}, "repository" : {"type" : "git", "url" : "git+https://github.com/mkantz84/react-responsive-see-more.git"}, "keywords" : [], "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/mkantz84/react-responsive-see-more/issues"}, "homepage" : "https://github.com/mkantz84/react-responsive-see-more#readme", "devDependencies" : {"@types/react" : "^16.9.41", "@types/react-dom" : "^16.9.8", "@types/react-router-dom" : "^5.1.5", "babel-core" : "^6.26.3", "babel-runtime" : "^6.26.0", "react" : "^16.13.1", "react-dom" : "^16.13.1", "react-router-dom" : "^5.2.0", "rollup" : "^2.18.1", "rollup-plugin-sass" : "^1.2.2", "rollup-plugin-typescript2" : "^0.27.1", "typescript" : "^3.9.5"}, "peerDependencies" : {"react" : "^16.8.0", "react-dom" : "^16.8.0"}, "files" : ["dist"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "start"]}, "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"}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "@types/react-router-dom": {"type": "string"}, "babel-core": {"type": "string"}, "babel-runtime": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-router-dom": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-sass": {"type": "string"}, "rollup-plugin-typescript2": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/react", "@types/react-dom", "@types/react-router-dom", "babel-core", "babel-runtime", "react", "react-dom", "react-router-dom", "rollup", "rollup-plugin-sass", "rollup-plugin-typescript2", "typescript"]}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["react", "react-dom"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "peerDependencies", "files"], "$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"}, "namespace": {"type": "string"}, "description": {"type": "string"}, "versions": {"type": "array", "items": {"type": "object", "properties": {"1.0.0": {"type": "string"}}, "required": ["1.0.0"]}}, "framework-version": {"type": "integer"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "institution": {"type": "string"}}, "required": ["name", "email", "institution"]}}, "permissions": {"type": "array", "items": {"type": "string"}}, "links": {"type": "object", "properties": {"control-center": {"type": "array", "items": {}}, "project": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "url": {"type": "string"}, "show-header-and-footer": {"type": "boolean"}}, "required": ["name", "icon", "url", "show-header-and-footer"]}}}, "required": ["control-center", "project"]}, "system-settings": {"type": "array", "items": {}}, "project-settings": {"type": "array", "items": {}}}, "required": ["name", "namespace", "description", "versions", "framework-version", "authors", "permissions", "links", "system-settings", "project-settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Mass Delete", "namespace" : "Stanford\\MassDelete", "description" : "A module for deleting a large number of records - be careful!!!", "versions" : [{"1.0.0" : "Initial Development Version"}], "framework-version" : 6, "authors" : [{"name" : "Andy Martin", "email" : "andy123@stanford.edu", "institution" : "Stanford University"}, {"name" : "YongJae Lee", "email" : "jael@stanford.edu", "institution" : "Stanford University"}, {"name" : "LeeAnn Yasukawa", "email" : "yasukawa@stanford.edu", "institution" : "Stanford University"}, {"name" : "Ekin Tertemiz", "email" : "ekin.tertemiz@swisstph.ch", "institution" : "Swiss Tropical and Public Health Institute"}], "permissions" : ["delete_data", "redcap_module_link_check_display"], "links" : {"control-center" : [], "project" : [{"name" : "Mass Delete", "icon" : "fas fa-times-circle", "url" : "page_mass_delete.php", "show-header-and-footer" : true}]}, "system-settings" : [], "project-settings" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "namespace": {"type": "string"}, "description": {"type": "string"}, "versions": {"type": "array", "items": {"type": "object", "properties": {"1.0.0": {"type": "string"}}, "required": ["1.0.0"]}}, "framework-version": {"type": "integer"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "institution": {"type": "string"}}, "required": ["name", "email", "institution"]}}, "permissions": {"type": "array", "items": {"type": "string"}}, "links": {"type": "object", "properties": {"control-center": {"type": "array", "items": {}}, "project": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "url": {"type": "string"}, "show-header-and-footer": {"type": "boolean"}}, "required": ["name", "icon", "url", "show-header-and-footer"]}}}, "required": ["control-center", "project"]}, "system-settings": {"type": "array", "items": {}}, "project-settings": {"type": "array", "items": {}}}, "required": ["name", "namespace", "description", "versions", "framework-version", "authors", "permissions", "links", "system-settings", "project-settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"P26698": {"type": "string"}, "PIGM_RHOST": {"type": "string"}, "Pigment production hydroxylase": {"type": "string"}}, "required": ["P26698", "PIGM_RHOST", "Pigment production hydroxylase"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"P26698" : "P26698", "PIGM_RHOST" : "P26698", "Pigment production hydroxylase" : "P26698"} | json_instruct | {"type": "object", "properties": {"P26698": {"type": "string"}, "PIGM_RHOST": {"type": "string"}, "Pigment production hydroxylase": {"type": "string"}}, "required": ["P26698", "PIGM_RHOST", "Pigment production hydroxylase"], "$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"}, "cordova": {"type": "object", "properties": {"id": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "platforms"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "engines": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"]}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "cordova", "repository", "engines", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "cordova-plugin-hide-webview-popover", "version" : "0.1.0", "description" : "Cordova StatusBar Plugin", "cordova" : {"id" : "cordova-plugin-hide-webview-popove", "platforms" : ["ios"]}, "repository" : {"type" : "git", "url" : "https://github.com/BowlingX/cordova-hide-webview-popover.git"}, "engines" : [{"name" : "cordova", "version" : ">=6.0.0"}], "author" : "David Heidrich", "license" : "Apache 2.0"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "cordova": {"type": "object", "properties": {"id": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "platforms"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "engines": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"]}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "cordova", "repository", "engines", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "license": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "bootstrap-rtl": {"type": "string"}}, "required": ["bootstrap", "bootstrap-rtl"]}}, "required": ["name", "homepage", "authors", "description", "main", "moduleType", "license", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ArticlesTranslation", "homepage" : "https://github.com/saleh199/ArticlesTranslation", "authors" : ["Saleh Saeed <saleh.saiid@gmail.com>"], "description" : "", "main" : "", "moduleType" : [], "license" : "MIT", "private" : true, "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"bootstrap" : "~3.3.4", "bootstrap-rtl" : "~3.3.4"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "license": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "bootstrap-rtl": {"type": "string"}}, "required": ["bootstrap", "bootstrap-rtl"]}}, "required": ["name", "homepage", "authors", "description", "main", "moduleType", "license", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"event": {"type": "object", "properties": {"requestContext": {"type": "object", "properties": {"domainName": {"type": "string"}, "connectionId": {"type": "string"}}, "required": ["domainName", "connectionId"]}}, "required": ["requestContext"]}, "context": {"type": "object", "properties": {}, "required": []}}, "required": ["event", "context"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"event" : {"requestContext" : {"domainName" : "localhost", "connectionId" : "123456"}}, "context" : {}} | json_instruct | {"type": "object", "properties": {"event": {"type": "object", "properties": {"requestContext": {"type": "object", "properties": {"domainName": {"type": "string"}, "connectionId": {"type": "string"}}, "required": ["domainName", "connectionId"]}}, "required": ["requestContext"]}, "context": {"type": "object", "properties": {}, "required": []}}, "required": ["event", "context"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "licenseFilename": {"type": "string"}, "readmeFilename": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-native": {"type": "string"}}, "required": ["react", "react-native"]}, "devDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-native": {"type": "string"}}, "required": ["react", "react-native"]}}, "required": ["name", "title", "version", "main", "private", "files", "keywords", "repository", "license", "licenseFilename", "readmeFilename", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@azuread/msal-react-native-android-poc", "title" : "MSALModule", "version" : "1.0.6", "main" : "index.js", "private" : true, "files" : ["README.md", "android", "index.js"], "keywords" : ["react-native"], "repository" : {"type" : "git", "url" : "https://github.com/AzureAD/microsoft-authentication-library-for-js.git"}, "license" : "MIT", "licenseFilename" : "LICENSE", "readmeFilename" : "README.md", "peerDependencies" : {"react" : "^16.8.1", "react-native" : ">=0.60.0-rc.0 <1.0.x"}, "devDependencies" : {"react" : "^16.9.0", "react-native" : "^0.61.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "licenseFilename": {"type": "string"}, "readmeFilename": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-native": {"type": "string"}}, "required": ["react", "react-native"]}, "devDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-native": {"type": "string"}}, "required": ["react", "react-native"]}}, "required": ["name", "title", "version", "main", "private", "files", "keywords", "repository", "license", "licenseFilename", "readmeFilename", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-97.718124, 31.105106], [-97.713661, 31.109941], [-97.711983, 31.11421], [-97.671644, 31.101131], [-97.671244, 31.100365], [-97.674307, 31.092646], [-97.673347, 31.087574], [-97.67514, 31.082811], [-97.676773, 31.081455], [-97.683777, 31.079931], [-97.685074, 31.076984], [-97.686148, 31.077283], [-97.685536, 31.075112], [-97.692654, 31.077365], [-97.698822, 31.080408], [-97.69635, 31.081612], [-97.697296, 31.08596], [-97.694443, 31.093788], [-97.694672, 31.095867], [-97.713577, 31.100891], [-97.712692, 31.103418], [-97.718124, 31.105106]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 86219}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}}, "required": ["t", "h"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "tapila'", "h" : [{"d" : [{"f" : "\u7c6e\u7b50\uff0c\u5c0f\u85e4\u7c69\u3002", "e" : ["\ufff9`O~ `ta~`pi~`la~`'~ `ko~ `pi~`palo~`a~`n~ `to~ `hakhak~.\ufffa\ufffb\u7cef\u7c73\u98ef\u653e\u5728\u85e4\u7b50\u5167\u3002"]}]}]} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}}, "required": ["t", "h"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "3521160001", "nama" : "TAMBAK BOYO"}, {"id" : "3521160002", "nama" : "PAKAH"}, {"id" : "3521160003", "nama" : "KEDUNGHARJO"}, {"id" : "3521160004", "nama" : "MANTINGAN"}, {"id" : "3521160005", "nama" : "SAMBIREJO"}, {"id" : "3521160006", "nama" : "PENGKOL"}, {"id" : "3521160007", "nama" : "JATIMULYO"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "issuer_name", "name_value", "min_cert_id", "min_entry_timestamp", "not_before", "not_after"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"issuer_ca_id" : 16418, "issuer_name" : "C=US, O=Let's Encrypt, CN=Let's Encrypt Authority X3", "name_value" : "docker-registry-default.51.144.125.123.nip.io", "min_cert_id" : 1062948087, "min_entry_timestamp" : "2018-12-28T07:26:27.01", "not_before" : "2018-12-28T06:26:25", "not_after" : "2019-03-28T06:26:25"} | json_instruct | {"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "issuer_name", "name_value", "min_cert_id", "min_entry_timestamp", "not_before", "not_after"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"rmse": {"type": "array", "items": {"type": "number"}}}, "required": ["rmse"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rmse" : [25.29570586563567]} | json_instruct | {"type": "object", "properties": {"rmse": {"type": "array", "items": {"type": "number"}}}, "required": ["rmse"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authors" : [{"author" : "Min Zhu"}, {"author" : "JunJun Zheng"}, {"author" : "Yuanzhao Zhu"}, {"author" : "Hui Wan"}, {"author" : "Yuchen Wu"}, {"author" : "Daojun Hong"}], "doi" : "10.1186/s12883-015-0341-1", "publication_date" : "2015-05-11", "id" : "EN115305", "url" : "https://pubmed.ncbi.nlm.nih.gov/25957575", "source" : "BMC neurology", "source_url" : "", "licence" : "CC BY", "language" : "en", "type" : "pubmed", "description" : "", "text" : "A 39-year-old man initially presented with intraventricular hemorrhage. The patient had an improved outcome at the early stage of hemorrhagic course; however, the clinical condition began to a sudden turn for deterioration with intracranial hypertension and cerebral hernia on day 15 after admission. Cerebral CT and MRI showed diffuse patchy signals with enhancement in bilateral cerebellopontine angle cistern, suprasellar cistern, ambient cistern, quadrigeminal cistern, bilateral cerebellum, cerebral hemisphere, and upper cervical cord surface. Pathological examination revealed that numerous spindled cells were scant of cytoplasm with hyperchromatic nuclei and various mitotic figures. Immunohistochemistry showed that the cells were positive to glial fibrillary acidic protein (GFAP) with about 5% Ki-67 positive labeling. The pathological findings were consistent with the diagnostic criteria of anaplastic astrocytoma (WHO grade III)."} | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "descriptor": {"type": "string"}}, "required": ["name", "descriptor"]}}}, "required": ["name", "methods"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "cbp", "methods" : [{"name" : "<init>", "descriptor" : "(Lceg$c;)V"}, {"name" : "a", "descriptor" : "(Lceh;Lbrx;Lfx;Laqa;)V", "parameters" : [{"index" : 1, "name" : "pState"}, {"index" : 2, "name" : "pWorldIn"}, {"index" : 3, "name" : "pPos"}, {"index" : 4, "name" : "pEntityIn"}]}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "descriptor": {"type": "string"}}, "required": ["name", "descriptor"]}}}, "required": ["name", "methods"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "opensourcecontributors", "description" : "Find all contributions for a user through the GitHub Archive", "license" : null, "starNum" : 71, "folkNum" : 11, "watchNum" : 71, "topic" : ["data", "golang-server", "open-source"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x26e75307fc0c021472feb8f727839531f112f317", "tool" : "osiris", "start" : 1564571667.5316074, "end" : 1564571670.5645103, "duration" : 3.032902956008911, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"c": {"type": "string"}, "v": {"type": "string"}}, "required": ["c", "v"]}}}, "required": ["items"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"items" : [{"c" : "Percent of gross domestic product (GDP)", "v" : "PC_GDP"}, {"c" : "Million units of national currency", "v" : "MIO_NAC"}]} | json_instruct | {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"c": {"type": "string"}, "v": {"type": "string"}}, "required": ["c", "v"]}}}, "required": ["items"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subchapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "chapter", "subchapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "", "historical" : "Prior Codifications\n\n1981 Ed., \u00a7 21-105.\n\n1973 Ed., \u00a7 21-105.\n\nDC CODE \u00a7 21-105\n\nCurrent through December 11, 2012", "credits" : "(Sept. 14, 1965, 79 Stat. 738, Pub. L. 89-183, \u00a7 1.)", "sections" : [{"prefix" : "a", "text" : " In case of the death of either parent from whom his or her minor children inherit or take by devise or bequest, the parent may by deed or last will and testament appoint a guardian of the property of the children, subject to the approval of the proper court of the District of Columbia."}, {"prefix" : "b", "text" : " This section does not limit or affect the power of a court of competent jurisdiction to appoint another person guardian of the children when it appears to the court that the welfare of the children requires it."}], "division" : {"identifier" : "III", "text" : "Decedents' Estates and Fiduciary Relations."}, "title" : {"identifier" : "21", "text" : "Fiduciary Relations and Persons with Mental Illness. (Refs & Annos)"}, "chapter" : {"identifier" : "1", "text" : "Guardianship of Infants."}, "subchapter" : {"identifier" : "I", "text" : "Appointment of Guardian; Bond."}, "heading" : {"title" : "21", "chaptersection" : "105", "identifier" : "21-105", "catch_text" : "Appointment by deed or will for child inheriting from parent."}} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subchapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "chapter", "subchapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {".js" : "9bb368686f7d40124d85ecaf2d936eec9d19b88a.js"} | json_instruct | {"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Update": {"type": "string"}, "answer": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "detail": {"type": "string"}, "explanation": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "saved_answer": {"type": "null"}, "type": {"type": "string"}}, "required": ["Update", "answer", "category", "choices", "detail", "explanation", "id", "saved_answer", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Update" : "2020-03-23 15:28:16", "answer" : ["B"], "category" : "saa", "choices" : ["A.\u5177\u6709\u6700\u65e9\u542f\u52a8\u914d\u7f6e\u7684\u5b9e\u4f8b", "B.\u53ef\u7528\u6027\u533a\u57df\u4e2d\u5177\u6709\u5927\u591a\u6570\u5b9e\u4f8b\u7684\u5b9e\u4f8b", "C.\u6700\u63a5\u8fd1\u4e0b\u4e00\u4e2a\u8ba1\u8d39\u5c0f\u65f6\u7684\u5b9e\u4f8b", "D.\u7ec4\u4e2d\u6700\u65e9\u7684\u5b9e\u4f8b"], "detail" : "\u4e00\u5bb6\u5a92\u4f53\u516c\u53f8\u5728 AWS \u4e0a\u90e8\u7f72\u4e86\u591a\u5c42\u4f53\u7cfb\u7ed3\u6784 Web \u670d\u52a1\u5668\u4f7f\u7528\u5e26\u6709 Auto Scaling \u7ec8\u6b62\u7b56\u7565\u7684 Auto Scaling \u7ec4\u90e8\u7f72\u5728\u4e24\u4e2a Availability Zone \u4e2d\u3002web\u670d\u52a1\u5668 Auto Scaling \u7ec4\u5f53\u524d\u670915\u4e2a\u5b9e\u4f8b\u6b63\u5728\u8fd0\u884c\u3002\u5728\u79e4\u8fd0\u884c\u671f\u95f4, \u54ea\u4e2a\u5b9e\u4f8b\u5c06\u9996\u5148\u7ec8\u6b62\uff1f", "explanation" : ["\u6b63\u786e\u7b54\u6848\u662fB, \u56e0\u4e3a\u670915\u4e2a\u5b9e\u4f8b, 2\u4e2aAZ\u7684\u5206\u5e03\u662f\u503e\u659c\u7684\u3002\u56e0\u6b64, \u9ed8\u8ba4\u60c5\u51b5\u4e0b, AZ\u4e2d\u5b9e\u4f8b\u6700\u591a\u7684\u5b9e\u4f8b\u5c06\u88ab\u7ec8\u6b62\u3002", "\u8bf7\u53c2\u9605 AWS \u6587\u6863- Auto Scaling \u7ec8\u6b62 Policy ", "\u9ed8\u8ba4\u7ec8\u6b62\u7b56\u7565\u65e8\u5728\u5e2e\u52a9\u786e\u4fdd\u60a8\u7684\u7f51\u7edc\u4f53\u7cfb\u7ed3\u6784\u5747\u5300\u5730\u8de8\u8d8a Availability Zone s\u3002\u4f7f\u7528\u9ed8\u8ba4\u7ec8\u6b62\u7b56\u7565\u65f6, Auto Scaling \u7ec4\u7684\u884c\u4e3a\u5982\u4e0b\u6240\u793a: "], "id" : 213, "saved_answer" : null, "type" : "Multiple Choice"} | json_instruct | {"type": "object", "properties": {"Update": {"type": "string"}, "answer": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "detail": {"type": "string"}, "explanation": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "saved_answer": {"type": "null"}, "type": {"type": "string"}}, "required": ["Update", "answer", "category", "choices", "detail", "explanation", "id", "saved_answer", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : "0x13c7dfaaffa71c27f45c45643b682f1d42f1e8c70e6a433d72acc62f9c6241f5", "parentHash" : "0x4142966e11d9db2589d90d3d06ab11eaafcc36b6b593212591745a9fb98259da", "number" : 69276, "timestamp" : 1439301100, "nonce" : "0x933f80a017110da2", "difficulty" : 2065921894541, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x88D74a59454F6cF3B51ef6b9136AFb6b9D405A88", "extraData" : "0x476574682f76312e302e312d37666266393930632f6c696e75782f676f312e34", "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#"} |
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": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 85863559, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "562021b4f7e89e8a64894d8e2e37c741", "wof:id" : 85863559, "wof:repo" : "whosonfirst-data-admin-es"}, "bbox" : [-3.688638, 40.471959, -3.688638, 40.471959], "geometry" : {"coordinates" : [-3.688638, 40.471959], "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"airtable": {"type": "string"}, "aws-serverless-express": {"type": "string"}, "body-parser": {"type": "string"}, "express": {"type": "string"}, "logme": {"type": "string"}, "pug": {"type": "string"}}, "required": ["airtable", "aws-serverless-express", "body-parser", "express", "logme", "pug"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "np-time-tracker", "version" : "1.0.0", "description" : "SMS-based time tracking system for November Project's PR day", "main" : "lib/app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/gtracy/np-time-tracker.git"}, "author" : "Greg Tracy", "license" : "MIT", "bugs" : {"url" : "https://github.com/gtracy/np-time-tracker/issues"}, "homepage" : "https://github.com/gtracy/np-time-tracker#readme", "dependencies" : {"airtable" : "^0.5.8", "aws-serverless-express" : "^3.3.5", "body-parser" : "^1.18.3", "express" : "^4.16.4", "logme" : "^0.4.0", "pug" : "^2.0.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"airtable": {"type": "string"}, "aws-serverless-express": {"type": "string"}, "body-parser": {"type": "string"}, "express": {"type": "string"}, "logme": {"type": "string"}, "pug": {"type": "string"}}, "required": ["airtable", "aws-serverless-express", "body-parser", "express", "logme", "pug"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["classmap"]}}, "required": ["name", "version", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "IvanPrat/PHPEasyDeploy", "version" : "dev-master", "autoload" : {"classmap" : ["src/"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["classmap"]}}, "required": ["name", "version", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"path": {"type": "string"}, "templateID": {"type": "integer"}, "sharedPropsHashes": {"type": "object", "properties": {}, "required": []}, "localProps": {"type": "object", "properties": {}, "required": []}}, "required": ["path", "templateID", "sharedPropsHashes", "localProps"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"path" : "speakers", "templateID" : 1, "sharedPropsHashes" : {}, "localProps" : {}} | json_instruct | {"type": "object", "properties": {"path": {"type": "string"}, "templateID": {"type": "integer"}, "sharedPropsHashes": {"type": "object", "properties": {}, "required": []}, "localProps": {"type": "object", "properties": {}, "required": []}}, "required": ["path", "templateID", "sharedPropsHashes", "localProps"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contacts" : [], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=5452", "name" : "Heart of Life", "primaryEmail" : "services.heartoflife@gmail.com", "website" : "https://sites.google.com/site/heartoflife1991", "organisationType" : ["Advocacy & Campaigning", "Direct Service", "Grant-making", "Network", "Support"], "telephone" : ["919774328707"], "mainAddrress" : {"state" : "Manipur", "address" : ["Kakching Khongnang Mari Phangbe", "Near Y M High School, P O Kakching", "Kakching", "Thoubal", "Manipur", "795103"]}} | json_instruct | {"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "CONDITIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "CONDITIONS_BY_TYPE", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Claim- Inpatient: Primary diagnosis", "COUNT_VALUE" : 8}, "AGE_AT_FIRST_DIAGNOSIS" : {"CATEGORY" : ["FEMALE", "MALE"], "MIN_VALUE" : [0, 34], "P10_VALUE" : [19, 34], "P25_VALUE" : [39, 42], "MEDIAN_VALUE" : [57, 56], "P75_VALUE" : [65, 59], "P90_VALUE" : [75, 82], "MAX_VALUE" : [77, 82]}} | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "CONDITIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "CONDITIONS_BY_TYPE", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "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"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "typeface-roboto-slab-cyrillic", "version" : "0.0.1", "description" : "Typeface Roboto Slab with cyrillic characters", "main" : "index.css", "scripts" : {"test" : "echo \"No test specified\""}, "repository" : {"type" : "git", "url" : "git+https://github.com/akolybelnikov/typeface-roboto-slab-cyrillic.git"}, "keywords" : ["typeface", "font", "font family", "google fonts", "roboto-slab", "cyrillic"], "author" : "Andrey Kolybelnikov <a.kolybelnikov@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/akolybelnikov/typeface-roboto-slab-cyrillic/issues"}, "homepage" : "https://github.com/akolybelnikov/typeface-roboto-slab-cyrillic#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "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", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"Peter Jihoon Kim": {"type": "string"}}, "required": ["Peter Jihoon Kim"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "frameworks": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "license", "summary", "homepage", "authors", "source", "source_files", "frameworks", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ConciseKit", "version" : "0.1.1", "license" : "MIT", "summary" : "A set of Objective-C additions and macros that lets you write code more quickly.", "homepage" : "http://github.com/petejkim/ConciseKit", "authors" : {"Peter Jihoon Kim" : "raingrove@gmail.com"}, "source" : {"git" : "https://github.com/petejkim/ConciseKit.git", "tag" : "v0.1.1"}, "source_files" : "src/**/*.{h,m}", "frameworks" : "Foundation", "requires_arc" : false} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"Peter Jihoon Kim": {"type": "string"}}, "required": ["Peter Jihoon Kim"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "frameworks": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "license", "summary", "homepage", "authors", "source", "source_files", "frameworks", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "d92f1eff8fd67c4fc924", "c" : {"0" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "88KPH", "symbol" : "KPH", "address" : "0x143B6d01195FCfcAE864A5E8C11fC89880e3CeA0", "decimals" : 0, "dharmaVerificationStatus" : "UNVERIFIED"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "source": {"type": "string"}}, "required": ["id", "name", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "b0f97013-87f5-4bab-87f2-ac4a5191b489", "name" : "will not lend", "source" : "folio"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "source": {"type": "string"}}, "required": ["id", "name", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x286bbee3f20f1702e707e58d33dc28a69e7efd4e", "tool" : "osiris", "start" : 1564591848.2163415, "end" : 1564591850.912009, "duration" : 2.6956675052642822, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"description": {"type": "string"}, "code": {"type": "string"}, "ldc": {"type": "array", "items": {}}, "constructores": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}, "parametros": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}}, "required": ["nombre", "description", "parametros"]}}, "metodos": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}}, "required": ["description", "code", "ldc", "constructores", "metodos"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "", "code" : "", "ldc" : [], "constructores" : [{"nombre" : "TimerNotification", "description" : "", "parametros" : [{"nombre" : "Object source", "description" : ""}, {"nombre" : "String msg", "description" : ""}, {"nombre" : "String type", "description" : ""}, {"nombre" : "long timeStamp", "description" : ""}, {"nombre" : "long sequenceNumber", "description" : ""}, {"nombre" : "Integer id", "description" : ""}]}], "metodos" : [{"nombre" : "getNotificationID", "description" : ""}]} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "code": {"type": "string"}, "ldc": {"type": "array", "items": {}}, "constructores": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}, "parametros": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}}, "required": ["nombre", "description", "parametros"]}}, "metodos": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}}, "required": ["description", "code", "ldc", "constructores", "metodos"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01008497": {"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": ["E01008497"]}, "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" : {"E01008497" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00043099", "LAD11CD" : "E08000022"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00043107", "LAD11CD" : "E08000022"}, "arcs" : [[4, -4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00043111", "LAD11CD" : "E08000022"}, "arcs" : [[6, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00043112", "LAD11CD" : "E08000022"}, "arcs" : [[8, -1, -5, 9]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00043117", "LAD11CD" : "E08000022"}, "arcs" : [[-7, 10, -2, -9, 11]]}]}}, "arcs" : [[[7112, 4571], [-1047, 3005], [-697, -437]], [[5368, 7139], [-401, 813]], [[4967, 7952], [66, 40], [2759, 1538]], [[7792, 9530], [471, -1128], [-555, 80], [-222, -546], [874, -3220], [-1248, -145]], [[9301, 4631], [-2213, -1059], [24, 999]], [[7792, 9530], [1029, 469], [840, -2845], [338, -1056], [-502, -654], [222, -690], [-418, -123]], [[3333, 5958], [541, -1203], [22, -620], [-649, -355], [414, -633], [-534, -261], [35, -444], [-1077, -284]], [[2085, 2158], [-1188, -200], [-308, 795], [806, 583], [-203, 1597], [-1192, 71], [3333, 954]], [[4234, 1677], [-124, 827], [1562, 592], [-784, 1796], [1047, 657], [-567, 1590]], [[9301, 4631], [358, -385], [-3140, -1412], [-1083, -1077], [406, -1421], [-715, -336], [-893, 1677]], [[3333, 5958], [294, 841], [1340, 1153]], [[4234, 1677], [-363, -573], [-398, -192], [117, -369], [-1219, -467], [322, 1155], [-517, 410], [-91, 517]]], "transform" : {"scale" : [1.262775274731481e-06, 5.938563945189006e-07], "translate" : [-1.448796354857124, 55.03112102886925]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01008497": {"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": ["E01008497"]}, "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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"source" : "http://lema.rae.es/drae/srv/search?val=anquilosar", "word" : "anquilosar", "infinitivo" : "anquilosar", "participio" : ["anquilosado"], "gerundio" : ["anquilosando"], "tenses" : {"3" : [["anquiloso"], ["anquilosas", "anquilos\u00e1s"], ["anquilosa"], ["anquilosamos"], ["anquilos\u00e1is", "anquilosan"], ["anquilosan"]], "4" : [["anquilos\u00e9"], ["anquilosaste"], ["anquilos\u00f3"], ["anquilosamos"], ["anquilosasteis", "anquilosaron"], ["anquilosaron"]], "5" : [["anquilosaba"], ["anquilosabas"], ["anquilosaba"], ["anquilos\u00e1bamos"], ["anquilosabais", "anquilosaban"], ["anquilosaban"]], "6" : [["anquilosar\u00eda"], ["anquilosar\u00edas"], ["anquilosar\u00eda"], ["anquilosar\u00edamos"], ["anquilosar\u00edais", "anquilosar\u00edan"], ["anquilosar\u00edan"]], "7" : [["anquilosar\u00e9"], ["anquilosar\u00e1s"], ["anquilosar\u00e1"], ["anquilosaremos"], ["anquilosar\u00e9is", "anquilosar\u00e1n"], ["anquilosar\u00e1n"]], "8" : [["anquilose"], ["anquiloses"], ["anquilose"], ["anquilosemos"], ["anquilos\u00e9is", "anquilosen"], ["anquilosen"]], "9" : [["anquilosara"], ["anquilosaras"], ["anquilosara"], ["anquilos\u00e1ramos"], ["anquilosarais", "anquilosaran"], ["anquilosaran"]], "10" : [["anquilosase"], ["anquilosases"], ["anquilosase"], ["anquilos\u00e1semos"], ["anquilosaseis", "anquilosasen"], ["anquilosasen"]], "11" : [["anquilosare"], ["anquilosares"], ["anquilosare"], ["anquilos\u00e1remos"], ["anquilosareis", "anquilosaren"], ["anquilosaren"]], "12" : {"1" : ["anquilosa"], "2" : ["anquilose"], "3" : ["anquilosemos"], "4" : ["anquilosad"], "5" : ["anquilosen"]}}} | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"limit" : 2, "name" : "Adamant platebody (g)", "value" : 12800, "highalch" : 7680, "id" : 2607, "lowalch" : 5120, "name_pt" : "Cota placa adamantio (o)", "price" : 31500, "last" : 31500} | json_instruct | {"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["bitcoin-explorer", "bitcoin-p2p", "bitcoinjs"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"gd-sprest-bs.js": {"type": "string"}, "gd-sprest-bs.min.js": {"type": "string"}}, "required": ["gd-sprest-bs.js", "gd-sprest-bs.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"gd-sprest-bs.js" : "sha512-gBYp6afxJ/iMEZ4NPYrUv2EvLN47I0uH3tzI3c/69gQ0u/u4ZHQhXpUrt4xYvvM+BdmdmC1uE1s7gbpvvlINJw==", "gd-sprest-bs.min.js" : "sha512-QkuL5w5ciOlB63MtuZh89AooNfPzcOnwHZybTeN5THkO6USdrFd5Fh2RMJ+KbOdRk72sIPGJ2kqaNwvmwMnHAg=="} | json_instruct | {"type": "object", "properties": {"gd-sprest-bs.js": {"type": "string"}, "gd-sprest-bs.min.js": {"type": "string"}}, "required": ["gd-sprest-bs.js", "gd-sprest-bs.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "77cc1fd16f48264ad213c41b32bbcb9392404ca7"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "page_action": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "manifest_version", "page_action"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Page Action Extension", "version" : "1.0", "manifest_version" : 2, "page_action" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "page_action": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "manifest_version", "page_action"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : 11682, "cartId" : "bb01c70f-0107-4216-8a67-06b1bee8e4db", "preferredProducts" : [170, 2817, 3233, 1379, 4881, 2108, 319, 4852, 4370, 3534], "productReviews" : [{"productId" : 4025, "reviewText" : "this Senior is snowy.", "reviewDate" : "2019-07-05T04:28:31.7087398+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"status": {"type": "string"}, "staticIpAddress": {"type": "string"}}, "required": ["status", "staticIpAddress"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : " 'stop' or 'start' ", "staticIpAddress" : "10.4.6.22"} | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "staticIpAddress": {"type": "string"}}, "required": ["status", "staticIpAddress"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"repoId": {"type": "string"}, "lastSync": {"type": "integer"}}, "required": ["repoId", "lastSync"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"repoId" : "e9acb822-72ba-4f17-8667-54d18b0ab98d", "lastSync" : 0} | json_instruct | {"type": "object", "properties": {"repoId": {"type": "string"}, "lastSync": {"type": "integer"}}, "required": ["repoId", "lastSync"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"valuesBenchAppend": {"type": "string"}, "valuesBenchAppendn": {"type": "string"}, "valuesBenchCollect": {"type": "string"}, "valuesBenchCollectn": {"type": "string"}, "valuesBenchConcat": {"type": "string"}, "valuesBenchConcatn": {"type": "string"}, "valuesBenchFilter": {"type": "string"}, "valuesBenchFiltern": {"type": "string"}, "valuesBenchMap": {"type": "string"}, "valuesBenchMapn": {"type": "string"}, "valuesBenchReverse": {"type": "string"}, "valuesBenchReversed": {"type": "string"}, "valuesBenchReversedn": {"type": "string"}, "valuesBenchReversen": {"type": "string"}, "valuesBenchSelect": {"type": "string"}, "valuesBenchSelectn": {"type": "string"}, "valuesBenchTree": {"type": "string"}, "valuesBenchTreen": {"type": "string"}}, "required": ["valuesBenchAppend", "valuesBenchAppendn", "valuesBenchCollect", "valuesBenchCollectn", "valuesBenchConcat", "valuesBenchConcatn", "valuesBenchFilter", "valuesBenchFiltern", "valuesBenchMap", "valuesBenchMapn", "valuesBenchReverse", "valuesBenchReversed", "valuesBenchReversedn", "valuesBenchReversen", "valuesBenchSelect", "valuesBenchSelectn", "valuesBenchTree", "valuesBenchTreen"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"class" : {}, "instance" : {"valuesBenchAppend" : "topa 7/29/2019 13:47", "valuesBenchAppendn" : "topa 9/19/2019 13:23", "valuesBenchCollect" : "topa 9/2/2019 11:33", "valuesBenchCollectn" : "topa 9/19/2019 13:24", "valuesBenchConcat" : "topa 9/2/2019 11:46", "valuesBenchConcatn" : "topa 9/19/2019 13:24", "valuesBenchFilter" : "topa 7/29/2019 14:49", "valuesBenchFiltern" : "topa 9/19/2019 13:25", "valuesBenchMap" : "topa 7/29/2019 14:52", "valuesBenchMapn" : "topa 9/19/2019 13:25", "valuesBenchReverse" : "topa 7/29/2019 13:45", "valuesBenchReversed" : "topa 9/2/2019 11:12", "valuesBenchReversedn" : "topa 9/2/2019 11:32", "valuesBenchReversen" : "topa 7/29/2019 13:42", "valuesBenchSelect" : "topa 9/2/2019 11:15", "valuesBenchSelectn" : "topa 9/19/2019 13:25", "valuesBenchTree" : "topa 8/1/2019 15:13", "valuesBenchTreen" : "topa 9/19/2019 13:25"}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"valuesBenchAppend": {"type": "string"}, "valuesBenchAppendn": {"type": "string"}, "valuesBenchCollect": {"type": "string"}, "valuesBenchCollectn": {"type": "string"}, "valuesBenchConcat": {"type": "string"}, "valuesBenchConcatn": {"type": "string"}, "valuesBenchFilter": {"type": "string"}, "valuesBenchFiltern": {"type": "string"}, "valuesBenchMap": {"type": "string"}, "valuesBenchMapn": {"type": "string"}, "valuesBenchReverse": {"type": "string"}, "valuesBenchReversed": {"type": "string"}, "valuesBenchReversedn": {"type": "string"}, "valuesBenchReversen": {"type": "string"}, "valuesBenchSelect": {"type": "string"}, "valuesBenchSelectn": {"type": "string"}, "valuesBenchTree": {"type": "string"}, "valuesBenchTreen": {"type": "string"}}, "required": ["valuesBenchAppend", "valuesBenchAppendn", "valuesBenchCollect", "valuesBenchCollectn", "valuesBenchConcat", "valuesBenchConcatn", "valuesBenchFilter", "valuesBenchFiltern", "valuesBenchMap", "valuesBenchMapn", "valuesBenchReverse", "valuesBenchReversed", "valuesBenchReversedn", "valuesBenchReversen", "valuesBenchSelect", "valuesBenchSelectn", "valuesBenchTree", "valuesBenchTreen"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"format_version": {"type": "string"}, "render_controllers": {"type": "object", "properties": {"controller.render.northern_princess": {"type": "object", "properties": {"arrays": {"type": "object", "properties": {"textures": {"type": "object", "properties": {"array.skins": {"type": "array", "items": {"type": "string"}}}, "required": ["array.skins"]}}, "required": ["textures"]}, "geometry": {"type": "string"}, "materials": {"type": "array", "items": {"type": "object", "properties": {"*": {"type": "string"}}, "required": ["*"]}}, "textures": {"type": "array", "items": {"type": "string"}}}, "required": ["arrays", "geometry", "materials", "textures"]}}, "required": ["controller.render.northern_princess"]}}, "required": ["format_version", "render_controllers"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"format_version" : "1.8.0", "render_controllers" : {"controller.render.northern_princess" : {"arrays" : {"textures" : {"array.skins" : ["texture.default", "texture.angry"]}}, "geometry" : "Geometry.default", "materials" : [{"*" : "Material.default"}], "textures" : ["query.has_target ? array.skins[1] : array.skins[0]"]}}} | json_instruct | {"type": "object", "properties": {"format_version": {"type": "string"}, "render_controllers": {"type": "object", "properties": {"controller.render.northern_princess": {"type": "object", "properties": {"arrays": {"type": "object", "properties": {"textures": {"type": "object", "properties": {"array.skins": {"type": "array", "items": {"type": "string"}}}, "required": ["array.skins"]}}, "required": ["textures"]}, "geometry": {"type": "string"}, "materials": {"type": "array", "items": {"type": "object", "properties": {"*": {"type": "string"}}, "required": ["*"]}}, "textures": {"type": "array", "items": {"type": "string"}}}, "required": ["arrays", "geometry", "materials", "textures"]}}, "required": ["controller.render.northern_princess"]}}, "required": ["format_version", "render_controllers"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"label" : "Fish", "normalizedVertices" : [{"x" : 0.08619241, "y" : 0.70339745}, {"x" : 0.6698076, "y" : 0.70339745}, {"x" : 0.6698076, "y" : 0.99660265}, {"x" : 0.08619241, "y" : 0.99660265}], "score" : 0.8900253}, {"label" : "Animal", "normalizedVertices" : [{"x" : 0.08054535, "y" : 0.6033974}, {"x" : 0.6698076, "y" : 0.6033974}, {"x" : 0.6698076, "y" : 0.8966026}, {"x" : 0.08054535, "y" : 0.8966026}], "score" : 0.6923094}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x814c1aea6d67a6a39fea1a341ef2ef8dc1253af0", "tool" : "honeybadger", "start" : 1565844514.3102622, "end" : 1565844574.1471057, "duration" : 59.836843490600586, "analysis" : [{"errors" : [], "file" : "/unique_chucks/44/0x814c1aea6d67a6a39fea1a341ef2ef8dc1253af0.sol", "name" : "MegaXToken"}, {"errors" : [], "file" : "/unique_chucks/44/0x814c1aea6d67a6a39fea1a341ef2ef8dc1253af0.sol", "name" : "Owned"}, {"errors" : [], "file" : "/unique_chucks/44/0x814c1aea6d67a6a39fea1a341ef2ef8dc1253af0.sol", "name" : "SafeMath"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"vue-filter.js": {"type": "string"}, "vue-filter.min.js": {"type": "string"}}, "required": ["vue-filter.js", "vue-filter.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vue-filter.js" : "sha256-DeTs/AYgQSojxO70xUQ38KVH3fr25vBxytLmDZ5kGR4=", "vue-filter.min.js" : "sha256-b5gcoIWlMXajyiJgncFrJ49cbnLnC0gZlwDqmDgAj2A="} | json_instruct | {"type": "object", "properties": {"vue-filter.js": {"type": "string"}, "vue-filter.min.js": {"type": "string"}}, "required": ["vue-filter.js", "vue-filter.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"strokes": {"type": "array", "items": {"type": "string"}}, "medians": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["strokes", "medians"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"strokes" : ["M 734 450 Q 785 459 939 443 Q 964 439 970 449 Q 977 462 965 475 Q 895 538 824 518 Q 778 509 734 501 L 692 495 Q 592 486 528 476 L 487 471 Q 402 465 345 457 L 294 452 Q 290 452 285 451 Q 209 439 93 438 Q 80 438 78 426 Q 77 413 96 398 Q 114 385 146 373 Q 158 369 176 377 Q 203 386 291 400 L 341 410 Q 405 423 483 430 L 528 434 Q 651 446 692 447 L 734 450 Z", "M 345 457 Q 349 535 348 634 Q 351 655 352 666 Q 358 687 336 696 Q 285 718 271 715 Q 250 711 268 688 Q 301 634 294 452 L 291 400 Q 272 226 138 92 Q 125 79 121 72 Q 120 65 132 66 Q 175 70 245 153 Q 339 270 340 407 Q 340 408 341 410 L 345 457 Z", "M 528 476 Q 538 653 540 654 Q 547 676 527 688 Q 511 698 494 708 Q 482 712 473 707 Q 464 701 468 686 Q 481 650 487 610 Q 490 537 487 471 L 483 430 Q 476 370 463 294 Q 450 242 483 202 Q 493 192 503 202 Q 510 212 516 233 Q 531 273 528 312 Q 527 349 528 434 L 528 476 Z", "M 668 88 Q 659 45 684 -11 Q 691 -27 699 -31 Q 705 -38 712 -30 Q 739 -8 737 50 Q 736 95 734 450 L 734 501 Q 734 664 751 731 Q 758 746 756 759 Q 749 768 695 801 Q 671 817 652 801 Q 646 797 653 781 Q 687 733 688 666 Q 691 498 692 495 L 692 447 Q 691 347 691 236 Q 687 160 668 88 Z"], "medians" : [[[91, 425], [114, 414], [158, 406], [444, 448], [859, 487], [902, 480], [957, 458]], [[273, 701], [314, 669], [317, 656], [320, 451], [313, 370], [301, 312], [260, 214], [223, 157], [162, 93], [129, 73]], [[482, 695], [509, 662], [512, 618], [505, 404], [490, 246], [493, 210]], [[666, 792], [691, 773], [715, 735], [714, 232], [701, 75], [704, -17]]]} | json_instruct | {"type": "object", "properties": {"strokes": {"type": "array", "items": {"type": "string"}}, "medians": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["strokes", "medians"], "$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.