input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["aureooms-es-red-black-tree", "aureooms-js-adjacency-matrix", "aureooms-js-algo", "aureooms-js-algorithms", "aureooms-js-bisect", "aureooms-js-bst", "aureooms-js-cardinality", "aureooms-js-cg", "aureooms-js-collections", "aureooms-js-collections-chainmap", "aureooms-js-collections-counter", "aureooms-js-collections-defaultdict", "aureooms-js-collections-deque", "aureooms-js-collections-dict", "aureooms-js-collections-namedtuple", "aureooms-js-collections-ordereddict", "aureooms-js-convex-hull-2d", "aureooms-js-d-ary-heap", "aureooms-js-data-structures", "aureooms-js-disjoint-set", "aureooms-js-equation", "aureooms-js-fifo", "aureooms-js-fingertree", "aureooms-js-fixed-disjoint-set", "aureooms-js-graph-augment", "aureooms-js-graph-theory-notation", "aureooms-js-graph-traversal", "aureooms-js-hash", "aureooms-js-integer-big-endian", "aureooms-js-lifo", "aureooms-js-measure", "aureooms-js-mergesort", "aureooms-js-merging", "aureooms-js-metaheuristics", "aureooms-js-odd-even-mergesort", "aureooms-js-partition", "aureooms-js-persistent", "aureooms-js-polynomial", "aureooms-js-prime", "aureooms-js-red-black-tree", "aureooms-js-sat", "aureooms-js-selection", "aureooms-js-sll", "aureooms-js-sort"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {".platform-darwin atom-text-editor": {"type": "object", "properties": {"cmd-r": {"type": "string"}, "cmd-alt-down": {"type": "string"}, "cmd-alt-up": {"type": "string"}}, "required": ["cmd-r", "cmd-alt-down", "cmd-alt-up"]}, ".platform-win32 atom-text-editor": {"type": "object", "properties": {"ctrl-r": {"type": "string"}}, "required": ["ctrl-r"]}, ".platform-linux atom-text-editor": {"type": "object", "properties": {"ctrl-r": {"type": "string"}, "ctrl-alt-down": {"type": "string"}, "ctrl-alt-up": {"type": "string"}}, "required": ["ctrl-r", "ctrl-alt-down", "ctrl-alt-up"]}, ".platform-darwin": {"type": "object", "properties": {"cmd-shift-r": {"type": "string"}}, "required": ["cmd-shift-r"]}, ".platform-win32, .platform-linux": {"type": "object", "properties": {"ctrl-shift-r": {"type": "string"}}, "required": ["ctrl-shift-r"]}}, "required": [".platform-darwin atom-text-editor", ".platform-win32 atom-text-editor", ".platform-linux atom-text-editor", ".platform-darwin", ".platform-win32, .platform-linux"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {".platform-darwin atom-text-editor" : {"cmd-r" : "symbols-view:toggle-file-symbols", "cmd-alt-down" : "symbols-view:go-to-declaration", "cmd-alt-up" : "symbols-view:return-from-declaration"}, ".platform-win32 atom-text-editor" : {"ctrl-r" : "symbols-view:toggle-file-symbols"}, ".platform-linux atom-text-editor" : {"ctrl-r" : "symbols-view:toggle-file-symbols", "ctrl-alt-down" : "symbols-view:go-to-declaration", "ctrl-alt-up" : "symbols-view:return-from-declaration"}, ".platform-darwin" : {"cmd-shift-r" : "symbols-view:toggle-project-symbols"}, ".platform-win32, .platform-linux" : {"ctrl-shift-r" : "symbols-view:toggle-project-symbols"}} | json_instruct | {"type": "object", "properties": {".platform-darwin atom-text-editor": {"type": "object", "properties": {"cmd-r": {"type": "string"}, "cmd-alt-down": {"type": "string"}, "cmd-alt-up": {"type": "string"}}, "required": ["cmd-r", "cmd-alt-down", "cmd-alt-up"]}, ".platform-win32 atom-text-editor": {"type": "object", "properties": {"ctrl-r": {"type": "string"}}, "required": ["ctrl-r"]}, ".platform-linux atom-text-editor": {"type": "object", "properties": {"ctrl-r": {"type": "string"}, "ctrl-alt-down": {"type": "string"}, "ctrl-alt-up": {"type": "string"}}, "required": ["ctrl-r", "ctrl-alt-down", "ctrl-alt-up"]}, ".platform-darwin": {"type": "object", "properties": {"cmd-shift-r": {"type": "string"}}, "required": ["cmd-shift-r"]}, ".platform-win32, .platform-linux": {"type": "object", "properties": {"ctrl-shift-r": {"type": "string"}}, "required": ["ctrl-shift-r"]}}, "required": [".platform-darwin atom-text-editor", ".platform-win32 atom-text-editor", ".platform-linux atom-text-editor", ".platform-darwin", ".platform-win32, .platform-linux"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"recommendations": {"type": "array", "items": {"type": "string"}}}, "required": ["recommendations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"recommendations" : ["dbaeumer.vscode-eslint", "pflannery.vscode-versionlens", "vscode-icons-team.vscode-icons"]} | json_instruct | {"type": "object", "properties": {"recommendations": {"type": "array", "items": {"type": "string"}}}, "required": ["recommendations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "ecfabric:block/netherite_bricks"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "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" : 49602, "cartId" : "c32cba37-11a9-4ca0-87c2-0cb83f7d35d4", "preferredProducts" : [1509, 3451, 4567, 1547, 360, 3940, 4884, 3282, 1576, 1051], "productReviews" : [{"productId" : 4446, "reviewText" : "It only works when I'm Niue.", "reviewDate" : "2016-10-16T23:41:16.8373504+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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build-staging": {"type": "string"}, "serve": {"type": "string"}, "start": {"type": "string"}, "start-with-ada": {"type": "string"}, "swizzle": {"type": "string"}, "deploy-staging": {"type": "string"}}, "required": ["build", "build-staging", "serve", "start", "start-with-ada", "swizzle", "deploy-staging"]}, "dependencies": {"type": "object", "properties": {"@docusaurus/core": {"type": "string"}, "@docusaurus/plugin-client-redirects": {"type": "string"}, "@docusaurus/preset-classic": {"type": "string"}, "@libra-opensource/diem-cli": {"type": "string"}, "@libra-opensource/diem-docusaurus-components": {"type": "string"}, "@svgr/webpack": {"type": "string"}, "bootstrap": {"type": "string"}, "classnames": {"type": "string"}, "object-assign-deep": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "valid-url": {"type": "string"}}, "required": ["@docusaurus/core", "@docusaurus/plugin-client-redirects", "@docusaurus/preset-classic", "@libra-opensource/diem-cli", "@libra-opensource/diem-docusaurus-components", "@svgr/webpack", "bootstrap", "classnames", "object-assign-deep", "react", "react-dom", "valid-url"]}, "resolutions": {"type": "object", "properties": {"terser": {"type": "string"}}, "required": ["terser"]}, "browserslist": {"type": "object", "properties": {"production": {"type": "array", "items": {"type": "string"}}, "development": {"type": "array", "items": {"type": "string"}}}, "required": ["production", "development"]}, "devDependencies": {"type": "object", "properties": {"react-axe": {"type": "string"}}, "required": ["react-axe"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "resolutions", "browserslist", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Diem-Documentation", "version" : "0.0.0", "private" : true, "scripts" : {"build" : "NODE_ENV=production docusaurus build", "build-staging" : "SEGMENT=staging docusaurus build", "serve" : "docusaurus serve", "start" : "docusaurus start", "start-with-ada" : "TEST_ADA=1 docusaurus start", "swizzle" : "docusaurus swizzle", "deploy-staging" : "npm run build-staging && npx now"}, "dependencies" : {"@docusaurus/core" : "^2.0.0-alpha.70", "@docusaurus/plugin-client-redirects" : "^2.0.0-alpha.70", "@docusaurus/preset-classic" : "^2.0.0-alpha.70", "@libra-opensource/diem-cli" : "^0.8.1", "@libra-opensource/diem-docusaurus-components" : "0.1.19", "@svgr/webpack" : "^5.4.0", "bootstrap" : "^4.5.3", "classnames" : "^2.2.6", "object-assign-deep" : "^0.4.0", "react" : "^16.8.4", "react-dom" : "^16.8.4", "valid-url" : "^1.0.9"}, "resolutions" : {"terser" : "4.8.0"}, "browserslist" : {"production" : [">0.2%", "not dead", "not op_mini all"], "development" : ["last 1 chrome version", "last 1 firefox version", "last 1 safari version"]}, "devDependencies" : {"react-axe" : "^3.4.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build-staging": {"type": "string"}, "serve": {"type": "string"}, "start": {"type": "string"}, "start-with-ada": {"type": "string"}, "swizzle": {"type": "string"}, "deploy-staging": {"type": "string"}}, "required": ["build", "build-staging", "serve", "start", "start-with-ada", "swizzle", "deploy-staging"]}, "dependencies": {"type": "object", "properties": {"@docusaurus/core": {"type": "string"}, "@docusaurus/plugin-client-redirects": {"type": "string"}, "@docusaurus/preset-classic": {"type": "string"}, "@libra-opensource/diem-cli": {"type": "string"}, "@libra-opensource/diem-docusaurus-components": {"type": "string"}, "@svgr/webpack": {"type": "string"}, "bootstrap": {"type": "string"}, "classnames": {"type": "string"}, "object-assign-deep": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "valid-url": {"type": "string"}}, "required": ["@docusaurus/core", "@docusaurus/plugin-client-redirects", "@docusaurus/preset-classic", "@libra-opensource/diem-cli", "@libra-opensource/diem-docusaurus-components", "@svgr/webpack", "bootstrap", "classnames", "object-assign-deep", "react", "react-dom", "valid-url"]}, "resolutions": {"type": "object", "properties": {"terser": {"type": "string"}}, "required": ["terser"]}, "browserslist": {"type": "object", "properties": {"production": {"type": "array", "items": {"type": "string"}}, "development": {"type": "array", "items": {"type": "string"}}}, "required": ["production", "development"]}, "devDependencies": {"type": "object", "properties": {"react-axe": {"type": "string"}}, "required": ["react-axe"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "resolutions", "browserslist", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "license", "version", "main", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "almond", "license" : ["MIT"], "version" : "0.3.3", "main" : "almond.js", "ignore" : [".jshintrc", "tests", "shrinktest.sh"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "license", "version", "main", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "components": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "items": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "label": {"type": "string"}, "value": {"type": "string"}}, "required": ["_id", "_type", "label", "value"]}}, "legend": {"type": "string"}, "name": {"type": "string"}}, "required": ["_id", "_type", "items", "legend", "name"]}}, "show": {"type": "boolean"}, "url": {"type": "string"}}, "required": ["_id", "_type", "components", "show", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "page.loss-weakness", "_type" : "page.singlequestion", "components" : [{"_id" : "page.loss-weakness--radios.auto_name__12", "_type" : "radios", "items" : [{"_id" : "page.loss-weakness--radios.auto_name__12--radio.auto_value__11", "_type" : "radio", "label" : "Actual loss", "value" : "auto_value__11"}, {"_id" : "page.loss-weakness--radios.auto_name__12--radio.auto_value__12", "_type" : "radio", "label" : "Weakness", "value" : "auto_value__12"}], "legend" : "Did the incident involve an actual loss or weakness?", "name" : "auto_name__12"}], "show" : false, "url" : "loss-weakness"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "components": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "items": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "label": {"type": "string"}, "value": {"type": "string"}}, "required": ["_id", "_type", "label", "value"]}}, "legend": {"type": "string"}, "name": {"type": "string"}}, "required": ["_id", "_type", "items", "legend", "name"]}}, "show": {"type": "boolean"}, "url": {"type": "string"}}, "required": ["_id", "_type", "components", "show", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Make": {"type": "string"}, "Model": {"type": "string"}, "Orientation": {"type": "integer"}, "XResolution": {"type": "integer"}, "YResolution": {"type": "integer"}, "Software": {"type": "string"}, "YCbCrPositioning": {"type": "integer"}, "ExifOffset": {"type": "integer"}, "GPSInfo": {"type": "integer"}, "Compression": {"type": "integer"}, "ThumbnailOffset": {"type": "integer"}, "ThumbnailLength": {"type": "integer"}, "ExposureTime": {"type": "string"}, "FNumber": {"type": "integer"}, "ISO": {"type": "integer"}, "ExifVersion": {"type": "string"}, "DateTimeOriginal": {"type": "string"}, "CreateDate": {"type": "string"}, "ShutterSpeedValue": {"type": "string"}, "ExposureCompensation": {"type": "integer"}, "FlashpixVersion": {"type": "string"}, "ExifImageWidth": {"type": "integer"}, "ExifImageHeight": {"type": "integer"}, "DigitalZoomRatio": {"type": "integer"}, "GPSVersionID": {"type": "string"}, "GPSDOP": {"type": "integer"}, "error": {"type": "string"}}, "required": ["Make", "Model", "Orientation", "XResolution", "YResolution", "Software", "YCbCrPositioning", "ExifOffset", "GPSInfo", "Compression", "ThumbnailOffset", "ThumbnailLength", "ExposureTime", "FNumber", "ISO", "ExifVersion", "DateTimeOriginal", "CreateDate", "ShutterSpeedValue", "ExposureCompensation", "FlashpixVersion", "ExifImageWidth", "ExifImageHeight", "DigitalZoomRatio", "GPSVersionID", "GPSDOP", "error"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Make" : "Nokia", "Model" : "Lumia 925", "Orientation" : 1, "XResolution" : 72, "YResolution" : 72, "Software" : "Windows Phone", "YCbCrPositioning" : 1, "ExifOffset" : 2252, "GPSInfo" : 21862, "Compression" : 6, "ThumbnailOffset" : 24034, "ThumbnailLength" : 18842, "ExposureTime" : "1/2825", "FNumber" : 2, "ISO" : 100, "ExifVersion" : "2.2", "DateTimeOriginal" : "2013:07:01 17:13:35", "CreateDate" : "2013:07:01 17:13:35", "ShutterSpeedValue" : "11.5", "ExposureCompensation" : 0, "FlashpixVersion" : "1", "ExifImageWidth" : 3264, "ExifImageHeight" : 2448, "DigitalZoomRatio" : 1, "GPSVersionID" : "2.2.0.0", "GPSDOP" : 14, "error" : "\u0001\u0002\u0000\u001bC...: Unable to extract Makernote information as it is in an unsupported or unrecognized format."} | json_instruct | {"type": "object", "properties": {"Make": {"type": "string"}, "Model": {"type": "string"}, "Orientation": {"type": "integer"}, "XResolution": {"type": "integer"}, "YResolution": {"type": "integer"}, "Software": {"type": "string"}, "YCbCrPositioning": {"type": "integer"}, "ExifOffset": {"type": "integer"}, "GPSInfo": {"type": "integer"}, "Compression": {"type": "integer"}, "ThumbnailOffset": {"type": "integer"}, "ThumbnailLength": {"type": "integer"}, "ExposureTime": {"type": "string"}, "FNumber": {"type": "integer"}, "ISO": {"type": "integer"}, "ExifVersion": {"type": "string"}, "DateTimeOriginal": {"type": "string"}, "CreateDate": {"type": "string"}, "ShutterSpeedValue": {"type": "string"}, "ExposureCompensation": {"type": "integer"}, "FlashpixVersion": {"type": "string"}, "ExifImageWidth": {"type": "integer"}, "ExifImageHeight": {"type": "integer"}, "DigitalZoomRatio": {"type": "integer"}, "GPSVersionID": {"type": "string"}, "GPSDOP": {"type": "integer"}, "error": {"type": "string"}}, "required": ["Make", "Model", "Orientation", "XResolution", "YResolution", "Software", "YCbCrPositioning", "ExifOffset", "GPSInfo", "Compression", "ThumbnailOffset", "ThumbnailLength", "ExposureTime", "FNumber", "ISO", "ExifVersion", "DateTimeOriginal", "CreateDate", "ShutterSpeedValue", "ExposureCompensation", "FlashpixVersion", "ExifImageWidth", "ExifImageHeight", "DigitalZoomRatio", "GPSVersionID", "GPSDOP", "error"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"subreddit" : "TeenMomOGandTeenMom2", "hour" : "01", "avg" : 62.41095890410959}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "02", "avg" : 48.24193548387097}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "03", "avg" : 81.39344262295081}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "04", "avg" : 57.06666666666667}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "05", "avg" : 148.725}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "06", "avg" : 80.12903225806451}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "07", "avg" : 44.77777777777778}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "08", "avg" : 104.1875}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "09", "avg" : 82.0}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "10", "avg" : 41.473684210526315}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "11", "avg" : 57.46153846153846}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "12", "avg" : 33.09090909090909}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "13", "avg" : 65.3157894736842}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "14", "avg" : 70.05128205128206}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "15", "avg" : 116.05660377358491}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "16", "avg" : 105.46296296296296}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "17", "avg" : 50.74390243902439}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "18", "avg" : 113.03508771929825}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "19", "avg" : 98.10666666666667}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "20", "avg" : 96.93589743589743}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "21", "avg" : 84.609375}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "22", "avg" : 58.01587301587302}, {"subreddit" : "TeenMomOGandTeenMom2", "hour" : "23", "avg" : 98.86486486486487}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x150b0b96933b75ce27af8b92441f8fb683bf9739", "tool" : "manticore", "start" : 1564804337.8732631, "end" : 1564806139.6574914, "duration" : 1801.7842283248901, "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": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"generated_at" : "2017-01-27T09:37:27.215082", "required_by" : ["aprs", "aprsgate"], "requires" : ["pyserial"], "package" : "kiss"} | json_instruct | {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "hallows:block/dusk_mortis_bricks"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"timestamp": {"type": "string"}, "summary": {"type": "object", "properties": {"uniques": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["uniques", "count"]}}, "required": ["timestamp", "summary"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"timestamp" : "2022-06-24T00:37:24.392Z", "summary" : {"uniques" : 17, "count" : 103}} | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "string"}, "summary": {"type": "object", "properties": {"uniques": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["uniques", "count"]}}, "required": ["timestamp", "summary"], "$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" : 3308060010, "parent" : 3308060, "name" : "BANYUDONO", "latitude" : null, "longitude" : null, "postal" : [56582, 56482], "children" : []} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "bar/foo": {"type": "string"}}, "required": ["php", "bar/foo"]}}, "required": ["name", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "recursion", "require" : {"php" : ">= 5.5.9", "bar/foo" : "0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "bar/foo": {"type": "string"}}, "required": ["php", "bar/foo"]}}, "required": ["name", "require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "shop": {"type": "string"}, "website": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:housenumber", "addr:postcode", "addr:street", "name", "opening_hours", "shop", "website", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "id" : "node/3741467267", "properties" : {"addr:city" : "Idstein", "addr:housenumber" : "5", "addr:postcode" : "65510", "addr:street" : "Hohe Stra\u00dfe", "name" : "Hofladen Taunushof Volz", "opening_hours" : "Fr 16:00-18:00; Sa 10:00-12:00", "shop" : "farm", "website" : "http://www.taunushof-volz.de/", "id" : "node/3741467267"}, "geometry" : {"type" : "Point", "coordinates" : [8.2736977, 50.2423614]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "shop": {"type": "string"}, "website": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:housenumber", "addr:postcode", "addr:street", "name", "opening_hours", "shop", "website", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "2051_cam-image_array_.jpg", "user/throttle" : 0.0, "user/angle" : -0.343561589717865, "user/mode" : "user"} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 94980, "cartId" : "a5323fbd-6e65-491a-9f32-853c79fa675e", "preferredProducts" : [4615], "productReviews" : [{"productId" : 1484, "reviewText" : "this panel is awesome.", "reviewDate" : "2016-10-18T23:23:40.0876566+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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {"type": "object", "properties": {"hash": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "transactionIndex": {"type": "integer"}, "confirmations": {"type": "null"}, "from": {"type": "string"}, "gasPrice": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "nonce": {"type": "integer"}, "data": {"type": "string"}, "r": {"type": "string"}, "s": {"type": "string"}, "v": {"type": "integer"}, "creates": {"type": "null"}, "raw": {"type": "string"}, "networkId": {"type": "integer"}, "chainId": {"type": "integer"}}, "required": ["hash", "blockHash", "blockNumber", "transactionIndex", "confirmations", "from", "gasPrice", "gasLimit", "to", "value", "nonce", "data", "r", "s", "v", "creates", "raw", "networkId", "chainId"]}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x7a74ef56cd483b61d7132d44a9f24b72116632334137a71833f18449a042877c", "parentHash" : "0xf805b976f4a52d7b87ee39b9974d3a13188317c45d0bdc2023d0d5d0b700af04", "number" : 88145, "timestamp" : 1439603288, "nonce" : "0xe36d658146f179d8", "difficulty" : 3212903019206, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x15f90"}, "miner" : "0xf927a40C8B7F6E07c5af7FA2155B4864a4112B13", "extraData" : "0x", "transactions" : [{"hash" : "0xd7e9df2158d0e9a9ee58900f6787e6cd6577c81a61ab0f565b5bbb4403615af8", "blockHash" : "0x7a74ef56cd483b61d7132d44a9f24b72116632334137a71833f18449a042877c", "blockNumber" : 88145, "transactionIndex" : 0, "confirmations" : null, "from" : "0xFD2605a2bF58fDbB90db1Da55dF61628B47F9e8c", "gasPrice" : {"_hex" : "0xcf5855283"}, "gasLimit" : {"_hex" : "0x15f90"}, "to" : "0xa50156cF80fa9eC2e16899E4fb7e072300787417", "value" : {"_hex" : "0x0"}, "nonce" : 67, "data" : "0x960edffb000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000", "r" : "0x6136dd8ad2c20a4d54c0e0561333f4cc5b9890564c02318594ea68833b23ce0d", "s" : "0x4987505d1b82357cee38089499d5485588b8a78fa31416f7cdde1aad9d92651f", "v" : 27, "creates" : null, "raw" : "0xf8ca43850cf585528383015f9094a50156cf80fa9ec2e16899e4fb7e07230078741780b864960edffb0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000001ba06136dd8ad2c20a4d54c0e0561333f4cc5b9890564c02318594ea68833b23ce0da04987505d1b82357cee38089499d5485588b8a78fa31416f7cdde1aad9d92651f", "networkId" : 0, "chainId" : 0}]} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {"type": "object", "properties": {"hash": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "transactionIndex": {"type": "integer"}, "confirmations": {"type": "null"}, "from": {"type": "string"}, "gasPrice": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "nonce": {"type": "integer"}, "data": {"type": "string"}, "r": {"type": "string"}, "s": {"type": "string"}, "v": {"type": "integer"}, "creates": {"type": "null"}, "raw": {"type": "string"}, "networkId": {"type": "integer"}, "chainId": {"type": "integer"}}, "required": ["hash", "blockHash", "blockNumber", "transactionIndex", "confirmations", "from", "gasPrice", "gasLimit", "to", "value", "nonce", "data", "r", "s", "v", "creates", "raw", "networkId", "chainId"]}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "connectsWith", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "title" : "Roman amphitheater at Calleva Atrebatum", "id" : "825677263", "bbox" : [-1.07592, 51.3587939, -1.07592, 51.3587939], "description" : "The Roman amphitheater at Calleva Atrebatum began as a timber structure ca. A.D. 55-75. Its remains lie north of the east gate of the third century A.D. town wall and the site was first identified by William Stukeley in 1724. The amphitheater measures approximately 90 by 75 meters.", "connectsWith" : ["79368"], "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.07592, 51.3587939]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [-1.07592, 51.3587939]}, "id" : "location-of-roman-amphitheater", "type" : "Feature", "properties" : {"description" : "Representative location based on OpenStreetMap.", "location_precision" : "precise", "title" : "OSM location of Roman amphitheater", "link" : "http://pleiades.stoa.org/places/825677263/location-of-roman-amphitheater"}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "connectsWith", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "facts": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "type": {"type": "string"}, "icon": {"type": "string"}, "value": {"type": "integer"}}, "required": ["text", "type", "icon", "value"]}}, "description": {"type": "string"}, "icon": {"type": "string"}, "flags": {"type": "array", "items": {}}, "id": {"type": "integer"}, "chat_link": {"type": "string"}}, "required": ["name", "facts", "description", "icon", "flags", "id", "chat_link"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Charge", "facts" : [{"text" : "Range", "type" : "Range", "icon" : "https://render.guildwars2.com/file/0AAB34BEB1C9F4A25EC612DDBEACF3E20B2810FA/156666.png", "value" : 1000}, {"text" : "Recharge", "type" : "Recharge", "icon" : "https://render.guildwars2.com/file/D767B963D120F077C3B163A05DC05A7317D7DB70/156651.png", "value" : 20}], "description" : "While Empowered, the minotaur charges through its foes.", "icon" : "https://render.guildwars2.com/file/0413A02F7A8009795B622EBC24ACF2C8E2164E4A/1896069.png", "flags" : [], "id" : 47205, "chat_link" : "[&BmW4AAA=]"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "facts": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "type": {"type": "string"}, "icon": {"type": "string"}, "value": {"type": "integer"}}, "required": ["text", "type", "icon", "value"]}}, "description": {"type": "string"}, "icon": {"type": "string"}, "flags": {"type": "array", "items": {}}, "id": {"type": "integer"}, "chat_link": {"type": "string"}}, "required": ["name", "facts", "description", "icon", "flags", "id", "chat_link"], "$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"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-material": {"type": "string"}, "angular-resource": {"type": "string"}, "angular-ui-router": {"type": "string"}}, "required": ["angular", "angular-material", "angular-resource", "angular-ui-router"]}, "devDependencies": {"type": "object", "properties": {"jasmine": {"type": "string"}, "angular-mocks": {"type": "string"}}, "required": ["jasmine", "angular-mocks"]}}, "required": ["name", "version", "private", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "angular-demo", "version" : "0.0.0", "private" : false, "dependencies" : {"angular" : "~1.3.13", "angular-material" : "~0.7.0", "angular-resource" : "~1.3.13", "angular-ui-router" : "~0.2.13"}, "devDependencies" : {"jasmine" : "~2.1.3", "angular-mocks" : "~1.3.13"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-material": {"type": "string"}, "angular-resource": {"type": "string"}, "angular-ui-router": {"type": "string"}}, "required": ["angular", "angular-material", "angular-resource", "angular-ui-router"]}, "devDependencies": {"type": "object", "properties": {"jasmine": {"type": "string"}, "angular-mocks": {"type": "string"}}, "required": ["jasmine", "angular-mocks"]}}, "required": ["name", "version", "private", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : [629.05, 217.14, 1, 639.088, 259.96, 1, 603.017, 257.673, 1, 596.203, 308.307, 1, 585.703, 356.905, 1, 673.147, 266.746, 1, 685.252, 318.296, 1, 680.631, 366.127, 1, 613.298, 366.737, 1, 607.367, 447.393, 1, 611.727, 510.856, 1, 652.466, 367.651, 1, 672.218, 441.478, 1, 683.882, 519.275, 1, 627.218, 213.559, 1, 640.781, 214.518, 1, 625.735, 217.184, 1, 657.477, 221.385, 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"092_091_change_additional_label_value": {"type": "array", "items": {"type": "number"}}}, "required": ["092_091_change_additional_label_value"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"092_091_change_additional_label_value" : [0.9118571428571428, 0.7746190476190477, 0.9629186602870814, 0.7216981132075474, 0.8487192982456141, 0.866025641025641, 0.99, 0.7474842767295599, 0.9052287581699348, 0.8118189618189617, 0.9443956043956045, 0.8542857142857143, 0.8550233100233099, 0.9516666666666667, 0.797463429816371, 0.8427404295051355, 0.8566666666666667, 0.8786152814321828, 0.6425, 0.9203703703703703, 0.9102678571428571, 0.6732026143790849, 0.9444444444444444, 0.8848909657320873]} | json_instruct | {"type": "object", "properties": {"092_091_change_additional_label_value": {"type": "array", "items": {"type": "number"}}}, "required": ["092_091_change_additional_label_value"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"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" : 30024, "cartId" : "a89e6426-d175-4697-b9f8-4497b7afea38", "preferredProducts" : [1858, 2282], "productReviews" : [{"productId" : 467, "reviewText" : "My penguin loves to play with it.", "reviewDate" : "2017-01-14T07:59:30.8007898+02:00"}, {"productId" : 4960, "reviewText" : "this CFA Franc BCEAO is brown.", "reviewDate" : "2020-03-31T02:00:07.9907595+03:00"}, {"productId" : 446, "reviewText" : "This Accountability works certainly well. It excitedly improves my football by a lot.", "reviewDate" : "2016-07-24T02:06:25.9173415+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"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" : "Concavity of reweighted Kikuchi approximation.", "fields" : ["partition function", "graph", "polytope", "product distribution", "combinatorics"], "abstract" : "We analyze a reweighted version of the Kikuchi approximation for estimating the log partition function of a product distribution defined over a region graph. We establish sufficient conditions for the concavity of our reweighted objective function in terms of weight assignments in the Kikuchi expansion, and show that a reweighted version of the sum product algorithm applied to the Kikuchi region graph will produce global optima of the Kikuchi approximation whenever the algorithm converges. When the region graph has two layers, corresponding to a Bethe approximation, we show that our sufficient conditions for concavity are also necessary. Finally, we provide an explicit characterization of the polytope of concavity in terms of the cycle structure of the region graph. We conclude with simulations that demonstrate the advantages of the reweighted Kikuchi approach.", "citation" : "Not cited", "year" : "2014", "departments" : ["University of Pennsylvania", "University of California, Berkeley"], "conf" : "nips", "authors" : ["Po-Ling Loh.....http://dblp.org/pers/hd/l/Loh:Po=Ling", "Andre Wibisono.....http://dblp.org/pers/hd/w/Wibisono:Andre"], "pages" : 9} | 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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"subreddit" : "PuzzleAndDragons", "hour" : "01", "avg" : 10.887755102040817}, {"subreddit" : "PuzzleAndDragons", "hour" : "02", "avg" : 15.020408163265307}, {"subreddit" : "PuzzleAndDragons", "hour" : "03", "avg" : 15.894736842105264}, {"subreddit" : "PuzzleAndDragons", "hour" : "04", "avg" : 14.988235294117647}, {"subreddit" : "PuzzleAndDragons", "hour" : "05", "avg" : 14.767123287671232}, {"subreddit" : "PuzzleAndDragons", "hour" : "06", "avg" : 13.243589743589743}, {"subreddit" : "PuzzleAndDragons", "hour" : "07", "avg" : 20.132075471698112}, {"subreddit" : "PuzzleAndDragons", "hour" : "08", "avg" : 9.827586206896552}, {"subreddit" : "PuzzleAndDragons", "hour" : "09", "avg" : 9.040816326530612}, {"subreddit" : "PuzzleAndDragons", "hour" : "10", "avg" : 11.5}, {"subreddit" : "PuzzleAndDragons", "hour" : "11", "avg" : 6.72093023255814}, {"subreddit" : "PuzzleAndDragons", "hour" : "12", "avg" : 25.1}, {"subreddit" : "PuzzleAndDragons", "hour" : "13", "avg" : 16.229166666666668}, {"subreddit" : "PuzzleAndDragons", "hour" : "14", "avg" : 15.452830188679245}, {"subreddit" : "PuzzleAndDragons", "hour" : "15", "avg" : 13.485294117647058}, {"subreddit" : "PuzzleAndDragons", "hour" : "16", "avg" : 11.21311475409836}, {"subreddit" : "PuzzleAndDragons", "hour" : "17", "avg" : 8.864197530864198}, {"subreddit" : "PuzzleAndDragons", "hour" : "18", "avg" : 19.303797468354432}, {"subreddit" : "PuzzleAndDragons", "hour" : "19", "avg" : 11.407894736842104}, {"subreddit" : "PuzzleAndDragons", "hour" : "20", "avg" : 9.729411764705882}, {"subreddit" : "PuzzleAndDragons", "hour" : "21", "avg" : 23.45}, {"subreddit" : "PuzzleAndDragons", "hour" : "22", "avg" : 8.072164948453608}, {"subreddit" : "PuzzleAndDragons", "hour" : "23", "avg" : 6.325}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"code": {"type": "integer"}, "reason": {"type": "string"}, "result": {"type": "object", "properties": {"\u6b63\u5e38\u51fa\u52e4\u4eba\u6570": {"type": "integer"}, "\u8fdf\u5230\u4eba\u6570": {"type": "integer"}, "\u8bf7\u5047\u4eba\u6570": {"type": "integer"}, "\u751f\u75c5\u4eba\u6570": {"type": "integer"}}, "required": ["\u6b63\u5e38\u51fa\u52e4\u4eba\u6570", "\u8fdf\u5230\u4eba\u6570", "\u8bf7\u5047\u4eba\u6570", "\u751f\u75c5\u4eba\u6570"]}, "tag": {"type": "integer"}}, "required": ["code", "reason", "result", "tag"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 3, "reason" : "", "result" : {"\u6b63\u5e38\u51fa\u52e4\u4eba\u6570" : 1214, "\u8fdf\u5230\u4eba\u6570" : 30, "\u8bf7\u5047\u4eba\u6570" : 15, "\u751f\u75c5\u4eba\u6570" : 7}, "tag" : 1} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "reason": {"type": "string"}, "result": {"type": "object", "properties": {"\u6b63\u5e38\u51fa\u52e4\u4eba\u6570": {"type": "integer"}, "\u8fdf\u5230\u4eba\u6570": {"type": "integer"}, "\u8bf7\u5047\u4eba\u6570": {"type": "integer"}, "\u751f\u75c5\u4eba\u6570": {"type": "integer"}}, "required": ["\u6b63\u5e38\u51fa\u52e4\u4eba\u6570", "\u8fdf\u5230\u4eba\u6570", "\u8bf7\u5047\u4eba\u6570", "\u751f\u75c5\u4eba\u6570"]}, "tag": {"type": "integer"}}, "required": ["code", "reason", "result", "tag"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"shapes": {"type": "array", "items": {"type": "object", "properties": {"line_color": {"type": "null"}, "shape_type": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "flags": {"type": "object", "properties": {}, "required": []}, "fill_color": {"type": "null"}, "label": {"type": "string"}}, "required": ["line_color", "shape_type", "points", "flags", "fill_color", "label"]}}, "imageWidth": {"type": "integer"}, "imageHeight": {"type": "integer"}}, "required": ["shapes", "imageWidth", "imageHeight"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"shapes" : [{"line_color" : null, "shape_type" : "polygon", "points" : [[622, 72], [630, 75], [638, 72], [637, 65], [637, 60], [634, 53], [632, 54], [628, 49], [624, 51], [617, 50], [615, 58], [619, 60], [616, 64], [617, 68]], "flags" : {}, "fill_color" : null, "label" : "staphylococcus_aureus"}, {"line_color" : null, "shape_type" : "polygon", "points" : [[495, 414], [498, 408], [496, 405], [499, 403], [498, 399], [497, 392], [494, 393], [489, 390], [483, 391], [480, 396], [477, 399], [480, 402], [480, 408], [482, 412], [486, 413], [487, 416], [491, 415]], "flags" : {}, "fill_color" : null, "label" : "staphylococcus_aureus"}], "imageWidth" : 640, "imageHeight" : 512} | json_instruct | {"type": "object", "properties": {"shapes": {"type": "array", "items": {"type": "object", "properties": {"line_color": {"type": "null"}, "shape_type": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "flags": {"type": "object", "properties": {}, "required": []}, "fill_color": {"type": "null"}, "label": {"type": "string"}}, "required": ["line_color", "shape_type", "points", "flags", "fill_color", "label"]}}, "imageWidth": {"type": "integer"}, "imageHeight": {"type": "integer"}}, "required": ["shapes", "imageWidth", "imageHeight"], "$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"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "Chave do dormit\u00f3rio 105", "ShortName" : "Chave 105", "Description" : "Uma chave de dormit\u00f3rio com o n\u00famero 105 gravado."} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"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", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Max-Planck-Realschule i.Schulzentrum Ost St\u00e4dtische Realschule - Sekundarstufe I -", "id" : "NRW-185218", "address" : "Max-Planck-Str. 10, 42277 Wuppertal", "school_type" : "Realschule", "fax" : "0202 5638054", "phone" : "0202 5635132", "website" : " http://www.mpr-wuppertal.de", "email" : " 185218@schule.nrw.de ", "state" : "NRW", "programs" : {"programs" : []}, "full_time_school" : false, "lon" : 7.221016, "lat" : 51.277305} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"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", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["_id", "_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "page.check-your-answers", "_type" : "page.summary", "url" : "check-your-answers"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["_id", "_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"an7.68:11.1": {"type": "string"}, "an7.68:12.1": {"type": "string"}, "an7.68:12.2": {"type": "string"}, "an7.68:13.1": {"type": "string"}, "an7.68:15.1": {"type": "string"}}, "required": ["an7.68:11.1", "an7.68:12.1", "an7.68:12.2", "an7.68:13.1", "an7.68:15.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"an7.68:11.1" : "su\u1e47anti \u2192 su\u1e47ant\u0101 (mr)", "an7.68:12.1" : "dh\u0101renti \u2192 dh\u0101rent\u0101 (mr)", "an7.68:12.2" : "dh\u0101t\u0101na\u1e41 \u2192 dhat\u0101na\u1e41 (bj, sya-all, km, pts1ed)", "an7.68:13.1" : "upaparikkhanti \u2192 upaparikkhant\u0101 (mr)", "an7.68:15.1" : "bhikkhuno \u2192 bhikkhun\u0101 (cck, sya1ed)"} | json_instruct | {"type": "object", "properties": {"an7.68:11.1": {"type": "string"}, "an7.68:12.1": {"type": "string"}, "an7.68:12.2": {"type": "string"}, "an7.68:13.1": {"type": "string"}, "an7.68:15.1": {"type": "string"}}, "required": ["an7.68:11.1", "an7.68:12.1", "an7.68:12.2", "an7.68:13.1", "an7.68:15.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "User", "description" : "User typing rule"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1915, 5], [1921, 6], [1923, 7], [1930, 5], [1936, 5], [1950, 7]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"MedicalTranscriptionJobName": {"type": "string"}, "LanguageCode": {"type": "string"}, "Specialty": {"type": "string"}, "Type": {"type": "string"}, "OutputBucketName": {"type": "string"}, "Media": {"type": "object", "properties": {"MediaFileUri": {"type": "string"}}, "required": ["MediaFileUri"]}}, "required": ["MedicalTranscriptionJobName", "LanguageCode", "Specialty", "Type", "OutputBucketName", "Media"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"MedicalTranscriptionJobName" : "aws-cookbook-806", "LanguageCode" : "en-US", "Specialty" : "PRIMARYCARE", "Type" : "DICTATION", "OutputBucketName" : "awscookbook806-RANDOM_STRING", "Media" : {"MediaFileUri" : "s3://awscookbook806-RANDOM_STRING/dictation.mp3"}} | json_instruct | {"type": "object", "properties": {"MedicalTranscriptionJobName": {"type": "string"}, "LanguageCode": {"type": "string"}, "Specialty": {"type": "string"}, "Type": {"type": "string"}, "OutputBucketName": {"type": "string"}, "Media": {"type": "object", "properties": {"MediaFileUri": {"type": "string"}}, "required": ["MediaFileUri"]}}, "required": ["MedicalTranscriptionJobName", "LanguageCode", "Specialty", "Type", "OutputBucketName", "Media"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"class_name": {"type": "string"}, "extrinsic": {"type": "array", "items": {"type": "number"}}, "intrinsic": {"type": "object", "properties": {"height": {"type": "integer"}, "intrinsic_matrix": {"type": "array", "items": {"type": "number"}}, "width": {"type": "integer"}}, "required": ["height", "intrinsic_matrix", "width"]}, "version_major": {"type": "integer"}, "version_minor": {"type": "integer"}}, "required": ["class_name", "extrinsic", "intrinsic", "version_major", "version_minor"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"class_name" : "PinholeCameraParameters", "extrinsic" : [-0.7386473819078865, -0.5647894338243006, 0.3679849733902881, 0.0, 0.5742183574267958, -0.24124190398541856, 0.7823526198304462, 0.0, -0.3530910975862993, 0.7891864413444494, 0.502505161767903, 0.0, 0.2874086948431665, -1.2956052465256143, 0.7109729286388642, 1.0], "intrinsic" : {"height" : 1047, "intrinsic_matrix" : [906.7285977623073, 0.0, 0.0, 0.0, 906.7285977623073, 0.0, 959.5, 523.0, 1.0], "width" : 1920}, "version_major" : 1, "version_minor" : 0} | json_instruct | {"type": "object", "properties": {"class_name": {"type": "string"}, "extrinsic": {"type": "array", "items": {"type": "number"}}, "intrinsic": {"type": "object", "properties": {"height": {"type": "integer"}, "intrinsic_matrix": {"type": "array", "items": {"type": "number"}}, "width": {"type": "integer"}}, "required": ["height", "intrinsic_matrix", "width"]}, "version_major": {"type": "integer"}, "version_minor": {"type": "integer"}}, "required": ["class_name", "extrinsic", "intrinsic", "version_major", "version_minor"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "generate": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev", "build", "generate", "test"]}, "jest": {"type": "object", "properties": {"preset": {"type": "string"}, "globals": {"type": "object", "properties": {"ts-jest": {"type": "object", "properties": {"diagnostics": {"type": "object", "properties": {"warnOnly": {"type": "boolean"}}, "required": ["warnOnly"]}}, "required": ["diagnostics"]}}, "required": ["ts-jest"]}, "testEnvironment": {"type": "string"}}, "required": ["preset", "globals", "testEnvironment"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@prisma/client": {"type": "string"}, "apollo-server": {"type": "string"}, "graphql": {"type": "string"}, "nexus": {"type": "string"}, "nexus-plugin-prisma": {"type": "string"}}, "required": ["@prisma/client", "apollo-server", "graphql", "nexus", "nexus-plugin-prisma"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "@types/sqlite3": {"type": "string"}, "get-port": {"type": "string"}, "graphql-request": {"type": "string"}, "jest": {"type": "string"}, "prisma": {"type": "string"}, "sqlite3": {"type": "string"}, "ts-jest": {"type": "string"}, "ts-node-dev": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "@types/sqlite3", "get-port", "graphql-request", "jest", "prisma", "sqlite3", "ts-jest", "ts-node-dev", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "jest", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "server", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"dev" : "ts-node-dev --transpile-only --no-notify api/index.ts", "build" : "tsc", "generate" : "ts-node --transpile-only api/schema", "test" : "npm run generate && jest"}, "jest" : {"preset" : "ts-jest", "globals" : {"ts-jest" : {"diagnostics" : {"warnOnly" : true}}}, "testEnvironment" : "node"}, "keywords" : [], "author" : "", "license" : "ISC", "dependencies" : {"@prisma/client" : "^2.29.0", "apollo-server" : "^3.1.2", "graphql" : "^15.5.1", "nexus" : "^1.1.0", "nexus-plugin-prisma" : "^0.35.0"}, "devDependencies" : {"@types/jest" : "^27.0.1", "@types/sqlite3" : "^3.1.7", "get-port" : "^5.1.1", "graphql-request" : "^3.5.0", "jest" : "^27.0.6", "prisma" : "^2.29.0", "sqlite3" : "^5.0.2", "ts-jest" : "^27.0.4", "ts-node-dev" : "^1.1.8", "typescript" : "^4.3.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "generate": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev", "build", "generate", "test"]}, "jest": {"type": "object", "properties": {"preset": {"type": "string"}, "globals": {"type": "object", "properties": {"ts-jest": {"type": "object", "properties": {"diagnostics": {"type": "object", "properties": {"warnOnly": {"type": "boolean"}}, "required": ["warnOnly"]}}, "required": ["diagnostics"]}}, "required": ["ts-jest"]}, "testEnvironment": {"type": "string"}}, "required": ["preset", "globals", "testEnvironment"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@prisma/client": {"type": "string"}, "apollo-server": {"type": "string"}, "graphql": {"type": "string"}, "nexus": {"type": "string"}, "nexus-plugin-prisma": {"type": "string"}}, "required": ["@prisma/client", "apollo-server", "graphql", "nexus", "nexus-plugin-prisma"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "@types/sqlite3": {"type": "string"}, "get-port": {"type": "string"}, "graphql-request": {"type": "string"}, "jest": {"type": "string"}, "prisma": {"type": "string"}, "sqlite3": {"type": "string"}, "ts-jest": {"type": "string"}, "ts-node-dev": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "@types/sqlite3", "get-port", "graphql-request", "jest", "prisma", "sqlite3", "ts-jest", "ts-node-dev", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "jest", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"avatarUrl": {"type": "string"}, "aboutUrl": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "site": {"type": "string"}, "description": {"type": "string"}, "disqus": {"type": "string"}}, "required": ["avatarUrl", "aboutUrl", "username", "password", "site", "description", "disqus"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"avatarUrl" : "http://7vzqh7.com1.z0.glb.clouddn.com/avatar.jpg", "aboutUrl" : "/page/about", "username" : "root", "password" : "123456", "site" : "\u3042\u307e\u307f\u3084 \u3086\u3046\u3053", "description" : "Amamiya Yuuko's ebullient future", "disqus" : "yuuko"} | json_instruct | {"type": "object", "properties": {"avatarUrl": {"type": "string"}, "aboutUrl": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "site": {"type": "string"}, "description": {"type": "string"}, "disqus": {"type": "string"}}, "required": ["avatarUrl", "aboutUrl", "username", "password", "site", "description", "disqus"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Bacon.js": {"type": "string"}, "Bacon.min.js": {"type": "string"}}, "required": ["Bacon.js", "Bacon.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Bacon.js" : "sha512-z4RQH30Pl6oNmj6ospr5UghFtqP4fvZYyLJtJKiyubEG8V2d+96tpSf97nFN2+On7GaH9THuwhttnlAu/Vp0wQ==", "Bacon.min.js" : "sha512-MxZT1C9jG22RO6amZ8/hrYJd5ESiZi3Z9QV2qCgZGB1wYrdPf0r96huR/CG85/nGFX0tCIl9YPM9BlmieVF6Eg=="} | json_instruct | {"type": "object", "properties": {"Bacon.js": {"type": "string"}, "Bacon.min.js": {"type": "string"}}, "required": ["Bacon.js", "Bacon.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"tron": {"type": "string"}}, "required": ["tron"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "facebook": {"type": "string"}, "telegram": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "facebook", "telegram"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "tronweeklyjournal", "symbol" : "twj", "name" : "TronWeeklyJournal", "platforms" : {"tron" : "TNq5PbSssK5XfmSYU4Aox4XkgTdpDoEDiY"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "Tron Weekly Journal (TWJ) aims to bring all Tron world news under one unified online journal. All latest news, events, ICOs, business ideations, interviews of ideators and entrepreneurs, and every activity held by Tron around the world will be available at the Tron Weekly Journal."}, "country_origin" : "", "genesis_date" : null, "contract_address" : "TNq5PbSssK5XfmSYU4Aox4XkgTdpDoEDiY", "url" : "https://www.tronweekly.com/", "explorers" : ["https://tronscan.org/#/token20/TNq5PbSssK5XfmSYU4Aox4XkgTdpDoEDiY", "https://www.trxplorer.io/token/TNq5PbSssK5XfmSYU4Aox4XkgTdpDoEDiY"], "twitter" : "TronWeekly", "facebook" : "Tronweekly", "telegram" : "Tronjournal"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"tron": {"type": "string"}}, "required": ["tron"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "facebook": {"type": "string"}, "telegram": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "facebook", "telegram"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"311010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "533041": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "436010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "999920": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "352010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "399021": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "372012": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "435081": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "434171": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["311010", "count", "533041", "436010", "N.A.//", "999920", "352010", "399021", "372012", "435081", "434171"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"311010" : {"count" : 3}, "count" : 48, "533041" : {"count" : 1}, "436010" : {"count" : 7}, "N.A.//" : {"count" : 23}, "999920" : {"count" : 1}, "352010" : {"count" : 6}, "399021" : {"count" : 2}, "372012" : {"count" : 3}, "435081" : {"count" : 1}, "434171" : {"count" : 1}} | json_instruct | {"type": "object", "properties": {"311010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "533041": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "436010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "999920": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "352010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "399021": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "372012": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "435081": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "434171": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["311010", "count", "533041", "436010", "N.A.//", "999920", "352010", "399021", "372012", "435081", "434171"], "$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"}}, "required": ["name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Professor Lockhart"}, {"name" : "Professor Grubbly-Plank"}, {"name" : "Professor Lupin"}, {"name" : "Professor Slughorn"}, {"name" : "Professor Snape"}, {"name" : "Professor Trelawney"}, {"name" : "Professor Sprout"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "import React from 'react';\nimport createSvgIcon from './utils/createSvgIcon';\nexport default createSvgIcon(React.createElement(\"path\", {\n d: \"M10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z\"\n}), 'Brightness2');", "map" : null, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Inoyonan, Bula, Camarines Sur, Bicol Region (Region V), PH", "locale" : "ph.bicol-region-region-v.camarines-sur.bula.inoyonan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "2", "region_reference" : "5", "region_name" : "Bicol Region (Region V)", "province_id" : "20", "province_reference" : "20", "province_name" : "Camarines Sur", "city_id" : "242", "city_reference" : "352", "city_name" : "Bula", "barangay_id" : "6359", "barangay_reference" : "8163", "barangay_name" : "Inoyonan"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[123.24646, 13.42143], [123.258301, 13.41034], [123.254807, 13.40864], [123.242737, 13.4086], [123.234039, 13.40012], [123.227089, 13.40238], [123.221718, 13.41526], [123.237221, 13.41918], [123.24646, 13.42143]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "directory": {"type": "string"}}, "required": ["type", "url", "directory"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "organization": {"type": "boolean"}}, "required": ["name", "url", "organization"]}, "type": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "license": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "bundle": {"type": "string"}}, "required": ["test", "bundle"]}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "files": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"@basemaps/geo": {"type": "string"}, "@linzjs/geojson": {"type": "string"}}, "required": ["@basemaps/geo", "@linzjs/geojson"]}, "bundle": {"type": "object", "properties": {"entry": {"type": "string"}, "outfile": {"type": "string"}, "platform": {"type": "string"}}, "required": ["entry", "outfile", "platform"]}}, "required": ["name", "version", "repository", "author", "type", "engines", "license", "main", "types", "scripts", "publishConfig", "files", "dependencies", "bundle"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@basemaps/attribution", "version" : "6.10.0", "repository" : {"type" : "git", "url" : "https://github.com/linz/basemaps.git", "directory" : "packages/attribution"}, "author" : {"name" : "Land Information New Zealand", "url" : "https://linz.govt.nz", "organization" : true}, "type" : "module", "engines" : {"node" : "^12.20.0 || ^14.13.1 || >=16.0.0"}, "license" : "MIT", "main" : "./build/index.js", "types" : "./build/index.d.ts", "scripts" : {"test" : "ospec --globs 'build/**/*.test.js'", "bundle" : "../../scripts/bundle.js package.json"}, "publishConfig" : {"access" : "public"}, "files" : ["dist/", "build/"], "dependencies" : {"@basemaps/geo" : "^6.10.0", "@linzjs/geojson" : "^6.10.0"}, "bundle" : {"entry" : "src/attribution.index.ts", "outfile" : "dist/attribution.js", "platform" : "browser"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "directory": {"type": "string"}}, "required": ["type", "url", "directory"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "organization": {"type": "boolean"}}, "required": ["name", "url", "organization"]}, "type": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "license": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "bundle": {"type": "string"}}, "required": ["test", "bundle"]}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "files": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"@basemaps/geo": {"type": "string"}, "@linzjs/geojson": {"type": "string"}}, "required": ["@basemaps/geo", "@linzjs/geojson"]}, "bundle": {"type": "object", "properties": {"entry": {"type": "string"}, "outfile": {"type": "string"}, "platform": {"type": "string"}}, "required": ["entry", "outfile", "platform"]}}, "required": ["name", "version", "repository", "author", "type", "engines", "license", "main", "types", "scripts", "publishConfig", "files", "dependencies", "bundle"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : "Bird", "normalizedVertices" : [{"x" : 0.10017095, "y" : 0.03009619}, {"x" : 0.84712315, "y" : 0.03009619}, {"x" : 0.84712315, "y" : 0.26072735}, {"x" : 0.10017095, "y" : 0.26072735}], "score" : 0.67535305}] | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"station" : [{"pref_cd" : 42, "line_cd" : 99912, "line_name" : "\u5cf6\u539f\u9244\u9053\u7dda", "station_cd" : 9991208, "station_g_cd" : 9991208, "station_name" : "\u8aeb\u65e9\u6771\u9ad8\u6821", "lon" : 130.149098, "lat" : 32.823084}]} | json_instruct | {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"authorize_url_timeout": {"type": "string"}, "missing_configuration": {"type": "string"}, "no_agreements": {"type": "string"}, "no_url_available": {"type": "string"}}, "required": ["authorize_url_timeout", "missing_configuration", "no_agreements", "no_url_available"]}, "step": {"type": "object", "properties": {"agreement": {"type": "object", "properties": {"data": {"type": "object", "properties": {"agreement": {"type": "string"}}, "required": ["agreement"]}}, "required": ["data"]}}, "required": ["agreement"]}}, "required": ["abort", "step"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"config" : {"abort" : {"authorize_url_timeout" : "Przekroczono limit czasu generowania URL autoryzacji.", "missing_configuration" : "Komponent nie jest skonfigurowany. Post\u0119puj zgodnie z dokumentacj\u0105.", "no_agreements" : "To konto nie posiada wy\u015bwietlaczy Toon.", "no_url_available" : "Brak dost\u0119pnego adresu URL. Aby uzyska\u0107 informacje na temat tego b\u0142\u0119du, [sprawd\u017a sekcj\u0119 pomocy] ({docs_url})"}, "step" : {"agreement" : {"data" : {"agreement" : "Umowa"}}}}} | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"authorize_url_timeout": {"type": "string"}, "missing_configuration": {"type": "string"}, "no_agreements": {"type": "string"}, "no_url_available": {"type": "string"}}, "required": ["authorize_url_timeout", "missing_configuration", "no_agreements", "no_url_available"]}, "step": {"type": "object", "properties": {"agreement": {"type": "object", "properties": {"data": {"type": "object", "properties": {"agreement": {"type": "string"}}, "required": ["agreement"]}}, "required": ["data"]}}, "required": ["agreement"]}}, "required": ["abort", "step"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 1917, "sex" : "F", "n" : 7, "prop" : 6.23e-06}, {"year" : 1919, "sex" : "F", "n" : 7, "prop" : 5.96e-06}, {"year" : 1922, "sex" : "F", "n" : 8, "prop" : 6.41e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"timestamp" : "2020-12-21T22:45:00Z", "data" : [{"data_type" : "pm10", "value" : "22.70", "max" : "29.00", "min" : "17.00", "sd" : "3.11"}, {"data_type" : "pm2.5", "value" : "20.47", "max" : "23.00", "min" : "14.00", "sd" : "2.30"}, {"data_type" : "pm1", "value" : "13.03", "max" : "15.00", "min" : "9.00", "sd" : "1.38"}, {"data_type" : "pm10", "value" : "25.43", "max" : "29.00", "min" : "21.00", "sd" : "2.62", "sensor" : 2}, {"data_type" : "pm2.5", "value" : "23.53", "max" : "27.00", "min" : "20.00", "sd" : "1.87", "sensor" : 2}, {"data_type" : "pm1", "value" : "16.80", "max" : "19.00", "min" : "14.00", "sd" : "1.21", "sensor" : 2}, {"data_type" : "pm10", "value" : "2352.20", "max" : "2592.00", "min" : "1794.00", "sd" : "198.76", "sensor" : 3}, {"data_type" : "pm2.5", "value" : "718.27", "max" : "810.00", "min" : "546.00", "sd" : "62.26", "sensor" : 3}, {"data_type" : "pm1", "value" : "134.33", "max" : "172.00", "min" : "92.00", "sd" : "22.32", "sensor" : 3}, {"data_type" : "pm10", "value" : "10.27", "max" : "16.00", "min" : "4.00", "sd" : "3.05", "sensor" : 4}, {"data_type" : "pm2.5", "value" : "3.40", "max" : "8.00", "min" : "0.00", "sd" : "3.02", "sensor" : 4}, {"data_type" : "pm1", "value" : "2.07", "max" : "6.00", "min" : "0.00", "sd" : "2.38", "sensor" : 4}, {"data_type" : "pm10", "value" : "1688.92", "max" : "3717.00", "min" : "0.00", "sd" : "1687.81", "sensor" : 5}, {"data_type" : "pm2.5", "value" : "874.43", "max" : "946.00", "min" : "797.00", "sd" : "51.71", "sensor" : 5}, {"data_type" : "pm1", "value" : "139.10", "max" : "172.00", "min" : "106.00", "sd" : "17.42", "sensor" : 5}, {"data_type" : "pm10", "value" : "8.67", "max" : "18.00", "min" : "4.00", "sd" : "3.91", "sensor" : 6}, {"data_type" : "pm2.5", "value" : "2.13", "max" : "6.00", "min" : "0.00", "sd" : "2.03", "sensor" : 6}, {"data_type" : "noise", "value" : "51.79", "max" : "77.07", "min" : "44.00", "sd" : "2.65"}, {"data_type" : "irradiance", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}, {"data_type" : "temperature", "value" : "25.88", "max" : "25.89", "min" : "25.85", "sd" : "0.01"}, {"data_type" : "humidity", "value" : "62.58", "max" : "62.67", "min" : "62.48", "sd" : "0.06"}, {"data_type" : "presure", "value" : "907.46", "max" : "907.48", "min" : "907.43", "sd" : "0.01"}, {"data_type" : "rain", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}]} | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "points": {"type": "string"}, "pointpos": {"type": "number"}, "marker": {"type": "object", "properties": {"size": {"type": "integer"}}, "required": ["size"]}, "jitter": {"type": "integer"}, "x": {"type": "array", "items": {"type": "integer"}}, "side": {"type": "string"}, "line": {"type": "object", "properties": {"color": {"type": "string"}}, "required": ["color"]}, "fillcolor": {"type": "string"}, "opacity": {"type": "number"}, "y0": {"type": "number"}}, "required": ["type", "points", "pointpos", "marker", "jitter", "x", "side", "line", "fillcolor", "opacity", "y0"]}}, "layout": {"type": "object", "properties": {"title": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}, "xaxis": {"type": "object", "properties": {"zeroline": {"type": "boolean"}}, "required": ["zeroline"]}, "yaxis": {"type": "object", "properties": {"dtick": {"type": "number"}, "gridcolor": {"type": "string"}}, "required": ["dtick", "gridcolor"]}}, "required": ["title", "xaxis", "yaxis"]}}, "required": ["data", "layout"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : [{"type" : "violin", "points" : "all", "pointpos" : 1.5, "marker" : {"size" : 12}, "jitter" : 0, "x" : [0, 5, 7, 8], "side" : "negative", "line" : {"color" : "black"}, "fillcolor" : "#d3c78d", "opacity" : 0.6, "y0" : 0.0}], "layout" : {"title" : {"text" : "Violins - negative sided with positive points"}, "xaxis" : {"zeroline" : false}, "yaxis" : {"dtick" : 0.1, "gridcolor" : "black"}}} | json_instruct | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "points": {"type": "string"}, "pointpos": {"type": "number"}, "marker": {"type": "object", "properties": {"size": {"type": "integer"}}, "required": ["size"]}, "jitter": {"type": "integer"}, "x": {"type": "array", "items": {"type": "integer"}}, "side": {"type": "string"}, "line": {"type": "object", "properties": {"color": {"type": "string"}}, "required": ["color"]}, "fillcolor": {"type": "string"}, "opacity": {"type": "number"}, "y0": {"type": "number"}}, "required": ["type", "points", "pointpos", "marker", "jitter", "x", "side", "line", "fillcolor", "opacity", "y0"]}}, "layout": {"type": "object", "properties": {"title": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}, "xaxis": {"type": "object", "properties": {"zeroline": {"type": "boolean"}}, "required": ["zeroline"]}, "yaxis": {"type": "object", "properties": {"dtick": {"type": "number"}, "gridcolor": {"type": "string"}}, "required": ["dtick", "gridcolor"]}}, "required": ["title", "xaxis", "yaxis"]}}, "required": ["data", "layout"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "bonuses": {"type": "array", "items": {"type": "object", "properties": {"bonus": {"type": "string"}, "edge": {"type": "array", "items": {"type": "integer"}}, "problem": {"type": "integer"}}, "required": ["bonus", "edge", "problem"]}}}, "required": ["vertices", "bonuses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vertices" : [[61, 26], [39, 53], [29, 21], [0, 0], [5, 45], [11, 29], [40, 38], [24, 39]], "bonuses" : [{"bonus" : "BREAK_A_LEG", "edge" : [5, 6], "problem" : 63}]} | json_instruct | {"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "bonuses": {"type": "array", "items": {"type": "object", "properties": {"bonus": {"type": "string"}, "edge": {"type": "array", "items": {"type": "integer"}}, "problem": {"type": "integer"}}, "required": ["bonus", "edge", "problem"]}}}, "required": ["vertices", "bonuses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:watch": {"type": "string"}, "test:coverage": {"type": "string"}, "example": {"type": "string"}}, "required": ["test", "test:watch", "test:coverage", "example"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"commander": {"type": "string"}, "prettier": {"type": "string"}, "ramda": {"type": "string"}, "swagger-parser": {"type": "string"}}, "required": ["commander", "prettier", "ramda", "swagger-parser"]}, "devDependencies": {"type": "object", "properties": {"codecov": {"type": "string"}, "jest": {"type": "string"}}, "required": ["codecov", "jest"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "swagger-typegen", "version" : "0.0.1", "description" : "generate source-code types from swagger-specification file", "main" : "index.js", "scripts" : {"test" : "jest", "test:watch" : "jest --watchAll", "test:coverage" : "jest --coverage", "example" : "node cli example/input.json -o example/output.ts"}, "keywords" : [], "author" : "Matthias Margot <matthiasmargot@hotmail.com>", "license" : "MIT", "dependencies" : {"commander" : "^7.2.0", "prettier" : "^1.16.4", "ramda" : "^0.27.1", "swagger-parser" : "^6.0.5"}, "devDependencies" : {"codecov" : "^3.8.2", "jest" : "^27.0.5"}, "repository" : {"type" : "git", "url" : "git+https://github.com/MatthiasMargot/swagger-typegen.git"}, "bugs" : {"url" : "https://github.com/MatthiasMargot/swagger-typegen/issues"}, "homepage" : "https://github.com/MatthiasMargot/swagger-typegen#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:watch": {"type": "string"}, "test:coverage": {"type": "string"}, "example": {"type": "string"}}, "required": ["test", "test:watch", "test:coverage", "example"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"commander": {"type": "string"}, "prettier": {"type": "string"}, "ramda": {"type": "string"}, "swagger-parser": {"type": "string"}}, "required": ["commander", "prettier", "ramda", "swagger-parser"]}, "devDependencies": {"type": "object", "properties": {"codecov": {"type": "string"}, "jest": {"type": "string"}}, "required": ["codecov", "jest"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies", "repository", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1986, 5], [1989, 10], [1990, 13], [1991, 7], [1992, 12], [1993, 9], [1994, 5], [2008, 9]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-changed": {"type": "string"}, "gulp-clean-css": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-uglify": {"type": "string"}, "yarn": {"type": "string"}}, "required": ["browser-sync", "gulp", "gulp-changed", "gulp-clean-css", "gulp-rename", "gulp-sass", "gulp-uglify", "yarn"]}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}}, "required": ["serve"]}}, "required": ["name", "version", "private", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "testing-bem", "version" : "0.1.0", "private" : true, "dependencies" : {"browser-sync" : "^2.18.8", "gulp" : "^3.9.1", "gulp-changed" : "^3.2.0", "gulp-clean-css" : "^3.9.4", "gulp-rename" : "^1.2.3", "gulp-sass" : "^4.0.1", "gulp-uglify" : "^3.0.0", "yarn" : "^1.9.2"}, "scripts" : {"serve" : "browser-sync start --server --files \"src/bundles/css-bundle/*.css\", \"./index.html\" "}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-changed": {"type": "string"}, "gulp-clean-css": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-uglify": {"type": "string"}, "yarn": {"type": "string"}}, "required": ["browser-sync", "gulp", "gulp-changed", "gulp-clean-css", "gulp-rename", "gulp-sass", "gulp-uglify", "yarn"]}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}}, "required": ["serve"]}}, "required": ["name", "version", "private", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"staves": {"type": "array", "items": {"type": "object", "properties": {"lines": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["lines"]}}}, "required": ["staves"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"staves" : [{"lines" : [[[965, 1174], [1289, 1174]]]}]} | json_instruct | {"type": "object", "properties": {"staves": {"type": "array", "items": {"type": "object", "properties": {"lines": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["lines"]}}}, "required": ["staves"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "9f87a7fc711562efae3d7b0646073a34d4c47606"} | 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"}, "description": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/chrome": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "mocha": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["@types/chrome", "ts-loader", "typescript", "webpack", "webpack-cli", "mocha", "node-fetch"]}, "dependencies": {"type": "object", "properties": {"file-saver": {"type": "string"}, "jszip": {"type": "string"}}, "required": ["file-saver", "jszip"]}}, "required": ["name", "version", "description", "directories", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "nhentaidownloader", "version" : "2.1.2", "description" : "A chrome extension to download doujinshi from NHentai ", "directories" : {"test" : "test"}, "scripts" : {"build" : "webpack", "test" : "mocha"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Xwilarg/NHentaiDownloader.git"}, "keywords" : ["chrome-extension", "downloader", "firefox-addon", "nhentai", "hentai", "doujinshi"], "author" : "Xwilarg", "license" : "MIT", "bugs" : {"url" : "https://github.com/Xwilarg/NHentaiDownloader/issues"}, "homepage" : "https://github.com/Xwilarg/NHentaiDownloader#readme", "devDependencies" : {"@types/chrome" : "0.0.154", "ts-loader" : "^9.2.5", "typescript" : "^4.4.2", "webpack" : "^5.51.1", "webpack-cli" : "^4.8.0", "mocha" : "^7.2.0", "node-fetch" : "^2.6.1"}, "dependencies" : {"file-saver" : "^1.3.8", "jszip" : "^3.7.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/chrome": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "mocha": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["@types/chrome", "ts-loader", "typescript", "webpack", "webpack-cli", "mocha", "node-fetch"]}, "dependencies": {"type": "object", "properties": {"file-saver": {"type": "string"}, "jszip": {"type": "string"}}, "required": ["file-saver", "jszip"]}}, "required": ["name", "version", "description", "directories", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"category": {"type": "string"}, "classinstvars": {"type": "array", "items": {}}, "classvars": {"type": "array", "items": {}}, "commentStamp": {"type": "string"}, "instvars": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "pools": {"type": "array", "items": {}}, "super": {"type": "string"}, "type": {"type": "string"}}, "required": ["category", "classinstvars", "classvars", "commentStamp", "instvars", "name", "pools", "super", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"category" : "AutoTDD-GUI", "classinstvars" : [], "classvars" : [], "commentStamp" : "be 7/25/2019 09:50", "instvars" : ["outClosure", "targetName"], "name" : "ATDDEditor", "pools" : [], "super" : "ATDDTargetWindow", "type" : "normal"} | json_instruct | {"type": "object", "properties": {"category": {"type": "string"}, "classinstvars": {"type": "array", "items": {}}, "classvars": {"type": "array", "items": {}}, "commentStamp": {"type": "string"}, "instvars": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "pools": {"type": "array", "items": {}}, "super": {"type": "string"}, "type": {"type": "string"}}, "required": ["category", "classinstvars", "classvars", "commentStamp", "instvars", "name", "pools", "super", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "210106024001", "text" : "\u5efa\u4e8c\u793e\u533a"}, {"id" : "210106024002", "text" : "\u5efa\u56db\u793e\u533a"}, {"id" : "210106024004", "text" : "\u5fb7\u5de5\u793e\u533a"}, {"id" : "210106024005", "text" : "\u5efa\u5317\u793e\u533a"}, {"id" : "210106024006", "text" : "\u9ad8\u697c\u793e\u533a"}, {"id" : "210106024008", "text" : "\u5efa\u7ee3\u793e\u533a"}, {"id" : "210106024009", "text" : "\u795e\u745e\u793e\u533a"}, {"id" : "210106024010", "text" : "\u5609\u4e1a\u793e\u533a"}, {"id" : "210106024011", "text" : "\u5174\u76db\u793e\u533a"}, {"id" : "210106024012", "text" : "\u5174\u8fbe\u793e\u533a"}, {"id" : "210106024013", "text" : "\u5b8f\u4f1f\u793e\u533a"}, {"id" : "210106024014", "text" : "\u957f\u6625\u793e\u533a"}, {"id" : "210106024015", "text" : "\u6587\u5316\u5bab\u793e\u533a"}, {"id" : "210106024016", "text" : "\u5eb7\u5b81\u793e\u533a"}, {"id" : "210106024017", "text" : "\u524d\u8fdb\u793e\u533a"}, {"id" : "210106024018", "text" : "\u7e41\u8363\u4e1c\u793e\u533a"}, {"id" : "210106024019", "text" : "\u7e41\u8363\u793e\u533a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}, "coverage": {"type": "string"}, "postcoverage": {"type": "string"}}, "required": ["test", "coverage", "postcoverage"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@cuser/client": {"type": "string"}}, "required": ["@cuser/client"]}, "devDependencies": {"type": "object", "properties": {"ava": {"type": "string"}, "codecov": {"type": "string"}, "nyc": {"type": "string"}}, "required": ["ava", "codecov", "nyc"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@cuser/client-apollo", "version" : "0.0.36", "description" : "client logic for reading and publishing using apollo transport", "main" : "index.js", "scripts" : {"test" : "nyc ava -v", "coverage" : "nyc report --reporter=lcov", "postcoverage" : "codecov -F client-apollo"}, "author" : "", "license" : "ISC", "dependencies" : {"@cuser/client" : "^0.0.36"}, "devDependencies" : {"ava" : "^3.13.0", "codecov" : "^3.8.1", "nyc" : "^15.1.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "coverage": {"type": "string"}, "postcoverage": {"type": "string"}}, "required": ["test", "coverage", "postcoverage"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@cuser/client": {"type": "string"}}, "required": ["@cuser/client"]}, "devDependencies": {"type": "object", "properties": {"ava": {"type": "string"}, "codecov": {"type": "string"}, "nyc": {"type": "string"}}, "required": ["ava", "codecov", "nyc"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x81190d066c1cca9a778a41703c9c7f6c506629d1", "tool" : "mythril", "start" : 1563295529.3758585, "end" : 1563295536.9247837, "duration" : 7.548925161361694, "analysis" : {"error" : null, "issues" : [], "success" : true}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "null"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-j832-43w3-m333", "modified" : "2022-03-17T00:00:49Z", "published" : "2022-03-17T00:00:49Z", "aliases" : ["CVE-2021-43958"], "details" : "Various rest resources in Fisheye and Crucible before version 4.8.9 allowed remote attackers to brute force user login credentials as rest resources did not check if users were beyond their max failed login limits and therefore required solving a CAPTCHA in addition to providing user credentials for authentication via a improper restriction of excess authentication attempts vulnerability.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2021-43958"}, {"type" : "WEB", "url" : "https://jira.atlassian.com/browse/CRUC-8523"}, {"type" : "WEB", "url" : "https://jira.atlassian.com/browse/FE-7387"}], "database_specific" : {"cwe_ids" : [], "severity" : null, "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "null"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "style": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "description", "category", "style", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "beer_S.O.S", "brewery" : "Abita Brewing Company", "name" : "S.O.S", "description" : "Save Our Shores (S.O.S) is an unfiltered weizen pils and has a brilliant golden color. A Charitable Pilsner", "category" : "German Lager", "style" : "German-Style Pilsener", "updated" : "2011-08-15 11:48:20"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "style": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "description", "category", "style", "updated"], "$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"}, "year": {"type": "integer"}, "runtime": {"type": "integer"}, "categories": {"type": "array", "items": {"type": "string"}}, "release-date": {"type": "string"}, "director": {"type": "string"}, "writer": {"type": "array", "items": {"type": "string"}}, "actors": {"type": "array", "items": {"type": "string"}}, "storyline": {"type": "string"}}, "required": ["name", "year", "runtime", "categories", "release-date", "director", "writer", "actors", "storyline"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "The House with a Clock in Its Walls", "year" : 2018, "runtime" : 105, "categories" : ["comedy", "family", "fantasy"], "release-date" : "2018-09-21", "director" : "Eli Roth", "writer" : ["Eric Kripke", "Paul Wernick", "John Bellairs"], "actors" : ["Jack Black", "Cate Blanchett", "Owen Vaccaro"], "storyline" : "A young orphan named Lewis Barnavelt aids his magical uncle in locating a clock with the power to bring about the end of the world."} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "year": {"type": "integer"}, "runtime": {"type": "integer"}, "categories": {"type": "array", "items": {"type": "string"}}, "release-date": {"type": "string"}, "director": {"type": "string"}, "writer": {"type": "array", "items": {"type": "string"}}, "actors": {"type": "array", "items": {"type": "string"}}, "storyline": {"type": "string"}}, "required": ["name", "year", "runtime", "categories", "release-date", "director", "writer", "actors", "storyline"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"web" : [{"value" : ["\u6c38\u4e45\u5730", "\u957f\u4e45", "\u6c38\u5b58\u5730"], "key" : "permanently"}, {"value" : ["\u6c38\u4e45\u79fb\u52a8", "\u5ba2\u6237\u8bd5\u56fe\u8bbf\u95ee\u7684\u8d44\u6e90\u5df2\u79fb\u5230\u65b0\u7684\u6c38\u4e45\u4f4d\u7f6e", "\u6c38\u4e45\u79fb\u9664"], "key" : "Moved Permanently"}, {"value" : ["\u6c38\u4e45\u63d0\u9ad8\u51c6\u786e\u6027", "\u6c38\u4e45\u63d0\u9ad8\u7cbe\u5ea6"], "key" : "Permanently increase"}], "query" : "permanently", "translation" : ["\u6c38\u4e45"], "errorCode" : "0", "dict" : {"url" : "yddict://m.youdao.com/dict?le=eng&q=permanently"}, "webdict" : {"url" : "http://m.youdao.com/dict?le=eng&q=permanently"}, "basic" : {"us-phonetic" : "'p\u025dm\u0259n\u0259ntli", "phonetic" : "'p\u025c\u02d0m(\u0259)n\u0259ntl\u026a", "uk-phonetic" : "'p\u025c\u02d0m(\u0259)n\u0259ntl\u026a", "explains" : ["adv. \u6c38\u4e45\u5730\uff0c\u957f\u671f\u4e0d\u53d8\u5730"]}, "l" : "EN2zh-CHS"} | json_instruct | {"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 8, "n_trials" : 80, "objective" : "markowitz_realized_on_cube", "white" : "optuna_tpe", "black" : "optuna_random_clone_2", "traceback" : ["passing", "passing"], "best_val" : [0.7157369223550742, 1.073184809108561], "best_x" : [[0.4360060919770588, 0.6126617723899205, 0.12694671695951876, 0.3878810929089482, 0.017190517284547693, 0.12845434769473957, 0.08399888302575723, 0.0003409914269420916], [0.5233063870074206, 0.20811986707050267, 0.21217171104211519, 0.5565700461938528, 0.22765081598279968, 0.12356527731520928, 0.14870028589718287, 0.15137528616886553]], "feval_count" : [80, 80], "n_trials_instructed" : [80, 80], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "optuna_tpe", "loser" : "optuna_random_clone_2"} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["430408101001", "\u96e8\u57ce\u5c45\u59d4\u4f1a", "112", "0"], ["430408101206", "\u96e8\u6bcd\u6751\u59d4\u4f1a", "220", "0"], ["430408101208", "\u7fa4\u76ca\u6751\u59d4\u4f1a", "220", "0"], ["430408101209", "\u6893\u6728\u6751\u59d4\u4f1a", "220", "0"], ["430408101213", "\u4e34\u6c5f\u6751\u59d4\u4f1a", "220", "0"], ["430408101214", "\u65b0\u7af9\u6751\u59d4\u4f1a", "220", "0"], ["430408101215", "\u5e78\u798f\u6751\u59d4\u4f1a", "111", "0"], ["430408101216", "\u4e03\u91cc\u5c71\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 58245, "cartId" : "a2d76dbc-df03-46f1-a5f9-6ff7bee62956", "preferredProducts" : [2185, 3218, 4305, 1899, 4039, 2467, 948], "productReviews" : [{"productId" : 2062, "reviewText" : "heard about this on chicha radio, decided to give it a try.", "reviewDate" : "2020-02-21T11:25:53.4699696+02:00"}, {"productId" : 2673, "reviewText" : "this Rustic is smooth.", "reviewDate" : "2017-09-28T05:50:50.7204699+03:00"}, {"productId" : 4057, "reviewText" : "This Metrics works quite well. It romantically improves my golf by a lot.", "reviewDate" : "2017-03-10T06:48:31.1680102+02:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"protocol": {"type": "string"}, "L": {"type": "integer"}, "J": {"type": "number"}, "B": {"type": "number"}, "K": {"type": "integer"}, "init_state": {"type": "string"}, "energy": {"type": "number"}, "eigoccs": {"type": "array", "items": {"type": "number"}}}, "required": ["protocol", "L", "J", "B", "K", "init_state", "energy", "eigoccs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"protocol" : "Iterative LogSweep (all k<K)", "L" : 2, "J" : 0.44721359549995826, "B" : 0.44721359549995826, "K" : 11, "init_state" : "maximally-mixed state", "energy" : -0.9898640011908832, "eigoccs" : [0.9929021112692212, 0.0006524324417113897, 0.005743458867073056, 0.000761333845867844]} | json_instruct | {"type": "object", "properties": {"protocol": {"type": "string"}, "L": {"type": "integer"}, "J": {"type": "number"}, "B": {"type": "number"}, "K": {"type": "integer"}, "init_state": {"type": "string"}, "energy": {"type": "number"}, "eigoccs": {"type": "array", "items": {"type": "number"}}}, "required": ["protocol", "L", "J", "B", "K", "init_state", "energy", "eigoccs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"symbol" : "ADT", "name" : "AdToken", "decimals" : 9, "address" : "0xd0d6d6c5fe4a677d343cc433536bb717bae167dd"} | json_instruct | {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"fade": {"type": "object", "properties": {"startFadeIn": {"type": "integer"}, "endFadeIn": {"type": "integer"}, "startFadeOut": {"type": "integer"}, "endFadeOut": {"type": "integer"}}, "required": ["startFadeIn", "endFadeIn", "startFadeOut", "endFadeOut"]}}, "required": ["fade"]}, "blend": {"type": "object", "properties": {}, "required": []}, "animationTextures": {"type": "array", "items": {"type": "object", "properties": {"west": {"type": "string"}, "top": {"type": "string"}, "bottom": {"type": "string"}, "north": {"type": "string"}, "south": {"type": "string"}, "east": {"type": "string"}}, "required": ["west", "top", "bottom", "north", "south", "east"]}}, "fps": {"type": "number"}}, "required": ["schemaVersion", "type", "properties", "blend", "animationTextures", "fps"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schemaVersion" : 2, "type" : "animated-square-textured", "properties" : {"fade" : {"startFadeIn" : 1000, "endFadeIn" : 2000, "startFadeOut" : 11000, "endFadeOut" : 12000}}, "blend" : {}, "animationTextures" : [{"west" : "minecraft:item/empty_armor_slot_shield", "top" : "minecraft:item/empty_armor_slot_boots", "bottom" : "minecraft:missingno", "north" : "minecraft:textures/atlas/blocks.png", "south" : "minecraft:item/empty_armor_slot_boots", "east" : "minecraft:textures/atlas/blocks.png"}, {"west" : "minecraft:textures/atlas/particles.png", "top" : "minecraft:textures/atlas/particles.png", "bottom" : "minecraft:textures/atlas/particles.png", "north" : "minecraft:textures/atlas/particles.png", "south" : "minecraft:textures/atlas/particles.png", "east" : "minecraft:textures/atlas/particles.png"}, {"west" : "minecraft:textures/atlas/particles.png", "top" : "minecraft:textures/atlas/particles.png", "bottom" : "minecraft:textures/atlas/particles.png", "north" : "minecraft:textures/atlas/particles.png", "south" : "minecraft:textures/atlas/blocks.png", "east" : "minecraft:textures/atlas/blocks.png"}], "fps" : 0.2} | json_instruct | {"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"fade": {"type": "object", "properties": {"startFadeIn": {"type": "integer"}, "endFadeIn": {"type": "integer"}, "startFadeOut": {"type": "integer"}, "endFadeOut": {"type": "integer"}}, "required": ["startFadeIn", "endFadeIn", "startFadeOut", "endFadeOut"]}}, "required": ["fade"]}, "blend": {"type": "object", "properties": {}, "required": []}, "animationTextures": {"type": "array", "items": {"type": "object", "properties": {"west": {"type": "string"}, "top": {"type": "string"}, "bottom": {"type": "string"}, "north": {"type": "string"}, "south": {"type": "string"}, "east": {"type": "string"}}, "required": ["west", "top", "bottom", "north", "south", "east"]}}, "fps": {"type": "number"}}, "required": ["schemaVersion", "type", "properties", "blend", "animationTextures", "fps"], "$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"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "I love little yordles (old version)\uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "ryo_mills", "description" : "Stayundefinedtunedundefinedforundefinedaundefinedupcomingundefinedbetterundefinedversion.", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/2301463/thumbnail-2301463_0011.jpg?itok=dW0S1x_T", "download" : "https://ecchi.iwara.tv/api/video/eoqeetavbzsk65we9", "origin" : "https://ecchi.iwara.tv/videos/eoqeetavbzsk65we9"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"version": {"type": "string"}, "href": {"type": "string"}}, "required": ["version", "href"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"version" : "v0.8", "href" : "/v0.8"}, {"version" : "v0.7", "href" : "/v0.7"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"version": {"type": "string"}, "href": {"type": "string"}}, "required": ["version", "href"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"domain": {"type": "string"}}, "required": ["domain"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"domain" : "transip.nl"} | json_instruct | {"type": "object", "properties": {"domain": {"type": "string"}}, "required": ["domain"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "5314070003", "district_id" : "5314070", "name" : "SEDEOEN"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "520625105201", "text" : "\u5408\u6c34\u6751\u59d4\u4f1a"}, {"id" : "520625105202", "text" : "\u5927\u6614\u6751\u59d4\u4f1a"}, {"id" : "520625105203", "text" : "\u4e09\u576a\u6751\u59d4\u4f1a"}, {"id" : "520625105204", "text" : "\u65b0\u69fd\u6751\u59d4\u4f1a"}, {"id" : "520625105205", "text" : "\u65b0\u53f0\u6751\u59d4\u4f1a"}, {"id" : "520625105206", "text" : "\u5174\u65fa\u6751\u59d4\u4f1a"}, {"id" : "520625105207", "text" : "\u6728\u814a\u6751\u59d4\u4f1a"}, {"id" : "520625105208", "text" : "\u9999\u6811\u576a\u6751\u59d4\u4f1a"}, {"id" : "520625105209", "text" : "\u65b0\u83b2\u6751\u59d4\u4f1a"}, {"id" : "520625105210", "text" : "\u576a\u5ce8\u6751\u59d4\u4f1a"}, {"id" : "520625105211", "text" : "\u9c7c\u6cc9\u6751\u59d4\u4f1a"}, {"id" : "520625105212", "text" : "\u6c34\u8f6c\u6751\u59d4\u4f1a"}, {"id" : "520625105213", "text" : "\u767d\u5143\u6751\u59d4\u4f1a"}, {"id" : "520625105214", "text" : "\u5c0f\u6749\u6728\u6751\u59d4\u4f1a"}, {"id" : "520625105215", "text" : "\u9ad8\u5be8\u6751\u59d4\u4f1a"}, {"id" : "520625105216", "text" : "\u576a\u697c\u6751\u59d4\u4f1a"}, {"id" : "520625105217", "text" : "\u4e9a\u5b50\u575d\u6751\u59d4\u4f1a"}, {"id" : "520625105218", "text" : "\u6c64\u5bb6\u4e95\u6751\u59d4\u4f1a"}, {"id" : "520625105219", "text" : "\u65b0\u573a\u6751\u59d4\u4f1a"}, {"id" : "520625105220", "text" : "\u666e\u5b50\u6751\u59d4\u4f1a"}, {"id" : "520625105221", "text" : "\u8336\u7f57\u6751\u59d4\u4f1a"}, {"id" : "520625105222", "text" : "\u5927\u5821\u6751\u59d4\u4f1a"}, {"id" : "520625105223", "text" : "\u7b26\u5bb6\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "520625105224", "text" : "\u5b98\u5e84\u6751\u59d4\u4f1a"}, {"id" : "520625105225", "text" : "\u77f3\u4e07\u6751\u59d4\u4f1a"}, {"id" : "520625105226", "text" : "\u6d1b\u4f51\u6751\u59d4\u4f1a"}, {"id" : "520625105227", "text" : "\u7f8a\u89d2\u8001\u6751\u59d4\u4f1a"}, {"id" : "520625105228", "text" : "\u9f99\u6d1e\u6751\u59d4\u4f1a"}, {"id" : "520625105229", "text" : "\u571f\u7850\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"acadYear": {"type": "string"}, "title": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "semesterData": {"type": "array", "items": {"type": "object", "properties": {"semester": {"type": "integer"}, "timetable": {"type": "array", "items": {"type": "object", "properties": {"classNo": {"type": "string"}, "startTime": {"type": "string"}, "endTime": {"type": "string"}, "venue": {"type": "string"}, "lessonType": {"type": "string"}, "day": {"type": "string"}, "weeks": {"type": "array", "items": {"type": "integer"}}}, "required": ["classNo", "startTime", "endTime", "venue", "lessonType", "day", "weeks"]}}}, "required": ["semester", "timetable"]}}}, "required": ["acadYear", "title", "moduleCredit", "moduleCode", "semesterData"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"acadYear" : "2019/2020", "title" : "PROCESS ENGINEERING FOR GAS/LNG & PHARMACEUTICAL INDUSTRIES", "moduleCredit" : "3", "moduleCode" : "CH4451", "semesterData" : [{"semester" : 1, "timetable" : [{"classNo" : "58105", "startTime" : "1230", "endTime" : "1430", "venue" : "LEC/STUDIO LT11", "lessonType" : "Lecture", "day" : "Thursday", "weeks" : [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]}, {"classNo" : "58105", "startTime" : "0930", "endTime" : "1030", "venue" : "TUT TR+21", "lessonType" : "test", "day" : "Thursday", "weeks" : [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]}, {"classNo" : "58106", "startTime" : "1230", "endTime" : "1430", "venue" : "LEC/STUDIO LT11", "lessonType" : "Lecture", "day" : "Thursday", "weeks" : [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]}, {"classNo" : "58106", "startTime" : "1030", "endTime" : "1130", "venue" : "TUT TR+21", "lessonType" : "test", "day" : "Thursday", "weeks" : [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]}]}]} | json_instruct | {"type": "object", "properties": {"acadYear": {"type": "string"}, "title": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "semesterData": {"type": "array", "items": {"type": "object", "properties": {"semester": {"type": "integer"}, "timetable": {"type": "array", "items": {"type": "object", "properties": {"classNo": {"type": "string"}, "startTime": {"type": "string"}, "endTime": {"type": "string"}, "venue": {"type": "string"}, "lessonType": {"type": "string"}, "day": {"type": "string"}, "weeks": {"type": "array", "items": {"type": "integer"}}}, "required": ["classNo", "startTime", "endTime", "venue", "lessonType", "day", "weeks"]}}}, "required": ["semester", "timetable"]}}}, "required": ["acadYear", "title", "moduleCredit", "moduleCode", "semesterData"], "$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"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jest": {"type": "string"}, "selenium-webdriver": {"type": "string"}}, "required": ["jest", "selenium-webdriver"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "docker": {"type": "string"}}, "required": ["test", "docker"]}}, "required": ["name", "version", "main", "repository", "author", "license", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tests-0.0.2", "version" : "0.0.1", "main" : "index.js", "repository" : "git@github.com:Desafio-Teste-Automacao-QA-CIT/tests-0.0.2.git", "author" : "Gabriel Fernandes <gabriel.work076@gmail.com>", "license" : "MIT", "dependencies" : {"jest" : "^27.4.3", "selenium-webdriver" : "^4.1.0"}, "scripts" : {"test" : "npx jest --all --no-cache --coverage", "docker" : "docker-compose up -d selenium && docker-compose up --build tests && docker-compose down"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jest": {"type": "string"}, "selenium-webdriver": {"type": "string"}}, "required": ["jest", "selenium-webdriver"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "docker": {"type": "string"}}, "required": ["test", "docker"]}}, "required": ["name", "version", "main", "repository", "author", "license", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "aer_terra:block/electrified_grass_block"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "note": {"type": "string"}, "successMessageText": {"type": "string"}, "failMessageText": {"type": "string"}, "startedMessageText": {"type": "string"}, "description": {"type": "string"}, "conditions": {"type": "object", "properties": {"5ac5e79986f7747398341847": {"type": "string"}, "5ac5e88e86f7741c5804f9db": {"type": "string"}, "5ac5e98886f77479bc6ca201": {"type": "string"}, "5ac5ea0586f774609f36280c": {"type": "string"}, "5acf3b7186f774184175301d": {"type": "string"}, "5acf3b7886f77418420bf36f": {"type": "string"}, "5cb6f81d86f7740e9d452683": {"type": "string"}, "5cb6f88d86f7747d215f09c1": {"type": "string"}, "5cb6f8de86f7740e9d452685": {"type": "string"}, "5cb6f9c586f7740ace254c44": {"type": "string"}}, "required": ["5ac5e79986f7747398341847", "5ac5e88e86f7741c5804f9db", "5ac5e98886f77479bc6ca201", "5ac5ea0586f774609f36280c", "5acf3b7186f774184175301d", "5acf3b7886f77418420bf36f", "5cb6f81d86f7740e9d452683", "5cb6f88d86f7747d215f09c1", "5cb6f8de86f7740e9d452685", "5cb6f9c586f7740ace254c44"]}, "location": {"type": "string"}}, "required": ["name", "note", "successMessageText", "failMessageText", "startedMessageText", "description", "conditions", "location"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Sinal. Parte 2", "note" : "", "successMessageText" : "5ac346ba86f7741d6118b996", "failMessageText" : "5ac346ba86f7741d6118b997", "startedMessageText" : "", "description" : "5ac346ba86f7741d6118b999", "conditions" : {"5ac5e79986f7747398341847" : "Entregue ventoinha do processador, 3 unidades", "5ac5e88e86f7741c5804f9db" : "Entregue 3 baterias recarreg\u00e1veis", "5ac5e98886f77479bc6ca201" : "Entregue 3 placas de circuito impresso", "5ac5ea0586f774609f36280c" : "Entregue: Gphones quebrados, 3 unidades", "5acf3b7186f774184175301d" : "", "5acf3b7886f77418420bf36f" : "", "5cb6f81d86f7740e9d452683" : "Encontre em incurs\u00e3o: Processadores, 3 unidades", "5cb6f88d86f7747d215f09c1" : "Encontre em incurs\u00e3o: Bateria recarreg\u00e1vel, 3 unidades", "5cb6f8de86f7740e9d452685" : "Encontre em incurs\u00e3o: Placa de circuito impresso, 3 unidades", "5cb6f9c586f7740ace254c44" : "Encontre em incurs\u00e3o: Gphones quebrados, 3 unidades"}, "location" : "any"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "note": {"type": "string"}, "successMessageText": {"type": "string"}, "failMessageText": {"type": "string"}, "startedMessageText": {"type": "string"}, "description": {"type": "string"}, "conditions": {"type": "object", "properties": {"5ac5e79986f7747398341847": {"type": "string"}, "5ac5e88e86f7741c5804f9db": {"type": "string"}, "5ac5e98886f77479bc6ca201": {"type": "string"}, "5ac5ea0586f774609f36280c": {"type": "string"}, "5acf3b7186f774184175301d": {"type": "string"}, "5acf3b7886f77418420bf36f": {"type": "string"}, "5cb6f81d86f7740e9d452683": {"type": "string"}, "5cb6f88d86f7747d215f09c1": {"type": "string"}, "5cb6f8de86f7740e9d452685": {"type": "string"}, "5cb6f9c586f7740ace254c44": {"type": "string"}}, "required": ["5ac5e79986f7747398341847", "5ac5e88e86f7741c5804f9db", "5ac5e98886f77479bc6ca201", "5ac5ea0586f774609f36280c", "5acf3b7186f774184175301d", "5acf3b7886f77418420bf36f", "5cb6f81d86f7740e9d452683", "5cb6f88d86f7747d215f09c1", "5cb6f8de86f7740e9d452685", "5cb6f9c586f7740ace254c44"]}, "location": {"type": "string"}}, "required": ["name", "note", "successMessageText", "failMessageText", "startedMessageText", "description", "conditions", "location"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "null"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Unsupervised-Person-Re-identification-Clustering-and-Fine-tuning", "description" : null, "license" : null, "starNum" : 78, "folkNum" : 31, "watchNum" : 78, "topic" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "null"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"retrospect": {"type": "object", "properties": {"branch": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "null"}, "owner": {"type": "string"}, "repo": {"type": "string"}, "rev": {"type": "string"}, "sha256": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}, "url_template": {"type": "string"}}, "required": ["branch", "description", "homepage", "owner", "repo", "rev", "sha256", "type", "url", "url_template"]}}, "required": ["retrospect"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"retrospect" : {"branch" : "master", "description" : "A retrospective mode for org", "homepage" : null, "owner" : "dudebout", "repo" : "retrospect", "rev" : "c57a932641d2cf07fea2df4c80633e2f957b1afb", "sha256" : "0y8pfp25gwq3z3r1ygay5m45gw4ks01f0gj55zngcw7s3b6b1dqx", "type" : "tarball", "url" : "https://github.com/dudebout/retrospect/archive/c57a932641d2cf07fea2df4c80633e2f957b1afb.tar.gz", "url_template" : "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"}} | json_instruct | {"type": "object", "properties": {"retrospect": {"type": "object", "properties": {"branch": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "null"}, "owner": {"type": "string"}, "repo": {"type": "string"}, "rev": {"type": "string"}, "sha256": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}, "url_template": {"type": "string"}}, "required": ["branch", "description", "homepage", "owner", "repo", "rev", "sha256", "type", "url", "url_template"]}}, "required": ["retrospect"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"subreddit" : "Alternativerock", "author" : "corndog666", "count" : 24} | json_instruct | {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"code": {"type": "string"}, "description": {"type": "string"}, "info": {"type": "array", "items": {"type": "string"}}, "symptoms": {"type": "array", "items": {"type": "string"}}, "causes": {"type": "array", "items": {"type": "string"}}}, "required": ["code", "description", "info", "symptoms", "causes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : "P0736", "description" : "Reverse Incorrect Gear Ratio", "info" : ["Modern vehicles equipped with automatic transmissions / transaxles use a torque converter between the engine and transmission to increase the engine torque output and drive the rear wheels.", "\n\u00a0", "This code can show up in vehicles with an automatic transmission when there is a problem shifting into reverse gear, or while driving in reverse. The automatic transmission changes the output direction to move the vehicle in reverse and is most often controlled manually through hydraulic pressure even on computer controlled transmissions.", "The Engine Control Module (ECM), Powertrain Control Module (PCM) or Transmission Control Module (TCM) uses input from various sensors to verify the correct operation of the transmission and its components. Engine speed is often calculated against the transmission speed sensor to determine gear ratio and torque converter slip. If the calculation does not match the desired value, the Diagnostic Trouble Code is set and the Check Engine Lamp is illuminated. Incorrect ratio codes typically require an advanced mechanical ability and diagnostic tools.", "Note: This code is similar to P0730, P0730, P0731, P0732, P0733, P0734 and P0735. If there are other transmission codes, repair those problems first before proceeding with an incorrect gear ratio code."], "symptoms" : ["Check Engine Light illuminated (Malfunction indicator lamp)\nDelayed shift or not shifting into reverse gear\nTransmission slipping"], "causes" : ["Low or dirty transmission fluid\nMechanical failure inside transmission\nInternal blockage inside transmission main control\nFaulty Shift solenoid\nFaulty transmission control module"]} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "description": {"type": "string"}, "info": {"type": "array", "items": {"type": "string"}}, "symptoms": {"type": "array", "items": {"type": "string"}}, "causes": {"type": "array", "items": {"type": "string"}}}, "required": ["code", "description", "info", "symptoms", "causes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"DESCRIPTION": {"type": "string"}, "USAGE": {"type": "string"}, "PRIZE_TOO_LONG": {"type": "string"}, "TITLE": {"type": "string"}, "ENDED": {"type": "string"}, "TIME_REMAINING": {"type": "string"}, "INVITE_PARTICIPATE": {"type": "string"}, "WIN_MESSAGE": {"type": "string"}, "FOOTER": {"type": "string"}, "NO_WINNER": {"type": "string"}, "WINNERS": {"type": "string"}, "END_AT": {"type": "string"}, "HOSTED": {"type": "string"}}, "required": ["DESCRIPTION", "USAGE", "PRIZE_TOO_LONG", "TITLE", "ENDED", "TIME_REMAINING", "INVITE_PARTICIPATE", "WIN_MESSAGE", "FOOTER", "NO_WINNER", "WINNERS", "END_AT", "HOSTED"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"DESCRIPTION" : "Comenzar un sorteo", "USAGE" : "g-start <time> <Number of winners> <prize>", "PRIZE_TOO_LONG" : "El nombre del premio debe contener menos de 256 caracteres.", "TITLE" : "\ud83c\udf89\ud83c\udf89 **SORTEO** \ud83c\udf89\ud83c\udf89", "ENDED" : "\ud83c\udf89\ud83c\udf89 **SORTEO ACABADO** \ud83c\udf89\ud83c\udf89", "TIME_REMAINING" : "Tiempo restante: **{duration}**.", "INVITE_PARTICIPATE" : "Reacciona con \ud83c\udf89 para participar!", "WIN_MESSAGE" : "\u00a1Felicidades, {winners}! \u00a1Has ganado **{prize}**!", "FOOTER" : "Sorteos", "NO_WINNER" : "Sorteo cancelado, no hay participaciones v\u00e1lidas.", "WINNERS" : "ganador(es)", "END_AT" : "Termina el", "HOSTED" : "Hosteada por: {user}"} | json_instruct | {"type": "object", "properties": {"DESCRIPTION": {"type": "string"}, "USAGE": {"type": "string"}, "PRIZE_TOO_LONG": {"type": "string"}, "TITLE": {"type": "string"}, "ENDED": {"type": "string"}, "TIME_REMAINING": {"type": "string"}, "INVITE_PARTICIPATE": {"type": "string"}, "WIN_MESSAGE": {"type": "string"}, "FOOTER": {"type": "string"}, "NO_WINNER": {"type": "string"}, "WINNERS": {"type": "string"}, "END_AT": {"type": "string"}, "HOSTED": {"type": "string"}}, "required": ["DESCRIPTION", "USAGE", "PRIZE_TOO_LONG", "TITLE", "ENDED", "TIME_REMAINING", "INVITE_PARTICIPATE", "WIN_MESSAGE", "FOOTER", "NO_WINNER", "WINNERS", "END_AT", "HOSTED"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Biconjugate gradient method": {"type": "array", "items": {"type": "string"}}}, "required": ["Biconjugate gradient method"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Biconjugate gradient method" : ["https://en.wikipedia.org/wiki/Biconjugate_gradient_method", "https://en.wikipedia.org/wiki/Conjugate_gradient_method", "https://en.wikipedia.org/wiki/Gradient_method"]} | json_instruct | {"type": "object", "properties": {"Biconjugate gradient method": {"type": "array", "items": {"type": "string"}}}, "required": ["Biconjugate gradient method"], "$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" : 404358623, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "370edb7113a1008b16f5c1348ff055bd", "wof:id" : 404358623, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.97917, 44.22, 1.97917, 44.22], "geometry" : {"coordinates" : [1.97917, 44.22], "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": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Le Tilleul-Lambert", "circ" : "2\u00e8me circonscription", "dpt" : "Eure", "inscrits" : 182, "abs" : 99, "votants" : 83, "blancs" : 7, "nuls" : 0, "exp" : 76, "res" : [{"nuance" : "REM", "nom" : "M. Fabien GOUTTEFARDE", "voix" : 49}, {"nuance" : "FN", "nom" : "M. Emmanuel CAMOIN", "voix" : 27}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "lint": {"type": "string"}, "listdiff": {"type": "string"}}, "required": ["build", "lint", "listdiff"]}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "cssnano": {"type": "string"}, "postcss": {"type": "string"}, "postcss-cli": {"type": "string"}, "prettier": {"type": "string"}, "stylelint": {"type": "string"}, "stylelint-config-prettier": {"type": "string"}, "stylelint-config-rational-order": {"type": "string"}, "stylelint-config-recommended": {"type": "string"}, "stylelint-config-standard": {"type": "string"}, "stylelint-order": {"type": "string"}, "stylelint-prettier": {"type": "string"}}, "required": ["autoprefixer", "cssnano", "postcss", "postcss-cli", "prettier", "stylelint", "stylelint-config-prettier", "stylelint-config-rational-order", "stylelint-config-recommended", "stylelint-config-standard", "stylelint-order", "stylelint-prettier"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "files", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "toggle-switch-css", "version" : "1.0.3", "description" : "Pure CSS toggle switch", "main" : "build/toggle-switch.css", "repository" : "https://github.com/magic-akari/toggle-switch.git", "author" : "magic-akari <hufan.akarin@gmail.com>", "license" : "MIT", "files" : ["src", "build"], "scripts" : {"build" : "postcss src/*.css -d build", "lint" : "stylelint src/*.css", "listdiff" : "prettier -l \"src/*.css\" \"*.{md,js}\""}, "devDependencies" : {"autoprefixer" : "^10.0.1", "cssnano" : "^4.1.10", "postcss" : "^8.1.2", "postcss-cli" : "^8.1.0", "prettier" : "^2.1.2", "stylelint" : "^13.7.2", "stylelint-config-prettier" : "^8.0.2", "stylelint-config-rational-order" : "^0.1.2", "stylelint-config-recommended" : "^3.0.0", "stylelint-config-standard" : "^20.0.0", "stylelint-order" : "^4.1.0", "stylelint-prettier" : "^1.1.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"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "lint": {"type": "string"}, "listdiff": {"type": "string"}}, "required": ["build", "lint", "listdiff"]}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "cssnano": {"type": "string"}, "postcss": {"type": "string"}, "postcss-cli": {"type": "string"}, "prettier": {"type": "string"}, "stylelint": {"type": "string"}, "stylelint-config-prettier": {"type": "string"}, "stylelint-config-rational-order": {"type": "string"}, "stylelint-config-recommended": {"type": "string"}, "stylelint-config-standard": {"type": "string"}, "stylelint-order": {"type": "string"}, "stylelint-prettier": {"type": "string"}}, "required": ["autoprefixer", "cssnano", "postcss", "postcss-cli", "prettier", "stylelint", "stylelint-config-prettier", "stylelint-config-rational-order", "stylelint-config-recommended", "stylelint-config-standard", "stylelint-order", "stylelint-prettier"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "files", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["350821111201", "\u7b56\u661f\u6751\u59d4\u4f1a", "121", "0"], ["350821111202", "\u7b56\u7530\u6751\u59d4\u4f1a", "122", "0"], ["350821111203", "\u6797\u7530\u6751\u59d4\u4f1a", "220", "0"], ["350821111204", "\u5f53\u5751\u6751\u59d4\u4f1a", "220", "0"], ["350821111205", "\u9ad8\u7530\u6751\u59d4\u4f1a", "220", "0"], ["350821111206", "\u7ea2\u6c5f\u6751\u59d4\u4f1a", "220", "0"], ["350821111207", "\u5fb7\u8054\u6751\u59d4\u4f1a", "220", "0"], ["350821111208", "\u9648\u574a\u6751\u59d4\u4f1a", "220", "0"], ["350821111209", "\u6cb3\u6881\u6751\u59d4\u4f1a", "220", "0"], ["350821111210", "\u674e\u57ce\u6751\u59d4\u4f1a", "220", "0"], ["350821111211", "\u674e\u7530\u6751\u59d4\u4f1a", "220", "0"], ["350821111212", "\u5357\u5751\u6751\u59d4\u4f1a", "220", "0"], ["350821111213", "\u5357\u6eaa\u6751\u59d4\u4f1a", "220", "0"], ["350821111214", "\u9ec4\u9986\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3510210008", "district_id" : "3510210", "name" : "SIDODADI"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404388577, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "83a4a414cef1c077820baeaac8c2a951", "wof:id" : 404388577, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.02444165065007, 45.35233954696406, 0.10115026474979, 45.39092078617212], "geometry" : {"coordinates" : [[[0.10115026474979, 45.35233954696406], [0.06875939493576, 45.35830811272616], [0.06611635203237, 45.36116735427522], [0.05281604394046, 45.35937629867137], [0.03387901971318, 45.37414955105101], [0.02622024733922, 45.38348896433573], [0.02444165065007, 45.39092078617212], [0.03662807221564, 45.38806300731464], [0.0505937999837, 45.38538596857131], [0.06770116145667, 45.38032959480327], [0.06937743759364, 45.36744310977632], [0.0758425283668, 45.36263825053101], [0.09874206368167, 45.36323399349889], [0.10115026474979, 45.35233954696406]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Target": {"type": "string"}, "MediaType": {"type": "string"}, "Data": {"type": "object", "properties": {"Integrity": {"type": "string"}}, "required": ["Integrity"]}}, "required": ["Target", "MediaType", "Data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Target" : "css/academic.min.2ef9f7a4c06db867267e9afcb74077b5.css", "MediaType" : "text/css", "Data" : {"Integrity" : "md5-Lvn3pMBtuGcmfpr8t0B3tQ=="}} | json_instruct | {"type": "object", "properties": {"Target": {"type": "string"}, "MediaType": {"type": "string"}, "Data": {"type": "object", "properties": {"Integrity": {"type": "string"}}, "required": ["Integrity"]}}, "required": ["Target", "MediaType", "Data"], "$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"}, "type": {"type": "string"}, "license": {"type": "string"}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "config": {"type": "object", "properties": {"preferred-install": {"type": "object", "properties": {"*": {"type": "string"}}, "required": ["*"]}, "sort-packages": {"type": "boolean"}}, "required": ["preferred-install", "sort-packages"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ElfR\\ActivityTrack\\": {"type": "string"}}, "required": ["ElfR\\ActivityTrack\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "illuminate/auth": {"type": "string"}, "illuminate/container": {"type": "string"}, "illuminate/contracts": {"type": "string"}, "illuminate/database": {"type": "string"}}, "required": ["php", "illuminate/auth", "illuminate/container", "illuminate/contracts", "illuminate/database"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["laravel"]}}, "required": ["name", "description", "type", "license", "minimum-stability", "prefer-stable", "config", "authors", "autoload", "require", "require-dev", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "elf-r/activity_track", "description" : "Track activity for Laravel", "type" : "library", "license" : "MIT", "minimum-stability" : "stable", "prefer-stable" : true, "config" : {"preferred-install" : {"*" : "dist"}, "sort-packages" : true}, "authors" : [{"name" : "vschoholiev", "email" : "vshoholev@gmail.com"}], "autoload" : {"psr-4" : {"ElfR\\ActivityTrack\\" : "src"}}, "require" : {"php" : ">=7.0", "illuminate/auth" : "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0", "illuminate/container" : "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0", "illuminate/contracts" : "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0", "illuminate/database" : "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0"}, "require-dev" : {"phpunit/phpunit" : "^5.7|6.2|^7.0"}, "extra" : {"laravel" : {"providers" : ["ElfR\\ActivityTrack\\ActivityTrackingServiceProvider"]}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "config": {"type": "object", "properties": {"preferred-install": {"type": "object", "properties": {"*": {"type": "string"}}, "required": ["*"]}, "sort-packages": {"type": "boolean"}}, "required": ["preferred-install", "sort-packages"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ElfR\\ActivityTrack\\": {"type": "string"}}, "required": ["ElfR\\ActivityTrack\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "illuminate/auth": {"type": "string"}, "illuminate/container": {"type": "string"}, "illuminate/contracts": {"type": "string"}, "illuminate/database": {"type": "string"}}, "required": ["php", "illuminate/auth", "illuminate/container", "illuminate/contracts", "illuminate/database"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["laravel"]}}, "required": ["name", "description", "type", "license", "minimum-stability", "prefer-stable", "config", "authors", "autoload", "require", "require-dev", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.isClickableInput = isClickableInput;\n\nvar _isElementType = require(\"../misc/isElementType\");\n\nconst CLICKABLE_INPUT_TYPES = ['button', 'color', 'file', 'image', 'reset', 'submit', 'checkbox', 'radio'];\n\nfunction isClickableInput(element) {\n return (0, _isElementType.isElementType)(element, 'button') || (0, _isElementType.isElementType)(element, 'input') && CLICKABLE_INPUT_TYPES.includes(element.type);\n}", "map" : {"version" : 3, "sources" : ["/Users/sondremelhus/DEV/ReactApps/weatherapp/node_modules/@testing-library/user-event/dist/utils/click/isClickableInput.js"], "names" : ["Object", "defineProperty", "exports", "value", "isClickableInput", "_isElementType", "require", "CLICKABLE_INPUT_TYPES", "element", "isElementType", "includes", "type"], "mappings" : "AAAA;;AAEAA,MAAM,CAACC,cAAP,CAAsBC,OAAtB,EAA+B,YAA/B,EAA6C;AAC3CC,EAAAA,KAAK,EAAE;AADoC,CAA7C;AAGAD,OAAO,CAACE,gBAAR,GAA2BA,gBAA3B;;AAEA,IAAIC,cAAc,GAAGC,OAAO,CAAC,uBAAD,CAA5B;;AAEA,MAAMC,qBAAqB,GAAG,CAAC,QAAD,EAAW,OAAX,EAAoB,MAApB,EAA4B,OAA5B,EAAqC,OAArC,EAA8C,QAA9C,EAAwD,UAAxD,EAAoE,OAApE,CAA9B;;AAEA,SAASH,gBAAT,CAA0BI,OAA1B,EAAmC;AACjC,SAAO,CAAC,GAAGH,cAAc,CAACI,aAAnB,EAAkCD,OAAlC,EAA2C,QAA3C,KAAwD,CAAC,GAAGH,cAAc,CAACI,aAAnB,EAAkCD,OAAlC,EAA2C,OAA3C,KAAuDD,qBAAqB,CAACG,QAAtB,CAA+BF,OAAO,CAACG,IAAvC,CAAtH;AACD", "sourcesContent" : ["\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.isClickableInput = isClickableInput;\n\nvar _isElementType = require(\"../misc/isElementType\");\n\nconst CLICKABLE_INPUT_TYPES = ['button', 'color', 'file', 'image', 'reset', 'submit', 'checkbox', 'radio'];\n\nfunction isClickableInput(element) {\n return (0, _isElementType.isElementType)(element, 'button') || (0, _isElementType.isElementType)(element, 'input') && CLICKABLE_INPUT_TYPES.includes(element.type);\n}"]}, "metadata" : {}, "sourceType" : "script"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9": {"type": "string"}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30", "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["AA1049"], "\uc81c\uc548\uc77c\uc790" : ["1962-01-19"], "\uc81c\uc548\uc790" : ["\ubb38\uad50\uc0ac\ud68c\uc704\uc6d0\uc7a5"], "\ubb38\uc11c" : [""], "\uc81c\uc548\ud68c\uae30" : ["\uad6d\uac00\uc7ac\uac74\ucd5c\uace0\ud68c\uc758(1961~1963)"], "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9" : "\u25a0 \uc81c\uc548\uc774\uc720\n\n\u672c\u6cd5\u6848\uc740 \u570b\u5bb6 \ub610\ub294 \u5730\u65b9\u81ea\u6cbb\u5718\u9ad4\uac00 \u884c\ud558\ub294 \u9577\u671f\u7684\uc778 \u570b\u571f\u5efa\u8a2d\u4e8b\u696d\uc5d0 \u53ef\u7528\u904a\u4f11\uf92f\u52d5\u529b\uc744 \u8f14\u5c0e\u6d3b\u7528\ud558\uc5ec \u904a\u4f11\u52e4\u52de\n\u8005\uc758 \u52e4\u52de\u751f\u6d3b\uc758 \u78ba\u7acb\uc744 \u671f\ud568\uacfc \u540c\u6642\uc5d0 \u570b\u5bb6\uc758 \u7d93\u6fdf\u518d\u5efa\uc5d0 \u5bc4\u8207\ud558\uac8c \ud558\ub824\ub294 \uac83\uc785\ub2c8\ub2e4.\n\n\n\u25a0 \uc8fc\uc694\uace8\uc790\n\n1. \u52d5\u54e1\u5c0d\u8c61\u8005\ub97c \u6eff \u4e8c\u5341\u4e00\u6b72 \u4ee5\u4e0a \u4e09\u5341\u6b72 \u672a\u6eff\uc758 \u7537\u5b50\ub85c \ud558\uace0 \u4fdd\u5065\u793e\u6703\u90e8\u9577\u5b98\uc774 \u6975\ud788 \u5fc5\u8981\ud558\ub2e4\uace0 \u8a8d\u5b9a\ud560 \ub54c\n \uc5d0\ub294 \u95a3\u8b70\uc758 \u8b70\u6c7a\uc744 \uac70\uccd0 \u6eff \u5341\u4e03\u6b72 \u4ee5\u4e0a \u4e8c\u5341\u4e00\u6b72 \u672a\u6eff\uc758 \u8005\uc640 \u6eff\u4e09\u5341\u6b72 \u4ee5\u4e0a \u56db\u5341\u6b72 \u672a\u6eff\uc758 \u7537\u5b50\ub3c4 \u52d5\u54e1\n \ud560 \uc218 \uc788\ub3c4\ub85d \ub418\uc5b4 \uc788\uc74c(\u6848 \u7b2c\u4e8c\u689d)\n\n2. \u52d5\u54e1\u5e74\u9650\uc744 \u4e00\u5e74 \u4ee5\u5167\ub85c \ud558\uace0 \u5fc5\u8981\uc5d0 \ub530\ub77c \u95a3\u8b70\uc758 \u8b70\u6c7a\uc744 \uac70\uccd0 \uf9d1\u6708 \u4ee5\u5167\uc758 \u671f\u9593\uc5d0 \u9650\ud558\uc5ec \u5ef6\u9577\ud560 \uc218 \uc788\ub3c4\n \ub85d \ub418\uc5b4 \uc788\uc74c(\u6848 \u7b2c\u4e09\u689d)\n\n3. \u672c\u6cd5\u6848\uc5d0 \u4f9d\ud558\uc5ec \u8f14\u5c0e\u52d5\u54e1\ub418\ub294 \u8005\uc758 \u8eab\u5206\uacfc \u8655\u9047\uc5d0 \u95dc\ud55c \u4e8b\u9805\uc740 \u95a3\u4ee4\uc73c\ub85c \u5b9a\ud558\ub3c4\ub85d \ub418\uc5b4 \uc788\uc74c(\u6848 \u7b2c\u56db\u689d)\n\n4. \u672c \u6cd5\u6848\uc740 \u6230\u6642\u52e4\u52de\u52d5\u54e1\u6cd5 \u7b2c\u4e94\u689d\u7b2c13\u81f3 \u7b2c\u5341\uf9d1\u689d(\u52d5\u54e1\u7533\u8acb\uc73c\ub85c\ubd80\ud130 \u52d5\u54e1\u89e3\u9664\uae4c\uc9c0\uc758 \u884c\u653f\u5ef3\uacfc \u88ab\u52d5\u54e1\u8005\uc5d0 \n \u95dc\ud55c \u4e8b\u9805, \uf983\u8cbb, \u8cc3\uf90a, \u6cbb\u7642\u8cbb, \u6170\u7c4d\u6599\u7b49\uc5d0 \u95dc\ud55c \u898f\u5b9a)\uc758 \u898f\u5b9a\uc744 \u6e96\u7528\ud558\ub3c4\ub85d \ub418\uc5b4 \uc788\uc74c(\u6848 \u7b2c\u4e94\u689d)"}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4" : {"\uc0c1\uc815\uc77c" : [""], "\uc758\uacb0\uc77c" : ["1962-01-31"], "\ud68c\uc758\uba85" : [""], "\ud68c\uc758\uacb0\uacfc" : ["\ud3d0\uae30"], "\ud68c\uc758\ub85d" : [""]}} | json_instruct | {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9": {"type": "string"}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30", "\uc81c\uc548\uc774\uc720 \ubc0f \uc8fc\uc694\ub0b4\uc6a9"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d319-22", "text" : "from\nNATIONAL HEADQUARTERS\n14 Gregory Hall, Urbana, Illinois"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$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.