input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"babel": {"type": "string"}, "babel-env": {"type": "string"}, "babel-polyfill": {"type": "string"}, "babel-register": {"type": "string"}, "dotenv": {"type": "string"}}, "required": ["babel", "babel-env", "babel-polyfill", "babel-register", "dotenv"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "node-edi", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Johnathan Sanders", "license" : "MIT", "dependencies" : {"babel" : "^6.23.0", "babel-env" : "^2.4.1", "babel-polyfill" : "^6.26.0", "babel-register" : "^6.26.0", "dotenv" : "^6.2.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"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"babel": {"type": "string"}, "babel-env": {"type": "string"}, "babel-polyfill": {"type": "string"}, "babel-register": {"type": "string"}, "dotenv": {"type": "string"}}, "required": ["babel", "babel-env", "babel-polyfill", "babel-register", "dotenv"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "ec3b6afa69f1500db2fa", "c" : {"0" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ETag" : "W/\"110629753854f08fbae99cfefd6e60d99ebfa06a9675f1785b4095a2446e26d0\"", "Last-Modified" : "Fri, 04 Jun 2021 00:41:36 GMT", "base" : {"repo" : {"name" : "boto3-feedstock"}}, "closed_at" : "2021-06-04T00:41:36Z", "created_at" : "2021-06-03T22:48:54Z", "draft" : false, "head" : {"ref" : "this_is_not_a_branch"}, "html_url" : "https://github.com/conda-forge/boto3-feedstock/pull/803", "id" : 661266914, "labels" : [], "mergeable" : null, "mergeable_state" : "unknown", "merged" : true, "merged_at" : "2021-06-04T00:41:36Z", "number" : 803, "state" : "closed", "updated_at" : "2021-06-04T00:41:36Z"} | json_instruct | {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "license": {"type": "string"}, "author": {"type": "string"}, "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"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "engines", "license", "author", "repository", "bugs", "homepage", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "terminal-char-table", "version" : "2.0.2", "description" : "a simple javascript (node.js) library for drawing ascii tables in the terminal and console.", "main" : "module.js", "scripts" : {"test" : "node test.js"}, "engines" : {"node" : ">=6.4.0"}, "license" : "MIT", "author" : "T!Mi (https://github.com/timi-owo)", "repository" : {"type" : "git", "url" : "git+https://github.com/timi-owo/terminal-char-table.git"}, "bugs" : {"url" : "https://github.com/timi-owo/terminal-char-table/issues"}, "homepage" : "https://github.com/timi-owo/terminal-char-table", "keywords" : ["form", "table", "terminal", "console", "char", "ascii", "draw", "drawing"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "license": {"type": "string"}, "author": {"type": "string"}, "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"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "engines", "license", "author", "repository", "bugs", "homepage", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"instantclick.js": {"type": "string"}, "instantclick.min.js": {"type": "string"}}, "required": ["instantclick.js", "instantclick.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"instantclick.js" : "sha256-vR7Qy87Cq3L7l3qjUfGcUVFDSI47w2bu2M6RKGh7Vk0=", "instantclick.min.js" : "sha256-T8RTGotskdhLXy/3avHtzYliRm9WCbiiqm5dbCVH87s="} | json_instruct | {"type": "object", "properties": {"instantclick.js": {"type": "string"}, "instantclick.min.js": {"type": "string"}}, "required": ["instantclick.js", "instantclick.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-121.910382, 37.45251], [-121.902064, 37.454878], [-121.902551, 37.456112], [-121.901488, 37.456607], [-121.904163, 37.459952], [-121.901083, 37.461002], [-121.892859, 37.451717], [-121.891079, 37.447149], [-121.903911, 37.446298], [-121.906625, 37.444654], [-121.909141, 37.447081], [-121.910382, 37.45251]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 7436}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {"type": "object", "properties": {"pic_title": {"type": "string"}, "suffix": {"type": "string"}, "id": {"type": "integer"}, "url": {"type": "string"}}, "required": ["pic_title", "suffix", "id", "url"]}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"e_id" : "15347", "title" : "\u6700\u540e\u4e00\u6b21\u201c\u963f\u6ce2\u7f57\u201d\u767b\u6708\u8ba1\u5212\u7ed3\u675f", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u572849\u5e74\u524d\u7684\u4eca\u5929\uff0c1972\u5e7412\u670819\u65e5(\u519c\u53861972\u5e7411\u670814\u65e5)\uff0c\u6700\u540e\u4e00\u6b21\u201c\u963f\u6ce2\u7f57\u201d\u767b\u6708\u8ba1\u5212\u7ed3\u675f\u3002\n\t\n\n\t\u201c\u963f\u6ce2\u7f57\u201d17\u53f7\u98de\u5f80\u6708\u7403\n\n\t1972\u5e7412\u670819\u65e5\u5728\u5b8c\u6210\u4e86\u7cfb\u5217\u767b\u6708\u8ba1\u5212\u4e2d\u5386\u65f6\u6700\u957f\u7684\u4e00\u6b21\u4f7f\u547d\u4e4b\u540e\uff0c\u201c\u963f\u6ce2\u7f5717\u201d\u53f7\u98de\u8239\u6e85\u843d\u592a\u5e73\u6d0b\uff0c\u7f8e\u56fd\u201c\u963f\u6ce2\u7f57\u201d\u767b\u6708\u8ba1\u5212\u5168\u90e8\u7ed3\u675f\uff0c3\u540d\u5b87\u822a\u5458\u4e2d\u67092\u540d--\u5c24\u91d1-A-\u585e\u5c14\u5357\u548c\u54c8\u91cc\u68ee-\u65bd\u5bc6\u7279\u603b\u8ba1\u5728\u6708\u7403\u4e0a\u9017\u755975\u5c0f\u65f6\uff0c\u4e0e\u6b64\u540c\u65f6\uff0c\u7b2c3\u540d\u5b87\u822a\u5458\uff0c\u7f57\u7eb3\u5fb7-E-\u57c3\u6587\u65af\u9a7e\u6307\u6325\u8239\u7ed5\u6708\u7403\u98de\u884c\u3002\n\n\t\u65bd\u5bc6\u7279\u662f\u4e00\u4f4d\u5730\u8d28\u5b66\u5bb6\uff0c\u662f\u7b2c\u4e00\u4f4d\u767b\u6708\u7684\u79d1\u5b66\u5bb6\uff0c\u79bb\u5f00\u5730\u7403\u7ecf3\u5929\u98de\u884c\u4e4b\u540e\uff0c\u4ed6\u548c\u585e\u5c14\u5357\u4e8e12\u670811\u65e5\u767b\u4e0a\u6708\u7403\u3002\u57283\u6b21\u767b\u6708\u4e2d\uff0c\u4ed6\u4eec\u9a7e\u7740\u6708\u884c\u8f66\u5728\u4e00\u5ea7\u5c71\u811a\u4e0b\u5de8\u5927\u7684\u783e\u77f3\u4e2d\u95f4\u884c\u9a76\uff0c\u5e76\u53d1\u73b0\u4e86\u4e00\u4e2a\u706b\u5c71\u53e3\u3002\u6709\u8ff9\u8c61\u8868\u660e\uff0c\u90a3\u91cc\u66fe\u6709\u706b\u5c71\u6d3b\u52a8\u53d1\u751f\u3002\u4ed6\u4eec\u5728\u90a3\u91cc\u5b89\u88c5\u4e86\u6d4b\u9707\u8868\u4ee5\u6d4b\u91cf\u4efb\u4f55\u53ef\u80fd\u53d1\u751f\u7684\u5730\u9707\uff0c\u8fd8\u5b89\u88c5\u4e86\u4e00\u53ea\u91cd\u529b\u8868\u548c\u4e00\u53ea\u5b87\u5b99\u5c04\u7ebf\u63a2\u6d4b\u5668\u4ee5\u53ca\u5176\u4ed6\u79d1\u5b66\u4eea\u5668\u3002\n\n\t\u4ed6\u4eec\u6700\u91cd\u5927\u7684\u53d1\u73b0\u662f\u660e\u4eae\u7684\u6a59\u8272\u571f\uff0c\u4eba\u4eec\u8ba4\u4e3a\u8fd9\u79cd\u571f\u4e2d\u5305\u542b\u591a\u79cd\u6708\u7403\u7a00\u6709\u5143\u7d20\uff0c\u79d1\u5b66\u5bb6\u4eec\u8ba4\u4e3a\u8fd9\u4e9b\u5143\u7d20\u8868\u660e\uff0c\u73b0\u5728\u4e0d\u6bdb\u7684\u6708\u7403\u8868\u9762\u8fc7\u53bb\u66fe\u6709\u6c34\u5b58\u5728\u3002\n\n\t\u201c\u963f\u6ce2\u7f57\u201d\u8ba1\u5212\u8017\u8d44250\u4ebf\u7f8e\u5143\uff0c\u5171\u8fdb\u884c\u4e8616\u6b21\u8f7d\u4eba\u98de\u5f80\u6708\u7403\u7684\u98de\u884c\u3002\u7b2c7\u6b21\u7684\u201c\u963f\u6ce2\u7f5713\u201d\u53f7\u98de\u884c\u9669\u4e9b\u917f\u6210\u5927\u7978\u3002\u5f53\u65f6\u98de\u8239\u4e0a\u6709\u4e00\u6c27\u6c14\u7bb1\u7834\u88c2\uff0c\u5b87\u822a\u5458\u4eec\u5f00\u52a8\u5e94\u6025\u88c5\u7f6e\uff0c\u4f7f\u4ed6\u4eec\u5f97\u4ee5\u6309\u6708\u7403\u8f68\u9053\u98de\u884c\u5e76\u5b89\u5168\u8fd4\u56de\u5730\u9762\uff0c\u201c\u963f\u6ce2\u7f57\u201d\u5b87\u822a\u5458\u4eec\u5171\u4ece\u6708\u7403\u5e26\u56de836\u78c5\u5ca9\u77f3\u548c\u5927\u91cf\u7684\u79d1\u5b66\u8d44\u6e90\uff0c\u5728\u201c\u963f\u6ce2\u7f5717\u201d\u53f7\u767b\u6708\u540e\u76f4\u81f3\u4eca\u5929\uff0c\u4eba\u7c7b\u518d\u6ca1\u6709\u6d3e\u5b87\u822a\u5458\u767b\u6708\u3002\n\n\t\u5728\u767b\u6708\u5347\u7a7a\u524d\uff0c\u5b87\u822a\u5458\u585e\u5c14\u5357\u548c\u65bd\u7c73\u7279\u5411\u4eba\u4eec\u5c55\u793a\u4e86\u4e00\u5757\u88c5\u5728\u767b\u9646\u8239\u4e0a\u7684\u724c\u533e\uff0c\u5b83\u5c06\u88ab\u7559\u5728\u6708\u7403\u4e0a\u3002\u724c\u533e\u4e0a\u6709\u201c\u963f\u6ce2\u7f57\u201d17\u53f7\u5b87\u822a\u5458\u548c\u5c3c\u514b\u677e\u603b\u7edf\u7684\u7b7e\u540d\u3002\u724c\u533e\u4e0a\u94ed\u6587\u5199\u9053\uff0c\u201c\u516c\u51431972\u5e7412\u6708\uff0c\u4eba\u7c7b\u5728\u8fd9\u91cc\u9996\u6b21\u5b8c\u6210\u4e86\u5bf9\u6708\u7403\u7684\u63a2\u5bdf\u3002\u613f\u6211\u4eec\u5e26\u6765\u7684\u548c\u5e73\u7cbe\u795e\u5728\u5168\u4eba\u7c7b\u7684\u751f\u6d3b\u4e2d\u95ea\u70c1\u53d1\u5149\u201d\u3002\n\n\t\n\n\t\u5b87\u822a\u5458\u4eec\u5728\u6708\u7403\u6d3b\u52a8\u8f66\u548c\u767b\u9646\u8239\u4e2d\n\n\t\n\n\t\u201c\u963f\u6ce2\u7f5717\u201d\u53f7\u7684\u5b87\u822a\u5458\u54c8\u91cc\u68ee-\u65bd\u5bc6\u7279\u5728\u6708\u7403\u7684\u4e00\u4e2a\u5c71\u8c37\u5bf9\u4e00\u9897\u5927\u9668\u77f3\u8fdb\u884c\u8c03\u67e5\u53d6\u6837\uff0c\u4ed6\u7684\u6708\u884c\u8f66\u5728\u9668\u77f3\u7684\u53e6\u4e00\u9762\n\n\t\n\n\t\u5728\u963f\u6ce2\u7f5717\u53f7\u91c7\u96c6\u6708\u7403\u5ca9\u77f3\u6807\u672c\n\n\t\n\n\t\u963f\u6ce2\u7f5717\u53f7\u592a\u7a7a\u8239\u7684\u7740\u9646\u5730\u70b9\n\n\t\n\n\t\u5728\u963f\u6ce2\u7f5717\u53f7\u592a\u7a7a\u8239\u5916\u7684\u6d3b\u52a8\n\n\t\n\n\t\u5728\u963f\u6ce2\u7f5717\u53f7\u592a\u7a7a\u8239\u5916\u7684\u6d3b\u52a8", "picNo" : "7", "picUrl" : [{"pic_title" : "\u201c\u963f\u6ce2\u7f57\u201d17\u53f7\u98de\u5f80\u6708\u7403", "suffix" : "jpeg", "id" : 1, "url" : "https://aimgs.oss-cn-shenzhen.aliyuncs.com/history_2021/15347_1.jpeg"}, {"pic_title" : "\u5b87\u822a\u5458\u4eec\u5728\u6708\u7403\u6d3b\u52a8\u8f66\u548c\u767b\u9646\u8239\u4e2d", "suffix" : "jpeg", "id" : 2, "url" : "https://aimgs.oss-cn-shenzhen.aliyuncs.com/history_2021/15347_2.jpeg"}, {"pic_title" : "", "suffix" : "jpeg", "id" : 3, "url" : "https://aimgs.oss-cn-shenzhen.aliyuncs.com/history_2021/15347_3.jpeg"}, {"pic_title" : "\u5728\u963f\u6ce2\u7f5717\u53f7\u91c7\u96c6\u6708\u7403\u5ca9\u77f3\u6807\u672c", "suffix" : "jpeg", "id" : 4, "url" : "https://aimgs.oss-cn-shenzhen.aliyuncs.com/history_2021/15347_4.jpeg"}, {"pic_title" : "\u963f\u6ce2\u7f5717\u53f7\u592a\u7a7a\u8239\u7684\u7740\u9646\u5730\u70b9", "suffix" : "jpeg", "id" : 5, "url" : "https://aimgs.oss-cn-shenzhen.aliyuncs.com/history_2021/15347_5.jpeg"}, {"pic_title" : "\u5728\u963f\u6ce2\u7f5717\u53f7\u592a\u7a7a\u8239\u5916\u7684\u6d3b\u52a8", "suffix" : "jpeg", "id" : 6, "url" : "https://aimgs.oss-cn-shenzhen.aliyuncs.com/history_2021/15347_6.jpeg"}, {"pic_title" : "\u5728\u963f\u6ce2\u7f5717\u53f7\u592a\u7a7a\u8239\u5916\u7684\u6d3b\u52a8", "suffix" : "jpeg", "id" : 7, "url" : "https://aimgs.oss-cn-shenzhen.aliyuncs.com/history_2021/15347_7.jpeg"}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {"type": "object", "properties": {"pic_title": {"type": "string"}, "suffix": {"type": "string"}, "id": {"type": "integer"}, "url": {"type": "string"}}, "required": ["pic_title", "suffix", "id", "url"]}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "THIS, OF ALL OTHER, SEEMS THE IDEA MOST INTIMATELY CONNECTED WITH AND ESSENTIAL TO BODY, SO AS NO-WHERE ELSE TO BE FOUND OR IMAGINED,", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/7736.json"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "egeloen/json-builder": {"type": "string"}}, "required": ["php", "egeloen/json-builder"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "widop/http-adapter": {"type": "string"}, "willdurand/geocoder": {"type": "string"}, "satooshi/php-coveralls": {"type": "string"}}, "required": ["phpunit/phpunit", "widop/http-adapter", "willdurand/geocoder", "satooshi/php-coveralls"]}, "suggest": {"type": "object", "properties": {"widop/http-adapter": {"type": "string"}, "willdurand/geocoder": {"type": "string"}}, "required": ["widop/http-adapter", "willdurand/geocoder"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Ivory\\GoogleMap\\": {"type": "string"}}, "required": ["Ivory\\GoogleMap\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"bin-dir": {"type": "string"}}, "required": ["bin-dir"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}}, "required": ["name", "description", "keywords", "license", "authors", "require", "require-dev", "suggest", "autoload", "config", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jardayn/google-map", "description" : "Google Map API v3 integration for PHP 5.3+. [Fixed for Chrome 68]", "keywords" : ["google map"], "license" : "MIT", "authors" : [{"name" : "Eric GELOEN", "email" : "geloen.eric@gmail.com"}], "require" : {"php" : ">=5.3.0", "egeloen/json-builder" : "~1.0.0"}, "require-dev" : {"phpunit/phpunit" : "~4.0", "widop/http-adapter" : "~1.1.0", "willdurand/geocoder" : "~2.0", "satooshi/php-coveralls" : "~0.6"}, "suggest" : {"widop/http-adapter" : "Allows to use services", "willdurand/geocoder" : "Allows to use geocoding service"}, "autoload" : {"psr-4" : {"Ivory\\GoogleMap\\" : "src/"}}, "config" : {"bin-dir" : "bin/"}, "extra" : {"branch-alias" : {"dev-master" : "1.4-dev"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "egeloen/json-builder": {"type": "string"}}, "required": ["php", "egeloen/json-builder"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "widop/http-adapter": {"type": "string"}, "willdurand/geocoder": {"type": "string"}, "satooshi/php-coveralls": {"type": "string"}}, "required": ["phpunit/phpunit", "widop/http-adapter", "willdurand/geocoder", "satooshi/php-coveralls"]}, "suggest": {"type": "object", "properties": {"widop/http-adapter": {"type": "string"}, "willdurand/geocoder": {"type": "string"}}, "required": ["widop/http-adapter", "willdurand/geocoder"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Ivory\\GoogleMap\\": {"type": "string"}}, "required": ["Ivory\\GoogleMap\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"bin-dir": {"type": "string"}}, "required": ["bin-dir"]}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}}, "required": ["name", "description", "keywords", "license", "authors", "require", "require-dev", "suggest", "autoload", "config", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["irods_atomic_apply_acl_operations", "irods_atomic_apply_metadata_operations", "irods_capped_memory_resource", "irods_client_connection", "irods_client_server_negotiation", "irods_connection_pool", "irods_data_object_finalize", "irods_data_object_modify_info", "irods_data_object_proxy", "irods_delay_hints_parser", "irods_dns_cache", "irods_dstream", "irods_filesystem", "irods_fixed_buffer_resource", "irods_get_file_descriptor_info", "irods_hierarchy_parser", "irods_hostname_cache", "irods_json_apis_from_client", "irods_key_value_proxy", "irods_lifetime_manager", "irods_linked_list_iterator", "irods_logical_locking", "irods_logical_paths_and_special_characters", "irods_metadata", "irods_packstruct", "irods_parallel_transfer_engine", "irods_query_builder", "irods_rc_data_obj", "irods_re_serialization", "irods_replica", "irods_replica_access_table", "irods_replica_open_and_close", "irods_replica_state_table", "irods_rerror_stack", "irods_resource_administration", "irods_scoped_client_identity", "irods_scoped_privileged_client", "irods_server_properties", "irods_shared_memory_object", "irods_user_administration", "irods_version", "irods_with_durability", "irods_zone_report"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [1116.28, 172.519, 1, 1092.74, 211.901, 1, 1070.09, 213.637, 1, 1075.55, 273.94, 1, 1101.19, 304.526, 1, 1113.95, 211.642, 1, 1117.29, 261.112, 1, 1130.63, 295.258, 1, 1063.59, 308.414, 1, 1058.99, 396.309, 1, 1033.82, 453.805, 1, 1103.63, 292.501, 1, 1129.63, 380.633, 1, 1119.08, 460.785, 1, 1110.1, 162.238, 1, 1116.14, 163.44, 1, 1088.94, 172.821, 1, 938.453, 178.175, 0], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "210422100", "text" : "\u65b0\u5bbe\u9547"}, {"id" : "210422101", "text" : "\u65fa\u6e05\u95e8\u9547"}, {"id" : "210422102", "text" : "\u6c38\u9675\u9547"}, {"id" : "210422103", "text" : "\u5e73\u9876\u5c71\u9547"}, {"id" : "210422104", "text" : "\u5927\u56db\u5e73\u9547"}, {"id" : "210422105", "text" : "\u82c7\u5b50\u5cea\u9547"}, {"id" : "210422106", "text" : "\u6728\u5947\u9547"}, {"id" : "210422108", "text" : "\u4e0a\u5939\u6cb3\u9547"}, {"id" : "210422109", "text" : "\u5357\u6742\u6728\u9547"}, {"id" : "210422202", "text" : "\u7ea2\u5347\u4e61"}, {"id" : "210422203", "text" : "\u54cd\u6c34\u6cb3\u5b50\u4e61"}, {"id" : "210422204", "text" : "\u7ea2\u5e99\u5b50\u4e61"}, {"id" : "210422205", "text" : "\u5317\u56db\u5e73\u4e61"}, {"id" : "210422207", "text" : "\u6986\u6811\u4e61"}, {"id" : "210422208", "text" : "\u4e0b\u5939\u6cb3\u4e61"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "image", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Cut venison roast in half and rub with brown sugar. Place roast into a slow cooker and add the apple juice, soy sauce, and salt. Cover and cook on Low setting for 6 hours or until meat is tender. Remove meat from slow cooker, cover, and let stand for 15 minutes.", "Pour drippings through strainer into medium sized bowl, return juices to slow cooker and discard material in strainer. In a small bowl, combine water and cornstarch until smooth; stir into cooking juices until well combined. Cover and cook on High until thickened, about 15 minutes. Slice meat and serve with gravy."], "image" : "https://images.media-allrecipes.com/userphotos/560x315/777110.jpg", "ingredients" : ["1 (2 pound) venison roast", "1 cup packed brown sugar", "1/3 cup unsweetened apple juice", "1/3 cup soy sauce", "1/2 teaspoon salt", "3 tablespoons cold water", "2 tablespoons cornstarch"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Slow Cooked Teriyaki Venison", "url" : "http://allrecipes.com/recipe/159188/slow-cooked-teriyaki-venison/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "image", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"appSecret": {"type": "string"}, "pageAccessToken": {"type": "string"}, "validationToken": {"type": "string"}, "serverURL": {"type": "string"}}, "required": ["appSecret", "pageAccessToken", "validationToken", "serverURL"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"appSecret" : "07b96b48d49c70c40fa1bcf70e49b285", "pageAccessToken" : "EAAXw68dew0cBADmCF8uEU6nBYuGNj5OzbxZByG1h0fvUTFZAfDo7oZCFkHQPMMqjxeBtTBbC4ZAcZBpfThxWRlRGwHiZAobVZC2TNW4JFZBzBqgGh8LBf2NCXCJAm6A3ZCDymljcMPe2UngZBe0583b2mHniNcd9GtZCuJ0CgF4XzBnaAZDZD", "validationToken" : "cindy-travel1988", "serverURL" : "https://cindy-travel.herokuapp.com/"} | json_instruct | {"type": "object", "properties": {"appSecret": {"type": "string"}, "pageAccessToken": {"type": "string"}, "validationToken": {"type": "string"}, "serverURL": {"type": "string"}}, "required": ["appSecret", "pageAccessToken", "validationToken", "serverURL"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"markdownlint.config": {"type": "object", "properties": {"MD028": {"type": "boolean"}, "MD025": {"type": "object", "properties": {"front_matter_title": {"type": "string"}}, "required": ["front_matter_title"]}}, "required": ["MD028", "MD025"]}, "cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["markdownlint.config", "cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"markdownlint.config" : {"MD028" : false, "MD025" : {"front_matter_title" : ""}}, "cSpell.words" : ["certbot", "devcontainer", "dotnetcli", "NGNIX", "puppeted", "USERPROFILE"]} | json_instruct | {"type": "object", "properties": {"markdownlint.config": {"type": "object", "properties": {"MD028": {"type": "boolean"}, "MD025": {"type": "object", "properties": {"front_matter_title": {"type": "string"}}, "required": ["front_matter_title"]}}, "required": ["MD028", "MD025"]}, "cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["markdownlint.config", "cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"textfield": {"type": "object", "properties": {"login": {"type": "object", "properties": {"hint": {"type": "string"}, "error": {"type": "string"}, "title": {"type": "string"}}, "required": ["hint", "error", "title"]}, "password": {"type": "object", "properties": {"hint": {"type": "string"}, "error": {"type": "string"}}, "required": ["hint", "error"]}}, "required": ["login", "password"]}, "button": {"type": "object", "properties": {"login": {"type": "object", "properties": {"enter": {"type": "string"}}, "required": ["enter"]}}, "required": ["login"]}, "tabbar": {"type": "object", "properties": {"home": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}}, "required": ["0", "1", "2", "3"]}}, "required": ["home"]}, "alertdialog": {"type": "object", "properties": {"error": {"type": "string"}, "cancel": {"type": "string"}, "ok": {"type": "string"}}, "required": ["error", "cancel", "ok"]}}, "required": ["textfield", "button", "tabbar", "alertdialog"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"textfield" : {"login" : {"hint" : "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", "error" : "\u0418\u043c\u044f \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043c\u0435\u043d\u0435\u0435 4 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432", "title" : "\u041a\u0430\u043d\u0431\u0430\u043d"}, "password" : {"hint" : "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0430\u0440\u043e\u043b\u044c", "error" : "\u041f\u0430\u0440\u043e\u043b\u044c \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043c\u0435\u043d\u0435\u0435 8 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432"}}, "button" : {"login" : {"enter" : "\u0412\u043e\u0439\u0442\u0438"}}, "tabbar" : {"home" : {"0" : "\u0412 \u043e\u0447\u0435\u0440\u0435\u0434\u0438", "1" : "\u0412 \u0440\u0430\u0431\u043e\u0442\u0435", "2" : "\u041d\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443", "3" : "\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e"}}, "alertdialog" : {"error" : "\u041e\u0448\u0438\u0431\u043a\u0430", "cancel" : "\u041e\u0442\u043c\u0435\u043d\u0430", "ok" : "\u041e\u043a"}} | json_instruct | {"type": "object", "properties": {"textfield": {"type": "object", "properties": {"login": {"type": "object", "properties": {"hint": {"type": "string"}, "error": {"type": "string"}, "title": {"type": "string"}}, "required": ["hint", "error", "title"]}, "password": {"type": "object", "properties": {"hint": {"type": "string"}, "error": {"type": "string"}}, "required": ["hint", "error"]}}, "required": ["login", "password"]}, "button": {"type": "object", "properties": {"login": {"type": "object", "properties": {"enter": {"type": "string"}}, "required": ["enter"]}}, "required": ["login"]}, "tabbar": {"type": "object", "properties": {"home": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}}, "required": ["0", "1", "2", "3"]}}, "required": ["home"]}, "alertdialog": {"type": "object", "properties": {"error": {"type": "string"}, "cancel": {"type": "string"}, "ok": {"type": "string"}}, "required": ["error", "cancel", "ok"]}}, "required": ["textfield", "button", "tabbar", "alertdialog"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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": {}}, "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" : "export * from \"./CommonHelper\";\nexport * from \"./TypographyHelper\";\nexport * from \"./ImageHelper\";", "map" : {"version" : 3, "sources" : ["/Users/sumedhreddy/Documents/stealth/stealth-startup/src/helpers/index.ts"], "names" : [], "mappings" : "AAAA;AACA;AACA", "sourcesContent" : ["export * from \"./CommonHelper\";\nexport * from \"./TypographyHelper\";\nexport * from \"./ImageHelper\";\n"]}, "metadata" : {}, "sourceType" : "module"} | 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": {}}, "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "start"]}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-plugin-transform-object-rest-spread": {"type": "string"}, "babel-preset-env": {"type": "string"}}, "required": ["babel-cli", "babel-plugin-transform-object-rest-spread", "babel-preset-env"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "express-fileupload": {"type": "string"}, "fs-extra": {"type": "string"}, "gm": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mkdirp": {"type": "string"}, "moment": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "multer": {"type": "string"}}, "required": ["body-parser", "cors", "express", "express-fileupload", "fs-extra", "gm", "jsonwebtoken", "mkdirp", "moment", "mongoose", "morgan", "multer"]}}, "required": ["name", "version", "main", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "appjam-16th", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "scripts" : {"dev" : "nodemon --exec babel-node index.js", "start" : "pm2 start --interpreter babel-node index.js"}, "devDependencies" : {"babel-cli" : "^6.26.0", "babel-plugin-transform-object-rest-spread" : "^6.26.0", "babel-preset-env" : "^1.6.1"}, "dependencies" : {"body-parser" : "^1.18.2", "cors" : "^2.8.4", "express" : "^4.16.2", "express-fileupload" : "^0.3.0", "fs-extra" : "^7.0.0", "gm" : "^1.23.1", "jsonwebtoken" : "^8.3.0", "mkdirp" : "^0.5.1", "moment" : "^2.22.2", "mongoose" : "^5.0.3", "morgan" : "^1.9.0", "multer" : "^1.3.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "start"]}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-plugin-transform-object-rest-spread": {"type": "string"}, "babel-preset-env": {"type": "string"}}, "required": ["babel-cli", "babel-plugin-transform-object-rest-spread", "babel-preset-env"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "express-fileupload": {"type": "string"}, "fs-extra": {"type": "string"}, "gm": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mkdirp": {"type": "string"}, "moment": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "multer": {"type": "string"}}, "required": ["body-parser", "cors", "express", "express-fileupload", "fs-extra", "gm", "jsonwebtoken", "mkdirp", "moment", "mongoose", "morgan", "multer"]}}, "required": ["name", "version", "main", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_fi70ohl", "name" : "MattMilby"}, "date" : {"day" : 1598140800, "full" : 1598190824, "month" : 1596240000, "week" : 1598140800}, "id" : "t3_if3jyc", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 59388, "fullUrl" : "https://preview.redd.it/nttdjqjf9ri51.jpg?auto=webp&s=081047fc949dab47758e39397207127ae4a5ebaa", "hash" : "aefcbe71a8", "height" : 451, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAALABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABgQF/8QAIRAAAgICAgEFAAAAAAAAAAAAAQIDEQQhADEFEkFRcYH/xAAUAQEAAAAAAAAAAAAAAAAAAAAD/8QAHBEBAAEEAwAAAAAAAAAAAAAAAQIAEkFRAxFh/9oADAMBAAIRAxEAPwDKy/ENBgSTtnREByrqp2p1o/tdfPJpMuIRxQmOP1ElrrvVd/ZuuI/PQxx4oREULMC762SaJ37XQ64H8k5jy8ZEoLo1Q7vikFj3LzLtoYcpfbFc4NFf/9k=", "thumbnailUrl" : "https://a.thumbs.redditmedia.com/7bksgizOKPWTlDCZyW7R4rXLpChdMysG3e9cKg75Dy8.jpg", "url" : "https://preview.redd.it/nttdjqjf9ri51.jpg?width=640&crop=smart&auto=webp&s=07b1d3ae04c46e203104260a9dff50e7619ad800", "width" : 640}, "score" : {"comments" : 9, "downs" : 0, "isCurated" : false, "ratio" : 1, "ups" : 502, "value" : 502}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["Cave"], "title" : "The Red Towers", "url" : "https://www.reddit.com/r/dndmaps/comments/if3jyc/the_red_towers_98x69/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "jsonName": {"type": "string"}, "path": {"type": "string"}}, "required": ["componentChunkName", "jsonName", "path"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"componentChunkName" : "component---src-pages-index-js", "jsonName" : "index", "path" : "/"}, {"componentChunkName" : "component---src-pages-page-js", "jsonName" : "0-357", "path" : "/0"}, {"componentChunkName" : "component---src-pages-page-js", "jsonName" : "1-5b5", "path" : "/1"}, {"componentChunkName" : "component---src-pages-page-js", "jsonName" : "2-de0", "path" : "/2"}, {"componentChunkName" : "component---src-pages-page-js", "jsonName" : "3-f95", "path" : "/3"}, {"componentChunkName" : "component---src-pages-page-js", "jsonName" : "5-85b", "path" : "/5"}, {"componentChunkName" : "component---src-pages-page-js", "jsonName" : "6-759", "path" : "/6"}, {"componentChunkName" : "component---cache-dev-404-page-js", "jsonName" : "dev-404-page-5f9", "path" : "/dev-404-page/"}, {"componentChunkName" : "component---src-pages-page-js", "jsonName" : "page-8a1", "path" : "/page/"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "jsonName": {"type": "string"}, "path": {"type": "string"}}, "required": ["componentChunkName", "jsonName", "path"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "contact": {"type": "object", "properties": {"name": {"type": "string"}, "mail": {"type": "string"}, "tel": {"type": "string"}}, "required": ["name", "mail", "tel"]}, "desc": {"type": "string"}, "url": {"type": "string"}}, "required": ["_id", "contact", "desc", "url"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"_id" : "apim", "contact" : {"name" : "SXAPI devteam", "mail" : "dev@startx.fr", "tel" : "+33146690000"}, "desc" : "application used to manage the SXAPI rules and documents", "url" : "https://github.com/startxfr/sxapi-m/wiki"}, {"_id" : "formation", "contact" : {"name" : "Training team", "mail" : "formation@startx.fr", "tel" : "+33146690000"}, "desc" : "Site de gestion de l'activit\u00e9 du centre de formation STARTX. Application d\u00e9di\u00e9e aux clients et utilisateur futur du centre de formation", "url" : "http://formation.startx.fr"}, {"_id" : "sxa", "contact" : {"name" : "SXA devteam", "mail" : "dev@startx.fr", "tel" : "+33146690000"}, "desc" : "application used to manage STARTX business process", "url" : "https://sxa.startx.fr"}, {"_id" : "www", "contact" : {"name" : "Marketing team", "mail" : "marketing@startx.fr", "tel" : "+33146690000"}, "desc" : "website of STARTX company. This application is used when STARTX website need API call to perform an action related to the STARTX IS.", "url" : "http://www.startx.fr"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "contact": {"type": "object", "properties": {"name": {"type": "string"}, "mail": {"type": "string"}, "tel": {"type": "string"}}, "required": ["name", "mail", "tel"]}, "desc": {"type": "string"}, "url": {"type": "string"}}, "required": ["_id", "contact", "desc", "url"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"attributes": {"type": "object", "properties": {"create": {"type": "array", "items": {"type": "object", "properties": {"depth": {"type": "integer"}, "comment": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["depth", "comment", "name", "type"]}}}, "required": ["create"]}, "name": {"type": "string"}}, "required": ["attributes", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"attributes" : {"create" : [{"depth" : 1, "comment" : "C? phone | fax | email | pager | url | sms | other", "name" : "system", "type" : "code=phone|fax|email|pager|url|sms"}, {"depth" : 1, "comment" : "The actual contact point details", "name" : "value", "type" : "string"}, {"depth" : 1, "comment" : "home | work | temp | old | mobile - purpose of this contact point", "name" : "use", "type" : "code"}, {"depth" : 1, "comment" : "Specify preferred order of use (1 = highest)", "name" : "rank", "type" : "positiveInt"}, {"depth" : 1, "comment" : "Time period when the contact point was/is in use", "name" : "period", "type" : "Period", "attributes" : {"create" : [{"depth" : 2, "comment" : "C? Starting time with inclusive boundary", "name" : "start", "type" : "dateTime"}, {"depth" : 2, "comment" : "C? End time with inclusive boundary if not ongoing", "name" : "end", "type" : "dateTime"}]}}]}, "name" : "ContactPoint"} | json_instruct | {"type": "object", "properties": {"attributes": {"type": "object", "properties": {"create": {"type": "array", "items": {"type": "object", "properties": {"depth": {"type": "integer"}, "comment": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["depth", "comment", "name", "type"]}}}, "required": ["create"]}, "name": {"type": "string"}}, "required": ["attributes", "name"], "$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": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}, "mongoose-mongodb-errors": {"type": "string"}, "passport": {"type": "string"}, "passport-local-mongoose": {"type": "string"}, "pug": {"type": "string"}, "validator": {"type": "string"}}, "required": ["body-parser", "dotenv", "express", "mongoose", "mongoose-mongodb-errors", "passport", "passport-local-mongoose", "pug", "validator"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "gulp": {"type": "string"}, "gulp-connect": {"type": "string"}, "gulp-sass": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "gulp", "gulp-connect", "gulp-sass"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "paper_trail", "version" : "1.0.0", "description" : "Simple expense/income tracker", "main" : "app.js", "scripts" : {"start" : "nodemon ./app.js", "test" : "npm test"}, "repository" : {"type" : "git", "url" : "git+https://github.com/andela-uopaluwa/paper_trail.git"}, "author" : "U D Opaluwa", "license" : "MIT", "bugs" : {"url" : "https://github.com/andela-uopaluwa/paper_trail/issues"}, "homepage" : "https://github.com/andela-uopaluwa/paper_trail#readme", "dependencies" : {"body-parser" : "^1.18.2", "dotenv" : "^5.0.1", "express" : "^4.16.2", "mongoose" : "^5.0.9", "mongoose-mongodb-errors" : "0.0.2", "passport" : "^0.4.0", "passport-local-mongoose" : "^5.0.0", "pug" : "^2.0.1", "validator" : "^9.4.1"}, "devDependencies" : {"eslint" : "^4.18.2", "eslint-config-airbnb-base" : "^12.1.0", "eslint-plugin-import" : "^2.9.0", "gulp" : "^3.9.1", "gulp-connect" : "^5.5.0", "gulp-sass" : "^3.1.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}, "mongoose-mongodb-errors": {"type": "string"}, "passport": {"type": "string"}, "passport-local-mongoose": {"type": "string"}, "pug": {"type": "string"}, "validator": {"type": "string"}}, "required": ["body-parser", "dotenv", "express", "mongoose", "mongoose-mongodb-errors", "passport", "passport-local-mongoose", "pug", "validator"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "gulp": {"type": "string"}, "gulp-connect": {"type": "string"}, "gulp-sass": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "gulp", "gulp-connect", "gulp-sass"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"viewBox": {"type": "string"}, "font": {"type": "string"}, "code": {"type": "string"}, "ref": {"type": "string"}, "path": {"type": "string"}}, "required": ["viewBox", "font", "code", "ref", "path"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"viewBox" : "0 0 1792 1792", "font" : "font-awesome", "code" : "f00c", "ref" : "ok", "path" : "M1643 498q28 28 28 68t-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136z"} | json_instruct | {"type": "object", "properties": {"viewBox": {"type": "string"}, "font": {"type": "string"}, "code": {"type": "string"}, "ref": {"type": "string"}, "path": {"type": "string"}}, "required": ["viewBox", "font", "code", "ref", "path"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nom": {"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": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Lanzac", "dpt" : "Lot", "inscrits" : 516, "abs" : 83, "votants" : 433, "blancs" : 15, "nuls" : 5, "exp" : 413, "res" : [{"panneau" : "3", "voix" : 105}, {"panneau" : "9", "voix" : 97}, {"panneau" : "2", "voix" : 67}, {"panneau" : "11", "voix" : 65}, {"panneau" : "4", "voix" : 37}, {"panneau" : "1", "voix" : 22}, {"panneau" : "6", "voix" : 7}, {"panneau" : "8", "voix" : 5}, {"panneau" : "10", "voix" : 4}, {"panneau" : "5", "voix" : 3}, {"panneau" : "7", "voix" : 1}]} | json_instruct | {"type": "object", "properties": {"nom": {"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": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x1ba606901f54c5303a5e62e3529f927b7b8adad1", "tool" : "osiris", "start" : 1564636113.456458, "end" : 1564636115.8536026, "duration" : 2.3971445560455322, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "lines": {"type": "object", "properties": {"159": {"type": "string"}, "160": {"type": "string"}, "161": {"type": "string"}}, "required": ["159", "160", "161"]}}, "required": ["id", "lines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "97406428", "lines" : {"159" : "PackagePart corePart = getCorePart(); \n", "160" : "return corePart.getRelatedPart(\n", "161" : " corePart.getRelationship(slide.getId2())\n"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "lines": {"type": "object", "properties": {"159": {"type": "string"}, "160": {"type": "string"}, "161": {"type": "string"}}, "required": ["159", "160", "161"]}}, "required": ["id", "lines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "thinolite", "definition" : "A calcareous tufa, in part crystalline, occurring on a large scale as a shore deposit about the Quaternary lake basins of Nevada."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Region": {"type": "string"}, "Key": {"type": "string"}, "Secret": {"type": "string"}}, "required": ["Region", "Key", "Secret"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Region" : "us-east-1", "Key" : "MOCKKEY", "Secret" : "thisisasecretstring"} | json_instruct | {"type": "object", "properties": {"Region": {"type": "string"}, "Key": {"type": "string"}, "Secret": {"type": "string"}}, "required": ["Region", "Key", "Secret"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "sqlitedict", "description" : "Persistent dict, backed by sqlite3 and pickle, multithread-safe.", "license" : null, "starNum" : 222, "folkNum" : 48, "watchNum" : 222, "topic" : ["data-store", "multi-threading", "python", "sqlite"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "obumbrate", "definition" : "To shade; to darken; to cloud. [R.] Howell."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"source": {"type": "string"}, "trackCount": {"type": "integer"}, "tracks": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "releases": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "names"]}}, "artists": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "names"]}}}, "required": ["_id", "names", "releases", "artists"]}}, "targets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "targetId": {"type": "string"}, "trackCount": {"type": "integer"}, "tracks": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "targetId", "trackCount", "tracks"]}}}, "required": ["source", "trackCount", "tracks", "targets"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"source" : "Alan Holmes", "trackCount" : 1, "tracks" : [{"_id" : "11097", "names" : ["Good Morning Good Morning"], "releases" : [{"_id" : "1798", "names" : ["Sgt. Pepper's Lonely Hearts Club Band"]}], "artists" : [{"_id" : "2", "names" : ["The Beatles"]}]}], "targets" : [{"name" : "John Lennon", "targetId" : "4", "trackCount" : 1, "tracks" : ["11097"]}, {"name" : "Paul McCartney", "targetId" : "5", "trackCount" : 1, "tracks" : ["11097"]}, {"name" : "George Harrison", "targetId" : "6", "trackCount" : 1, "tracks" : ["11097"]}, {"name" : "Ringo Starr", "targetId" : "7", "trackCount" : 1, "tracks" : ["11097"]}, {"name" : "Barrie Cameron", "targetId" : "9774", "trackCount" : 1, "tracks" : ["11097"]}, {"name" : "David Glyde", "targetId" : "9775", "trackCount" : 1, "tracks" : ["11097"]}, {"name" : "John Lee", "targetId" : "9777", "trackCount" : 1, "tracks" : ["11097"]}]} | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "trackCount": {"type": "integer"}, "tracks": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "releases": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "names"]}}, "artists": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["_id", "names"]}}}, "required": ["_id", "names", "releases", "artists"]}}, "targets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "targetId": {"type": "string"}, "trackCount": {"type": "integer"}, "tracks": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "targetId", "trackCount", "tracks"]}}}, "required": ["source", "trackCount", "tracks", "targets"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"recommendations": {"type": "array", "items": {"type": "string"}}}, "required": ["recommendations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"recommendations" : ["fredhappyface.x8664assembly"]} | json_instruct | {"type": "object", "properties": {"recommendations": {"type": "array", "items": {"type": "string"}}}, "required": ["recommendations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"name" : "White Pine County", "name_long" : "White Pine County, NV", "fips" : "32033", "state_code_int" : 32, "state_code_postal" : "NV", "state_code_iso" : "US-NV", "county_code" : 33, "population" : 9580, "countrylevel_id" : "fips:32033", "census_data" : {"COUNTYNS" : "00858615", "AFFGEOID" : "0500000US32033", "LSAD" : "06", "ALAND" : 22985104184, "AWATER" : 54678877}, "center_lat" : 39.44, "center_lon" : -114.9, "area_m2" : 23039783061, "timezone" : "America/Los_Angeles"}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-115.908, 39.458], [-115.903, 39.457], [-115.896, 39.457], [-115.891, 39.462], [-115.875, 39.467], [-115.869, 39.472], [-115.869, 39.485], [-115.866, 39.488], [-115.863, 39.494], [-115.858, 39.497], [-115.853, 39.5], [-115.844, 39.509], [-115.841, 39.52], [-115.833, 39.546], [-115.832, 39.57], [-115.816, 39.588], [-115.819, 39.61], [-115.825, 39.635], [-115.823, 39.659], [-115.824, 39.679], [-115.83, 39.697], [-115.833, 39.728], [-115.817, 39.747], [-115.811, 39.764], [-115.812, 39.789], [-115.814, 39.815], [-115.801, 39.834], [-115.795, 39.854], [-115.804, 39.872], [-115.805, 39.891], [-115.802, 39.911], [-115.817, 39.935], [-115.819, 39.96], [-115.829, 39.983], [-115.832, 40.002], [-115.827, 40.026], [-115.827, 40.053], [-115.833, 40.075], [-115.838, 40.1], [-115.828, 40.115], [-115.832, 40.125], [-115.835, 40.128], [-115.501, 40.128], [-115.483, 40.127], [-114.902, 40.122], [-114.047, 40.117], [-114.047, 40.104], [-114.046, 40.098], [-114.047, 40.03], [-114.047, 39.997], [-114.047, 39.906], [-114.047, 39.906], [-114.047, 39.821], [-114.048, 39.794], [-114.047, 39.759], [-114.048, 39.543], [-114.047, 39.5], [-114.049, 39.006], [-114.048, 38.879], [-114.049, 38.876], [-114.049, 38.875], [-114.049, 38.75], [-114.05, 38.729], [-114.05, 38.677], [-114.159, 38.677], [-114.165, 38.678], [-115.001, 38.677], [-115.593, 38.996], [-115.602, 39], [-115.907, 39.162], [-115.907, 39.221], [-115.908, 39.364], [-115.907, 39.42], [-115.908, 39.458]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "AND OUR ABSTRACT IDEAS, AND GENERAL WORDS, HAVE SO CONSTANT A RELATION ONE TO ANOTHER,", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/7717.json"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["longterm", "longterm_mongo_queue"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "embellishcraft-bop:block/pink_cherry_fancy_bed_inventory"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"uuid" : "42e8746a-d559-48a8-95c2-6b109122bbf5", "befores" : [{"name" : "data_dict", "status" : "passed", "start" : 1580623430853, "stop" : 1580623430854}], "start" : 1580623430853, "stop" : 1580623431182} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : "heat", "author" : "tomgreen99200", "count" : 151} | 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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "string"}, "day": {"type": "string"}}, "required": ["month", "num", "link", "year", "news", "safe_title", "transcript", "alt", "img", "title", "day"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"month" : "11", "num" : 1451, "link" : "", "year" : "2014", "news" : "", "safe_title" : "Background Screens", "transcript" : "What I Pay Attento to In Movies:\n[[A pie chart with a small slice labeled 'plot, characters', and the vast majority labeled 'computer screens shown briefly in the background'. Below, two people are watching TV, one from an armchair, one from the floor in front of them.]]\nFloor: Hang on - that blurry map behind the General shows one of the alien ships is in \nGreenland!\n Why \nGreenland?!\n\nArmchair: Can we \nplease\n just watch the movie?\n\n{{Title text: No way, we gotta rewind and cross-reference this map with the list of coordinates we saw on the other screen. This Greenland thing could be big.}}", "alt" : "No way, we gotta rewind and cross-reference this map with the list of coordinates we saw on the other screen. This Greenland thing could be big.", "img" : "https://imgs.xkcd.com/comics/background_screens.png", "title" : "Background Screens", "day" : "24"} | json_instruct | {"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "string"}, "day": {"type": "string"}}, "required": ["month", "num", "link", "year", "news", "safe_title", "transcript", "alt", "img", "title", "day"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"full": {"type": "string"}, "stairs_bottom_left": {"type": "string"}, "stairs_bottom_right": {"type": "string"}, "corner_bottom_left": {"type": "string"}, "corner_bottom_right": {"type": "string"}, "corner_top_left": {"type": "string"}, "corner_top_right": {"type": "string"}}, "required": ["full", "stairs_bottom_left", "stairs_bottom_right", "corner_bottom_left", "corner_bottom_right", "corner_top_left", "corner_top_right"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "minecraft:block/template_glass_stairs_inner", "textures" : {"full" : "block/gray_stained_glass", "stairs_bottom_left" : "minecraft:block/gray_stained_glass_stairs_bottom_left", "stairs_bottom_right" : "minecraft:block/gray_stained_glass_stairs_bottom_right", "corner_bottom_left" : "minecraft:block/gray_stained_glass_corner_bottom_left", "corner_bottom_right" : "minecraft:block/gray_stained_glass_corner_bottom_right", "corner_top_left" : "minecraft:block/gray_stained_glass_corner_top_left", "corner_top_right" : "minecraft:block/gray_stained_glass_corner_top_right"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"full": {"type": "string"}, "stairs_bottom_left": {"type": "string"}, "stairs_bottom_right": {"type": "string"}, "corner_bottom_left": {"type": "string"}, "corner_bottom_right": {"type": "string"}, "corner_top_left": {"type": "string"}, "corner_top_right": {"type": "string"}}, "required": ["full", "stairs_bottom_left", "stairs_bottom_right", "corner_bottom_left", "corner_bottom_right", "corner_top_left", "corner_top_right"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToProcessedPerformance": {"type": "object", "properties": {"program": {"type": "integer"}}, "required": ["program"]}}, "required": ["configuration", "regionsToProcessedPerformance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"configuration" : ["PLATFORM", "OUTPUTCOMPRESSIONGMODE"], "regionsToProcessedPerformance" : {"program" : 361308420507}} | json_instruct | {"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToProcessedPerformance": {"type": "object", "properties": {"program": {"type": "integer"}}, "required": ["program"]}}, "required": ["configuration", "regionsToProcessedPerformance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "category": {"type": "array", "items": {"type": "string"}}, "stream": {"type": "array", "items": {"type": "string"}}, "logo": {"type": "string"}}, "required": ["title", "category", "stream", "logo"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"title" : "Atameken Business", "category" : ["Business"], "stream" : ["http://live.atameken.cdnvideo.ru/atameken/atameken.sdp/playlist.m3u8"], "logo" : ""}, {"title" : "Bloomberg TV EMEA Live Event", "category" : ["Business"], "stream" : ["https://www.bloomberg.com/media-manifest/streams/eu-event.m3u8"], "logo" : "http://cdn-profiles.tunein.com/s47135/images/logog.png"}, {"title" : "Bloomberg TV Europe", "category" : ["Business"], "stream" : ["https://liveprodeuwest.akamaized.net/eu1/Channel-EUTVqvs-AWS-ireland-1/Source-EUTVqvs-1000-1_live.m3u8", "https://liveprodeuwest.global.ssl.fastly.net/eu1/Channel-EUTVqvs-AWS-ireland-1/Source-EUTVqvs-700-1_live.m3u8"], "logo" : "http://cdn-profiles.tunein.com/s47135/images/logog.png"}, {"title" : "Bloomberg TV Europe UHD", "category" : ["Business"], "stream" : ["https://bloomberg-bloombergtv-1-it.samsung.wurl.com/manifest/playlist.m3u8"], "logo" : "http://cdn-profiles.tunein.com/s47135/images/logog.png"}, {"title" : "\u0420\u0411\u041a", "category" : ["Business"], "stream" : ["http://uiptv.do.am/1ufc/701293058/playlist.m3u8", "http://92.50.128.180/utv/1358/index.m3u8", "http://ott-cdn.ucom.am/s36/index.m3u8", "https://strm.yandex.ru/kal/rbc_supres/rbc_supres0.m3u8"], "logo" : "http://www.tv-logo.com/pt-data/uploads/images/logo/rbk_tv_ru.jpg"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "category": {"type": "array", "items": {"type": "string"}}, "stream": {"type": "array", "items": {"type": "string"}}, "logo": {"type": "string"}}, "required": ["title", "category", "stream", "logo"]}, "$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"}, "repository": {"type": "null"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"nan": {"type": "string"}}, "required": ["nan"]}, "devDependencies": {"type": "object", "properties": {"tree-sitter-cli": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["tree-sitter-cli", "prettier"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "test-parse": {"type": "string"}, "test-all": {"type": "string"}}, "required": ["build", "test", "test-parse", "test-all"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tree-sitter-yang", "version" : "1.1.0", "description" : "Tree-sitter grammar for YANG", "main" : "bindings/node", "repository" : null, "author" : "Tomas Sandven", "license" : "Apache-2.0", "dependencies" : {"nan" : "^2.14.2"}, "devDependencies" : {"tree-sitter-cli" : "^0.20.0", "prettier" : "^2.3.2"}, "scripts" : {"build" : "tree-sitter generate", "test" : "tree-sitter test", "test-parse" : "./scripts/test-parsing-yang-modules.sh", "test-all" : "npm run test && npm run test-parse"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "null"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"nan": {"type": "string"}}, "required": ["nan"]}, "devDependencies": {"type": "object", "properties": {"tree-sitter-cli": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["tree-sitter-cli", "prettier"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "test-parse": {"type": "string"}, "test-all": {"type": "string"}}, "required": ["build", "test", "test-parse", "test-all"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "dependencies", "devDependencies", "scripts"], "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}}, "required": ["prepublish"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}, "rxjs": {"type": "string"}, "zone.js": {"type": "string"}}, "required": ["@angular/common", "@angular/core", "rxjs", "zone.js"]}, "dependencies": {"type": "object", "properties": {"rx-lean-js-core": {"type": "string"}}, "required": ["rx-lean-js-core"]}, "main": {"type": "string"}, "typings": {"type": "string"}, "types": {"type": "string"}}, "required": ["name", "version", "description", "repository", "scripts", "keywords", "author", "license", "devDependencies", "dependencies", "main", "typings", "types"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "rx-lean-angular", "version" : "0.5.11", "description" : "rx leancloud sdk for angular2&4", "repository" : {"type" : "git", "url" : "https://github.com/RxLeanCloud/rx-lean-angular"}, "scripts" : {"prepublish" : "tsc"}, "keywords" : ["leancloud", "angular2", "cloud", "baas"], "author" : "WuJun", "license" : "MIT", "devDependencies" : {"@angular/common" : "^4.1.0", "@angular/core" : "^4.1.0", "rxjs" : "^5.3.1", "zone.js" : "^0.8.10"}, "dependencies" : {"rx-lean-js-core" : "^0.4.9"}, "main" : "./dist/RxLeanCloud.Angular.js", "typings" : "./dist/RxLeanCloud.Angular.d.ts", "types" : "./dist/RxLeanCloud.Angular.d.ts"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}}, "required": ["prepublish"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}, "rxjs": {"type": "string"}, "zone.js": {"type": "string"}}, "required": ["@angular/common", "@angular/core", "rxjs", "zone.js"]}, "dependencies": {"type": "object", "properties": {"rx-lean-js-core": {"type": "string"}}, "required": ["rx-lean-js-core"]}, "main": {"type": "string"}, "typings": {"type": "string"}, "types": {"type": "string"}}, "required": ["name", "version", "description", "repository", "scripts", "keywords", "author", "license", "devDependencies", "dependencies", "main", "typings", "types"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"children": {"type": "array", "items": {"type": "object", "properties": {"children": {"type": "array", "items": {}}, "type": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["children", "type", "tags"]}}, "type": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["children", "type", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"children" : [{"children" : [], "type" : "node", "tags" : ["Assign"]}, {"children" : [], "type" : "node", "tags" : ["Assign"]}, {"children" : [{"children" : [{"children" : [], "type" : "node", "tags" : ["AugAssign"]}, {"children" : [{"children" : [{"children" : [], "type" : "node", "tags" : ["AugAssign"]}], "type" : "node", "tags" : ["CompoundStmt"]}], "type" : "node", "tags" : ["For"]}], "type" : "node", "tags" : ["CompoundStmt"]}], "type" : "node", "tags" : ["For"]}], "type" : "node", "tags" : ["Module"]} | json_instruct | {"type": "object", "properties": {"children": {"type": "array", "items": {"type": "object", "properties": {"children": {"type": "array", "items": {}}, "type": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["children", "type", "tags"]}}, "type": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["children", "type", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"category": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "language": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}, "description": {"type": "string"}}, "required": ["category", "name", "language", "tags", "url", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"category" : ["5", "3"], "name" : "Simple pe Failover Technique at work", "language" : ["SPL"], "tags" : ["recovery", "crash", "fail over", "redundancy"], "url" : "https://github.com/IBMStreams/samples/tree/main/Examples-for-beginners/060_simple_pe_failover_technique_at_work", "description" : "This example shows a way to protect the logic in an analytic operator when its PE (Processing Element) or its host machine crashes. "} | json_instruct | {"type": "object", "properties": {"category": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "language": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}, "description": {"type": "string"}}, "required": ["category", "name", "language", "tags", "url", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"dataType": {"type": "string"}, "longName": {"type": "string"}, "hl7Table": {"type": "string"}}, "required": ["dataType", "longName", "hl7Table"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dataType" : "ID", "longName" : "Accept Acknowledgment Type", "hl7Table" : "HL70155"} | json_instruct | {"type": "object", "properties": {"dataType": {"type": "string"}, "longName": {"type": "string"}, "hl7Table": {"type": "string"}}, "required": ["dataType", "longName", "hl7Table"], "$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#"}
| [[1982, 5], [1987, 5], [1993, 8]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"source" : "http://lema.rae.es/drae/srv/search?val=enlistar", "word" : "enlistar", "infinitivo" : "enlistar", "participio" : ["enlistado"], "gerundio" : ["enlistando"], "tenses" : {"3" : [["enlisto"], ["enlistas", "enlist\u00e1s"], ["enlista"], ["enlistamos"], ["enlist\u00e1is", "enlistan"], ["enlistan"]], "4" : [["enlist\u00e9"], ["enlistaste"], ["enlist\u00f3"], ["enlistamos"], ["enlistasteis", "enlistaron"], ["enlistaron"]], "5" : [["enlistaba"], ["enlistabas"], ["enlistaba"], ["enlist\u00e1bamos"], ["enlistabais", "enlistaban"], ["enlistaban"]], "6" : [["enlistar\u00eda"], ["enlistar\u00edas"], ["enlistar\u00eda"], ["enlistar\u00edamos"], ["enlistar\u00edais", "enlistar\u00edan"], ["enlistar\u00edan"]], "7" : [["enlistar\u00e9"], ["enlistar\u00e1s"], ["enlistar\u00e1"], ["enlistaremos"], ["enlistar\u00e9is", "enlistar\u00e1n"], ["enlistar\u00e1n"]], "8" : [["enliste"], ["enlistes"], ["enliste"], ["enlistemos"], ["enlist\u00e9is", "enlisten"], ["enlisten"]], "9" : [["enlistara"], ["enlistaras"], ["enlistara"], ["enlist\u00e1ramos"], ["enlistarais", "enlistaran"], ["enlistaran"]], "10" : [["enlistase"], ["enlistases"], ["enlistase"], ["enlist\u00e1semos"], ["enlistaseis", "enlistasen"], ["enlistasen"]], "11" : [["enlistare"], ["enlistares"], ["enlistare"], ["enlist\u00e1remos"], ["enlistareis", "enlistaren"], ["enlistaren"]], "12" : {"1" : ["enlista"], "2" : ["enliste"], "3" : ["enlistemos"], "4" : ["enlistad"], "5" : ["enlisten"]}}} | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"fees": {"type": "integer"}, "ts": {"type": "string"}, "txid": {"type": "string"}, "block": {"type": "integer"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "sent": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}}}, "required": ["fees", "ts", "txid", "block", "in", "sent", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"fees" : -2500000000, "ts" : "1534558631", "txid" : "e7c6e6add85326bf1ee187c78f62310fb6a39f343e2bb60325ad266c4cf2c905", "block" : 1414207, "in" : [{"coinbase" : "033f941504a781775b08fabe6d6d0000000002b132d000000001000000020000000002b13db00000000000000000010000000000000000000059840300000d2f6e6f64655374726174756d2f"}], "sent" : 2500000000, "out" : [{"value" : 0}, {"addr" : "MM7Szm9Ly74aAH9juAS8vsDvXmhB2wXpPo", "value" : 2500000000, "spent" : "6ada6f8c98f687bf5271f9595ea4b17840dbd70ffb8d3265b6dc76d805e43765"}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"fees": {"type": "integer"}, "ts": {"type": "string"}, "txid": {"type": "string"}, "block": {"type": "integer"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "sent": {"type": "integer"}, "out": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}}}, "required": ["fees", "ts", "txid", "block", "in", "sent", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Title": {"type": "string"}, "Year": {"type": "string"}, "Rated": {"type": "string"}, "Released": {"type": "string"}, "Runtime": {"type": "string"}, "Genre": {"type": "string"}, "Director": {"type": "string"}, "Writer": {"type": "string"}, "Actors": {"type": "string"}, "Plot": {"type": "string"}, "Language": {"type": "string"}, "Country": {"type": "string"}, "Awards": {"type": "string"}, "Poster": {"type": "string"}, "Ratings": {"type": "array", "items": {"type": "object", "properties": {"Source": {"type": "string"}, "Value": {"type": "string"}}, "required": ["Source", "Value"]}}, "Metascore": {"type": "string"}, "imdbRating": {"type": "string"}, "imdbVotes": {"type": "string"}, "imdbID": {"type": "string"}, "Type": {"type": "string"}, "DVD": {"type": "string"}, "BoxOffice": {"type": "string"}, "Production": {"type": "string"}, "Website": {"type": "string"}, "Response": {"type": "string"}}, "required": ["Title", "Year", "Rated", "Released", "Runtime", "Genre", "Director", "Writer", "Actors", "Plot", "Language", "Country", "Awards", "Poster", "Ratings", "Metascore", "imdbRating", "imdbVotes", "imdbID", "Type", "DVD", "BoxOffice", "Production", "Website", "Response"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Title" : "Crows Explode", "Year" : "2014", "Rated" : "N/A", "Released" : "12 Apr 2014", "Runtime" : "129 min", "Genre" : "Action", "Director" : "Toshiaki Toyoda", "Writer" : "Hiroshi Takahashi (manga)", "Actors" : "Elly, Motoki Fukami, Masahiro Higashide, Suzu Hirose", "Plot" : "A month later. Genji Takiya has graduated. New fights begin to see who will climb to the top at Suzuran High School. Meanwhile, a battle against nearby Kurosaki Industrial High School begins.", "Language" : "Japanese", "Country" : "Japan", "Awards" : "N/A", "Poster" : "https://m.media-amazon.com/images/M/MV5BZGE1MjAwODItOGUzYi00YjkyLTlmY2ItODM5MmRhMTA1MzFiXkEyXkFqcGdeQXVyNjIzODk2Mzg@._V1_SX300.jpg", "Ratings" : [{"Source" : "Internet Movie Database", "Value" : "6.0/10"}], "Metascore" : "N/A", "imdbRating" : "6.0", "imdbVotes" : "1,176", "imdbID" : "tt2825120", "Type" : "movie", "DVD" : "N/A", "BoxOffice" : "N/A", "Production" : "N/A", "Website" : "N/A", "Response" : "True"} | json_instruct | {"type": "object", "properties": {"Title": {"type": "string"}, "Year": {"type": "string"}, "Rated": {"type": "string"}, "Released": {"type": "string"}, "Runtime": {"type": "string"}, "Genre": {"type": "string"}, "Director": {"type": "string"}, "Writer": {"type": "string"}, "Actors": {"type": "string"}, "Plot": {"type": "string"}, "Language": {"type": "string"}, "Country": {"type": "string"}, "Awards": {"type": "string"}, "Poster": {"type": "string"}, "Ratings": {"type": "array", "items": {"type": "object", "properties": {"Source": {"type": "string"}, "Value": {"type": "string"}}, "required": ["Source", "Value"]}}, "Metascore": {"type": "string"}, "imdbRating": {"type": "string"}, "imdbVotes": {"type": "string"}, "imdbID": {"type": "string"}, "Type": {"type": "string"}, "DVD": {"type": "string"}, "BoxOffice": {"type": "string"}, "Production": {"type": "string"}, "Website": {"type": "string"}, "Response": {"type": "string"}}, "required": ["Title", "Year", "Rated", "Released", "Runtime", "Genre", "Director", "Writer", "Actors", "Plot", "Language", "Country", "Awards", "Poster", "Ratings", "Metascore", "imdbRating", "imdbVotes", "imdbID", "Type", "DVD", "BoxOffice", "Production", "Website", "Response"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {"type": "string"}, "kemasan": {"type": "string"}, "dosis": {"type": "string"}, "penyajian": {"type": "string"}, "pabrik": {"type": "string"}, "id": {"type": "string"}, "category_id": {"type": "string"}}, "required": ["name", "harga", "golongan", "kandungan", "indikasi", "kontraindikasi", "perhatian", "efeksamping", "indeksamanwanitahamil", "kemasan", "dosis", "penyajian", "pabrik", "id", "category_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "GLUCOVANCE TABLET 2,5/500", "harga" : " Rp. 385.126/ kemasan", "golongan" : "http://medicastore.com/image_banner/obat_keras_dan_psikotropika.gif", "kandungan" : "Glibenclamide 2.5 mg, metformin hydrochloride 500 mg.", "indikasi" : "Terapi tahap kedua untuk Diabetes Mellitus tipe 2 yang tidak dapat dikontrol dengan diet, olah raga, dan sulfonilurea atau metformin.", "kontraindikasi" : "Gangguan fungsi ginjal, penyakit jantung, kongestif, hipersensitif terhadap metformin hydrochloride atau glibenclamide atau sulfonilurea lain, asidosis metabolik akut atau kronik, gangguan fungsi hati, intoksikasi akut alkohol, alkoholisme, porfiria, laktasi.", "perhatian" : "Hamil, laktasi, anak, lanjut usia.Interaksi Obat :Diuretik, kortikosteroid, fenotiazin, tiroid, estrogn, kontrasepsi oral, fenitoin, asam nikotinat, simpatomimetik, penghambat kanal calcium, isoniazid.", "efeksamping" : "Infeksi saluran napas atas, diare, sakit kepala, mual, muntah, sakit perut, pusing.", "indeksamanwanitahamil" : "B: Baik penelitian reproduksi hewan tidak menunjukkan risiko pada janin maupun penelitian terkendali pada wanita hamil atau hewan coba tidak memperlihatkan efek merugikan (kecuali penurunan kesuburan) dimana tidak ada penelitian terkendali yang mengkonfirmasi risiko pada wanita hamil semester pertama (dan tidak ada bukti risiko pada trisemester selanjutnya).", "kemasan" : "Tablet salut selaput 2,5mg/500 mg x 100's", "dosis" : "Terapi awal Dosis permulaan yang dianjurkan: 1.25 mg/250 mg 1-2 x sehari.Terapi kedua Dosis permulaan yang dianjurkan: 2.5 mg/500 mg 2 x sehari, dosis sehari max sampai glibenklamid 20 mg/metformin 2000 mg.", "penyajian" : "Dikonsumsi bersamaan dengan makanan", "pabrik" : "Merck Sharp & Dohme.", "id" : "8222", "category_id" : "10"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {"type": "string"}, "kemasan": {"type": "string"}, "dosis": {"type": "string"}, "penyajian": {"type": "string"}, "pabrik": {"type": "string"}, "id": {"type": "string"}, "category_id": {"type": "string"}}, "required": ["name", "harga", "golongan", "kandungan", "indikasi", "kontraindikasi", "perhatian", "efeksamping", "indeksamanwanitahamil", "kemasan", "dosis", "penyajian", "pabrik", "id", "category_id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"path_root": {"type": "string"}, "win_size": {"type": "integer"}, "overlap": {"type": "integer"}}, "required": ["path_root", "win_size", "overlap"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"path_root" : "/cephfs_ryan/Batch_2/", "win_size" : 32, "overlap" : 0} | json_instruct | {"type": "object", "properties": {"path_root": {"type": "string"}, "win_size": {"type": "integer"}, "overlap": {"type": "integer"}}, "required": ["path_root", "win_size", "overlap"], "$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" : 38667, "cartId" : "59edcc60-1778-49dc-ad74-2c4b8cbd5561", "preferredProducts" : [1387, 2358], "productReviews" : [{"productId" : 1528, "reviewText" : "talk about irritation.", "reviewDate" : "2016-12-26T23:26:29.9884004+02:00"}, {"productId" : 2103, "reviewText" : "The box this comes in is 4 mile by 5 yard and weights 18 pound!!", "reviewDate" : "2016-11-15T20:55:04.6445416+02:00"}, {"productId" : 4402, "reviewText" : "i use it this time when i'm in my port-a-potty.", "reviewDate" : "2020-04-13T09:06:34.9676786+03:00"}, {"productId" : 1037, "reviewText" : "It only works when I'm Cook Islands.", "reviewDate" : "2017-06-13T01:19:19.2624031+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"bundles": {"type": "object", "properties": {"Pentatrion\\ViteBundle\\PentatrionViteBundle": {"type": "array", "items": {"type": "string"}}}, "required": ["Pentatrion\\ViteBundle\\PentatrionViteBundle"]}, "copy-from-package": {"type": "object", "properties": {"install/assets/": {"type": "string"}, "install/package.json": {"type": "string"}, "install/vite.config.js": {"type": "string"}}, "required": ["install/assets/", "install/package.json", "install/vite.config.js"]}, "gitignore": {"type": "array", "items": {"type": "string"}}}, "required": ["bundles", "copy-from-package", "gitignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"bundles" : {"Pentatrion\\ViteBundle\\PentatrionViteBundle" : ["all"]}, "copy-from-package" : {"install/assets/" : "assets/", "install/package.json" : "package.json", "install/vite.config.js" : "vite.config.js"}, "gitignore" : ["/node_modules/", "/%PUBLIC_DIR%/build/"]} | json_instruct | {"type": "object", "properties": {"bundles": {"type": "object", "properties": {"Pentatrion\\ViteBundle\\PentatrionViteBundle": {"type": "array", "items": {"type": "string"}}}, "required": ["Pentatrion\\ViteBundle\\PentatrionViteBundle"]}, "copy-from-package": {"type": "object", "properties": {"install/assets/": {"type": "string"}, "install/package.json": {"type": "string"}, "install/vite.config.js": {"type": "string"}}, "required": ["install/assets/", "install/package.json", "install/vite.config.js"]}, "gitignore": {"type": "array", "items": {"type": "string"}}}, "required": ["bundles", "copy-from-package", "gitignore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"totals": {"type": "object", "properties": {"confirmed": {"type": "string"}, "recovered": {"type": "string"}, "deceased": {"type": "string"}, "critical": {"type": "string"}, "tested": {"type": "string"}, "observation": {"type": "string"}, "homeObservation": {"type": "string"}, "hosptilised": {"type": "string"}, "active": {"type": "string"}}, "required": ["confirmed", "recovered", "deceased", "critical", "tested", "observation", "homeObservation", "hosptilised", "active"]}, "totalsDiff": {"type": "object", "properties": {"confirmed": {"type": "integer"}, "recovered": {"type": "integer"}, "deceased": {"type": "integer"}, "critical": {"type": "integer"}, "tested": {"type": "integer"}, "observation": {"type": "integer"}, "homeObservation": {"type": "integer"}, "hosptilised": {"type": "integer"}, "active": {"type": "integer"}}, "required": ["confirmed", "recovered", "deceased", "critical", "tested", "observation", "homeObservation", "hosptilised", "active"]}, "updated": {"type": "string"}}, "required": ["totals", "totalsDiff", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"totals" : {"confirmed" : "2233468", "recovered" : "1894518", "deceased" : "6724", "critical" : "5393", "tested" : "18289940", "observation" : "1005084", "homeObservation" : "964885", "hosptilised" : "40199", "active" : "331860"}, "totalsDiff" : {"confirmed" : 32762, "recovered" : 48413, "deceased" : 112, "critical" : 57, "tested" : 140545, "observation" : -5911, "homeObservation" : -8136, "hosptilised" : 2225, "active" : -15766}, "updated" : "2021-05-19 19:10"} | json_instruct | {"type": "object", "properties": {"totals": {"type": "object", "properties": {"confirmed": {"type": "string"}, "recovered": {"type": "string"}, "deceased": {"type": "string"}, "critical": {"type": "string"}, "tested": {"type": "string"}, "observation": {"type": "string"}, "homeObservation": {"type": "string"}, "hosptilised": {"type": "string"}, "active": {"type": "string"}}, "required": ["confirmed", "recovered", "deceased", "critical", "tested", "observation", "homeObservation", "hosptilised", "active"]}, "totalsDiff": {"type": "object", "properties": {"confirmed": {"type": "integer"}, "recovered": {"type": "integer"}, "deceased": {"type": "integer"}, "critical": {"type": "integer"}, "tested": {"type": "integer"}, "observation": {"type": "integer"}, "homeObservation": {"type": "integer"}, "hosptilised": {"type": "integer"}, "active": {"type": "integer"}}, "required": ["confirmed", "recovered", "deceased", "critical", "tested", "observation", "homeObservation", "hosptilised", "active"]}, "updated": {"type": "string"}}, "required": ["totals", "totalsDiff", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "San Jose West, Burauen, Leyte, Eastern Visayas (Region VIII), PH", "locale" : "ph.eastern-visayas-region-viii.leyte.burauen.san-jose-west", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "10", "region_reference" : "8", "region_name" : "Eastern Visayas (Region VIII)", "province_id" : "43", "province_reference" : "43", "province_name" : "Leyte", "city_id" : "252", "city_reference" : "863", "city_name" : "Burauen", "barangay_id" : "6615", "barangay_reference" : "21821", "barangay_name" : "San Jose West"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[124.908669, 10.96993], [124.908836, 10.96664], [124.905441, 10.96517], [124.902428, 10.96297], [124.901413, 10.962114], [124.900436, 10.96129], [124.897247, 10.95877], [124.89447, 10.95882], [124.891823, 10.96129], [124.892441, 10.962114], [124.894203, 10.96446], [124.899101, 10.96688], [124.901833, 10.96842], [124.908669, 10.96993]]]]}} | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"slug": {"type": "string"}, "is_common": {"type": "boolean"}, "tags": {"type": "array", "items": {"type": "string"}}, "jlpt": {"type": "array", "items": {"type": "string"}}, "japanese": {"type": "array", "items": {"type": "object", "properties": {"word": {"type": "string"}, "reading": {"type": "string"}}, "required": ["word", "reading"]}}, "senses": {"type": "array", "items": {"type": "object", "properties": {"english_definitions": {"type": "array", "items": {"type": "string"}}, "parts_of_speech": {"type": "array", "items": {}}, "links": {"type": "array", "items": {}}, "tags": {"type": "array", "items": {"type": "string"}}, "restrictions": {"type": "array", "items": {}}, "see_also": {"type": "array", "items": {}}, "antonyms": {"type": "array", "items": {}}, "source": {"type": "array", "items": {}}, "info": {"type": "array", "items": {"type": "string"}}}, "required": ["english_definitions", "parts_of_speech", "links", "tags", "restrictions", "see_also", "antonyms", "source", "info"]}}, "attribution": {"type": "object", "properties": {"jmdict": {"type": "boolean"}, "jmnedict": {"type": "boolean"}, "dbpedia": {"type": "boolean"}}, "required": ["jmdict", "jmnedict", "dbpedia"]}}, "required": ["slug", "is_common", "tags", "jlpt", "japanese", "senses", "attribution"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"slug" : "\u4eca\u65e5\u306f", "is_common" : true, "tags" : ["wanikani3"], "jlpt" : ["jlpt-n3", "jlpt-n1"], "japanese" : [{"word" : "\u4eca\u65e5\u306f", "reading" : "\u3053\u3093\u306b\u3061\u306f"}], "senses" : [{"english_definitions" : ["hello", "good day", "good afternoon"], "parts_of_speech" : [], "links" : [], "tags" : ["Usually written using kana alone"], "restrictions" : [], "see_also" : [], "antonyms" : [], "source" : [], "info" : ["\u306f is pronounced as \u308f; used during daytime"]}], "attribution" : {"jmdict" : true, "jmnedict" : false, "dbpedia" : false}} | json_instruct | {"type": "object", "properties": {"slug": {"type": "string"}, "is_common": {"type": "boolean"}, "tags": {"type": "array", "items": {"type": "string"}}, "jlpt": {"type": "array", "items": {"type": "string"}}, "japanese": {"type": "array", "items": {"type": "object", "properties": {"word": {"type": "string"}, "reading": {"type": "string"}}, "required": ["word", "reading"]}}, "senses": {"type": "array", "items": {"type": "object", "properties": {"english_definitions": {"type": "array", "items": {"type": "string"}}, "parts_of_speech": {"type": "array", "items": {}}, "links": {"type": "array", "items": {}}, "tags": {"type": "array", "items": {"type": "string"}}, "restrictions": {"type": "array", "items": {}}, "see_also": {"type": "array", "items": {}}, "antonyms": {"type": "array", "items": {}}, "source": {"type": "array", "items": {}}, "info": {"type": "array", "items": {"type": "string"}}}, "required": ["english_definitions", "parts_of_speech", "links", "tags", "restrictions", "see_also", "antonyms", "source", "info"]}}, "attribution": {"type": "object", "properties": {"jmdict": {"type": "boolean"}, "jmnedict": {"type": "boolean"}, "dbpedia": {"type": "boolean"}}, "required": ["jmdict", "jmnedict", "dbpedia"]}}, "required": ["slug", "is_common", "tags", "jlpt", "japanese", "senses", "attribution"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"preheading": {"type": "string"}, "heading": {"type": "string"}, "subheading": {"type": "string"}, "date": {"type": "string"}, "subheading2": {"type": "string"}, "registerLink": {"type": "string"}}, "required": ["preheading", "heading", "subheading", "date", "subheading2", "registerLink"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"preheading" : "Girlscript Presents", "heading" : "#Hack4Women", "subheading" : "Online Hackathon", "date" : "17th December, 9:00 AM - 9:00 PM IST", "subheading2" : "Win exciting prizes", "registerLink" : "http://bit.ly/GSIndiaSummit"} | json_instruct | {"type": "object", "properties": {"preheading": {"type": "string"}, "heading": {"type": "string"}, "subheading": {"type": "string"}, "date": {"type": "string"}, "subheading2": {"type": "string"}, "registerLink": {"type": "string"}}, "required": ["preheading", "heading", "subheading", "date", "subheading2", "registerLink"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "group": {"type": "string"}, "joblink": {"type": "boolean"}, "name": {"type": "string"}, "potential": {"type": "integer"}, "skills": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "skill": {"type": "string"}, "replaceable": {"type": "boolean"}}, "required": ["id", "skill", "replaceable"]}}}, "required": ["id", "group", "joblink", "name", "potential", "skills"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 27293, "group" : "73213103", "joblink" : true, "name" : "Betriebswirt/in (Fachschule) - Krankenkassen", "potential" : 29, "skills" : [{"id" : 62234, "skill" : "Kosten- und Leistungsrechnung", "replaceable" : true}, {"id" : 62252, "skill" : "Kalkulation", "replaceable" : true}, {"id" : 62272, "skill" : "Marketing", "replaceable" : false}, {"id" : 62288, "skill" : "Controlling", "replaceable" : false}, {"id" : 62303, "skill" : "Personalwesen", "replaceable" : false}, {"id" : 64043, "skill" : "Betriebswirtschaftslehre", "replaceable" : false}, {"id" : 64573, "skill" : "Gesundheits\u00f6konomie", "replaceable" : false}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "group": {"type": "string"}, "joblink": {"type": "boolean"}, "name": {"type": "string"}, "potential": {"type": "integer"}, "skills": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "skill": {"type": "string"}, "replaceable": {"type": "boolean"}}, "required": ["id", "skill", "replaceable"]}}}, "required": ["id", "group", "joblink", "name", "potential", "skills"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localities" : ["East Helena, MT"], "state" : "MT", "postal_code" : "59635", "locality" : "East Helena, MT", "lat" : 46.565291, "region" : {"fips" : "30", "abbr" : "MT", "name" : "Montana"}, "city" : "East Helena", "type" : "STANDARD", "lng" : -111.825864, "counties" : [{"fips" : "007", "name" : "Broadwater County"}, {"fips" : "043", "name" : "Jefferson County"}, {"fips" : "049", "name" : "Lewis and Clark County"}]} | json_instruct | {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Symmetric Graph Regularized Constraint Propagation.", "fields" : ["local consistency", "lyapunov function", "constraint logic programming", "constraint graph", "symmetric graph"], "abstract" : "This paper presents a novel symmetric graph regularization framework for pairwise constraint propagation. We first decompose the challenging problem of pair-wise constraint propagation into a series of two-class label propagation subproblems and then deal with these subproblems by quadratic optimization with symmetric graph regularization. More importantly, we clearly show that pairwise constraint propagation is actually equivalent to solving a Lyapunov matrix equation, which is widely used in Control Theory as a standard continuous-time equation. Different from most previous constraint propagation methods that suffer from severe limitations, our method can directly be applied to multi-class problem and also can effectively exploit both must-link and cannot-link constraints. The propagated constraints are further used to adjust the similarity between data points so that they can be incorporated into subsequent clustering. The proposed method has been tested in clustering tasks on six real-life data sets and then shown to achieve significant improvements with respect to the state of the arts.", "citation" : "Citations (13)", "departments" : ["City University of Hong Kong", "Peking University", "City University of Hong Kong", "Peking University", "Shanghai Jiao Tong University"], "authors" : ["Zhenyong Fu.....http://dblp.org/pers/hd/f/Fu:Zhenyong", "Zhiwu Lu.....http://dblp.org/pers/hd/l/Lu:Zhiwu", "Horace Ho-Shing Ip.....http://dblp.org/pers/hd/i/Ip:Horace_Ho=Shing", "Yuxin Peng.....http://dblp.org/pers/hd/p/Peng:Yuxin", "Hongtao Lu.....http://dblp.org/pers/hd/l/Lu:Hongtao"], "conf" : "aaai", "year" : "2011", "pages" : -1} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "img": {"type": "string"}, "img2x": {"type": "string"}}, "required": ["id", "name", "img", "img2x"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 1, "name" : "Single Carport", "img" : "../img/buildings-img-1.jpg", "img2x" : "img/buildings-img-1@2x.jpg"}, {"id" : 2, "name" : "Double Carport", "img" : "img/buildings-img-2.jpg", "img2x" : "img/buildings-img-2@2x.jpg"}, {"id" : 3, "name" : "Triple Wide Carport", "img" : "img/buildings-img-3.jpg", "img2x" : "img/buildings-img-3@2x.jpg"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "img": {"type": "string"}, "img2x": {"type": "string"}}, "required": ["id", "name", "img", "img2x"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "150271010", "text" : "\u7a00\u571f\u8def\u8857\u9053\u529e\u4e8b\u5904"}, {"id" : "150271020", "text" : "\u6c11\u99a8\u8def\u8857\u9053\u529e\u4e8b\u5904"}, {"id" : "150271102", "text" : "\u4e07\u6c34\u6cc9\u9547"}] | 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#"} |
Create an example JSON object that satisfies this schema:
{"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" : 1990, "sex" : "F", "n" : 8, "prop" : 3.89e-06}, {"year" : 1991, "sex" : "F", "n" : 10, "prop" : 4.92e-06}, {"year" : 1992, "sex" : "F", "n" : 5, "prop" : 2.49e-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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rustc" : 7151530983591731262, "features" : "[]", "target" : 10429514197457385088, "profile" : 2574335274271406459, "path" : 14320731326142662462, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "release/.fingerprint/wasm-bindgen-shared-7c052c1c03ceeba6/dep-build-script-build_script_build-7c052c1c03ceeba6"}}], "rustflags" : [], "metadata" : 4905702609766663142} | json_instruct | {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "url": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "stringency": {"type": "string"}, "element": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "path": {"type": "string"}, "short": {"type": "string"}, "definition": {"type": "string"}, "comment": {"type": "string"}, "min": {"type": "integer"}, "max": {"type": "string"}, "type": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "targetProfile": {"type": "string"}}, "required": ["code", "targetProfile"]}}, "isSummary": {"type": "boolean"}, "mapping": {"type": "array", "items": {"type": "object", "properties": {"identity": {"type": "string"}, "map": {"type": "string"}}, "required": ["identity", "map"]}}}, "required": ["id", "path", "short", "definition", "comment", "min", "max", "type", "isSummary", "mapping"]}}}, "required": ["resourceType", "id", "meta", "url", "status", "experimental", "stringency", "element"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resourceType" : "DataElement", "id" : "OperationDefinition.base", "meta" : {"lastUpdated" : "2017-04-19T07:44:43.294+10:00"}, "url" : "http://hl7.org/fhir/DataElement/OperationDefinition.base", "status" : "draft", "experimental" : true, "stringency" : "fully-specified", "element" : [{"id" : "OperationDefinition.base", "path" : "OperationDefinition.base", "short" : "Marks this as a profile of the base", "definition" : "Indicates that this operation definition is a constraining profile on the base.", "comment" : "A constrained profile can make optional parameters required or not used and clarify documentation.", "min" : 0, "max" : "1", "type" : [{"code" : "Reference", "targetProfile" : "http://hl7.org/fhir/StructureDefinition/OperationDefinition"}], "isSummary" : true, "mapping" : [{"identity" : "workflow", "map" : "Definition.definition"}]}]} | json_instruct | {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "url": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "stringency": {"type": "string"}, "element": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "path": {"type": "string"}, "short": {"type": "string"}, "definition": {"type": "string"}, "comment": {"type": "string"}, "min": {"type": "integer"}, "max": {"type": "string"}, "type": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "targetProfile": {"type": "string"}}, "required": ["code", "targetProfile"]}}, "isSummary": {"type": "boolean"}, "mapping": {"type": "array", "items": {"type": "object", "properties": {"identity": {"type": "string"}, "map": {"type": "string"}}, "required": ["identity", "map"]}}}, "required": ["id", "path", "short", "definition", "comment", "min", "max", "type", "isSummary", "mapping"]}}}, "required": ["resourceType", "id", "meta", "url", "status", "experimental", "stringency", "element"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"gotour/local.go": {"type": "object", "properties": {"status": {"type": "string"}, "num_chunks": {"type": "integer"}, "no_base_file": {"type": "boolean"}, "property_changes": {"type": "string"}, "num_added": {"type": "integer"}, "num_removed": {"type": "integer"}, "id": {"type": "integer"}, "is_binary": {"type": "boolean"}}, "required": ["status", "num_chunks", "no_base_file", "property_changes", "num_added", "num_removed", "id", "is_binary"]}}, "required": ["gotour/local.go"]}, "url": {"type": "null"}, "created": {"type": "string"}, "owner": {"type": "string"}, "num_comments": {"type": "integer"}, "patchset": {"type": "integer"}, "owner_email": {"type": "string"}, "issue": {"type": "integer"}, "message": {"type": "string"}, "modified": {"type": "string"}}, "required": ["files", "url", "created", "owner", "num_comments", "patchset", "owner_email", "issue", "message", "modified"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"files" : {"gotour/local.go" : {"status" : "M", "num_chunks" : 4, "no_base_file" : false, "property_changes" : "", "num_added" : 27, "num_removed" : 13, "id" : 3001, "is_binary" : false}}, "url" : null, "created" : "2012-02-12 03:43:24.020337", "owner" : "adg", "num_comments" : 2, "patchset" : 1002, "owner_email" : "adg@golang.org", "issue" : 5655060, "message" : "diff -r 5358e6a11a42 https://code.google.com/p/go-tour", "modified" : "2012-02-12 03:51:22.627225"} | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"gotour/local.go": {"type": "object", "properties": {"status": {"type": "string"}, "num_chunks": {"type": "integer"}, "no_base_file": {"type": "boolean"}, "property_changes": {"type": "string"}, "num_added": {"type": "integer"}, "num_removed": {"type": "integer"}, "id": {"type": "integer"}, "is_binary": {"type": "boolean"}}, "required": ["status", "num_chunks", "no_base_file", "property_changes", "num_added", "num_removed", "id", "is_binary"]}}, "required": ["gotour/local.go"]}, "url": {"type": "null"}, "created": {"type": "string"}, "owner": {"type": "string"}, "num_comments": {"type": "integer"}, "patchset": {"type": "integer"}, "owner_email": {"type": "string"}, "issue": {"type": "integer"}, "message": {"type": "string"}, "modified": {"type": "string"}}, "required": ["files", "url", "created", "owner", "num_comments", "patchset", "owner_email", "issue", "message", "modified"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "BANYUMAS", "originalFilename" : "IMG-20180715-WA0019.jpg", "namaPartai" : "Partai Solidaritas Indonesia", "id" : 201929, "noUrut" : 1, "nama" : "dr. TJANDRA HERLAMBANG", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "BANYUMAS", "originalFilename" : "Restiana.jpeg", "namaPartai" : "Partai Solidaritas Indonesia", "id" : 270213, "noUrut" : 2, "nama" : "RESTIANA", "stringJenisKelamin" : "Perempuan"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"minimum-net-dwellings": {"type": "string"}, "notes": {"type": "string"}, "point": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "deliverable": {"type": "string"}, "planning-permission-status": {"type": "string"}, "site-address": {"type": "string"}, "site-plan-url": {"type": "string"}, "hectares": {"type": "string"}, "site": {"type": "string"}, "organisation": {"type": "string"}, "ownership-status": {"type": "string"}, "name": {"type": "string"}, "start-date": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["minimum-net-dwellings", "notes", "point", "maximum-net-dwellings", "deliverable", "planning-permission-status", "site-address", "site-plan-url", "hectares", "site", "organisation", "ownership-status", "name", "start-date", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-2.29026, 53.7039]}, "properties" : {"minimum-net-dwellings" : "18", "notes" : "Local Plan Reg 18 consultation response proposed new residential allocation for up to 25 dwellings and referred to pre application discussion", "point" : "POINT(-2.29026 53.7039)", "maximum-net-dwellings" : "18", "deliverable" : "yes", "planning-permission-status" : "not permissioned", "site-address" : "FMR OAKENHEAD RESOURCE CENTRE, RAWTENSTALL", "site-plan-url" : "https://www.rossendale.gov.uk/downloads/download/10897/brownfield_register", "hectares" : "0.68", "site" : "ROSBS021", "organisation" : "local-authority-eng:ROS", "ownership-status" : "not owned by a public authority", "name" : "ROSBS021", "start-date" : "2017-12-15", "slug" : "/brownfield-land/local-authority-eng/ROS/ROSBS021", "entity" : 491669, "entry-date" : "2017-12-15"}} | json_instruct | {"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": {"minimum-net-dwellings": {"type": "string"}, "notes": {"type": "string"}, "point": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "deliverable": {"type": "string"}, "planning-permission-status": {"type": "string"}, "site-address": {"type": "string"}, "site-plan-url": {"type": "string"}, "hectares": {"type": "string"}, "site": {"type": "string"}, "organisation": {"type": "string"}, "ownership-status": {"type": "string"}, "name": {"type": "string"}, "start-date": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["minimum-net-dwellings", "notes", "point", "maximum-net-dwellings", "deliverable", "planning-permission-status", "site-address", "site-plan-url", "hectares", "site", "organisation", "ownership-status", "name", "start-date", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-redux": {"type": "string"}, "redux": {"type": "string"}, "redux-form": {"type": "string"}, "redux-thunk": {"type": "string"}}, "required": ["axios", "react", "react-dom", "react-redux", "redux", "redux-form", "redux-thunk"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-plugin-transform-decorators-legacy": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-react": {"type": "string"}, "babel-preset-stage-0": {"type": "string"}, "babel-preset-stage-1": {"type": "string"}, "babel-preset-stage-2": {"type": "string"}, "babel-preset-stage-3": {"type": "string"}, "redux-devtools": {"type": "string"}, "redux-devtools-dock-monitor": {"type": "string"}, "redux-devtools-log-monitor": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-plugin-transform-decorators-legacy", "babel-preset-es2015", "babel-preset-react", "babel-preset-stage-0", "babel-preset-stage-1", "babel-preset-stage-2", "babel-preset-stage-3", "redux-devtools", "redux-devtools-dock-monitor", "redux-devtools-log-monitor", "webpack"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Denshobato", "version" : "0.1.0", "description" : "Denshobato messaging panel", "main" : "denshobato.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Eugene Domosedov (ID25)", "license" : "MIT", "dependencies" : {"axios" : "^0.8.1", "react" : "^0.14.3", "react-dom" : "0.14.0", "react-redux" : "^4.0.6", "redux" : "^3.0.4", "redux-form" : "^4.1.1", "redux-thunk" : "^0.1.0"}, "devDependencies" : {"babel-core" : "latest", "babel-loader" : "latest", "babel-plugin-transform-decorators-legacy" : "^1.3.4", "babel-preset-es2015" : "latest", "babel-preset-react" : "latest", "babel-preset-stage-0" : "latest", "babel-preset-stage-1" : "latest", "babel-preset-stage-2" : "latest", "babel-preset-stage-3" : "latest", "redux-devtools" : "^3.0.1", "redux-devtools-dock-monitor" : "^1.0.1", "redux-devtools-log-monitor" : "^1.0.1", "webpack" : "^1.12.9"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-redux": {"type": "string"}, "redux": {"type": "string"}, "redux-form": {"type": "string"}, "redux-thunk": {"type": "string"}}, "required": ["axios", "react", "react-dom", "react-redux", "redux", "redux-form", "redux-thunk"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-plugin-transform-decorators-legacy": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-react": {"type": "string"}, "babel-preset-stage-0": {"type": "string"}, "babel-preset-stage-1": {"type": "string"}, "babel-preset-stage-2": {"type": "string"}, "babel-preset-stage-3": {"type": "string"}, "redux-devtools": {"type": "string"}, "redux-devtools-dock-monitor": {"type": "string"}, "redux-devtools-log-monitor": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-plugin-transform-decorators-legacy", "babel-preset-es2015", "babel-preset-react", "babel-preset-stage-0", "babel-preset-stage-1", "babel-preset-stage-2", "babel-preset-stage-3", "redux-devtools", "redux-devtools-dock-monitor", "redux-devtools-log-monitor", "webpack"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"rows": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["key", "value"]}}}, "required": ["rows"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rows" : [{"key" : "010000", "value" : {"name" : "AVEIRO"}}, {"key" : "020000", "value" : {"name" : "BEJA"}}, {"key" : "030000", "value" : {"name" : "BRAGA"}}, {"key" : "040000", "value" : {"name" : "BRAGAN\u00c7A"}}, {"key" : "050000", "value" : {"name" : "CASTELO BRANCO"}}, {"key" : "060000", "value" : {"name" : "COIMBRA"}}, {"key" : "070000", "value" : {"name" : "\u00c9VORA"}}, {"key" : "080000", "value" : {"name" : "FARO"}}, {"key" : "090000", "value" : {"name" : "GUARDA"}}, {"key" : "100000", "value" : {"name" : "LEIRIA"}}, {"key" : "110000", "value" : {"name" : "LISBOA"}}, {"key" : "120000", "value" : {"name" : "PORTALEGRE"}}, {"key" : "130000", "value" : {"name" : "PORTO"}}, {"key" : "140000", "value" : {"name" : "SANTAR\u00c9M"}}, {"key" : "150000", "value" : {"name" : "SET\u00daBAL"}}, {"key" : "160000", "value" : {"name" : "VIANA DO CASTELO"}}, {"key" : "170000", "value" : {"name" : "VILA REAL"}}, {"key" : "180000", "value" : {"name" : "VISEU"}}, {"key" : "300000", "value" : {"name" : "MADEIRA"}}, {"key" : "400000", "value" : {"name" : "A\u00c7ORES"}}]} | json_instruct | {"type": "object", "properties": {"rows": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["key", "value"]}}}, "required": ["rows"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"900671909": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900671910": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900671911": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900671912": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900671913": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900671914": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900671909", "900671910", "900671911", "900671912", "900671913", "900671914"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900671909" : {"nama" : "TPS 1", "dapil" : [6201, 16202, 2620702]}, "900671910" : {"nama" : "TPS 2", "dapil" : [6201, 16202, 2620702]}, "900671911" : {"nama" : "TPS 3", "dapil" : [6201, 16202, 2620702]}, "900671912" : {"nama" : "TPS 4", "dapil" : [6201, 16202, 2620702]}, "900671913" : {"nama" : "TPS 5", "dapil" : [6201, 16202, 2620702]}, "900671914" : {"nama" : "TPS 6", "dapil" : [6201, 16202, 2620702]}} | json_instruct | {"type": "object", "properties": {"900671909": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900671910": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900671911": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900671912": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900671913": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900671914": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900671909", "900671910", "900671911", "900671912", "900671913", "900671914"], "$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"}, "authors": {"type": "object", "properties": {"Ali Karagoz": {"type": "string"}}, "required": ["Ali Karagoz"]}, "homepage": {"type": "string"}, "summary": {"type": "string"}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "license": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "null"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "authors", "homepage", "summary", "source", "license", "platforms", "source_files", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "AKSegmentedControl", "version" : "1.0.1", "authors" : {"Ali Karagoz" : "mail@alikaragoz.net"}, "homepage" : "https://github.com/alikaragoz/AKSegmentedControl", "summary" : "AKSegmentedControl is a fully customizable Segmented Control for iOS.", "source" : {"git" : "https://github.com/alikaragoz/AKSegmentedControl.git", "tag" : "1.0.1"}, "license" : "MIT", "platforms" : {"ios" : null}, "source_files" : "AKSegmentedControl", "requires_arc" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "object", "properties": {"Ali Karagoz": {"type": "string"}}, "required": ["Ali Karagoz"]}, "homepage": {"type": "string"}, "summary": {"type": "string"}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "license": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "null"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "authors", "homepage", "summary", "source", "license", "platforms", "source_files", "requires_arc"], "$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" : 2001, "sex" : "M", "n" : 6, "prop" : 2.9e-06}, {"year" : 2004, "sex" : "M", "n" : 5, "prop" : 2.37e-06}, {"year" : 2006, "sex" : "M", "n" : 7, "prop" : 3.2e-06}, {"year" : 2007, "sex" : "M", "n" : 6, "prop" : 2.71e-06}, {"year" : 2008, "sex" : "M", "n" : 5, "prop" : 2.3e-06}, {"year" : 2010, "sex" : "M", "n" : 11, "prop" : 5.36e-06}, {"year" : 2011, "sex" : "M", "n" : 58, "prop" : 0}, {"year" : 2012, "sex" : "M", "n" : 32, "prop" : 0}, {"year" : 2013, "sex" : "M", "n" : 46, "prop" : 0}, {"year" : 2014, "sex" : "M", "n" : 34, "prop" : 0}, {"year" : 2015, "sex" : "M", "n" : 15, "prop" : 7.36e-06}, {"year" : 2016, "sex" : "M", "n" : 29, "prop" : 0}, {"year" : 2017, "sex" : "M", "n" : 26, "prop" : 0}] | 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": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x6774ff11d7c45052235d052033b4cfd7f8adfb80", "tool" : "solhint", "start" : 1563343460.0208535, "end" : 1563343464.4495828, "duration" : 4.428729295730591, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[152.625, 25.333333333333332], [152.625, 25.416666666666668], [152.75, 25.416666666666668], [152.75, 25.333333333333332], [152.625, 25.333333333333332]]]}, "properties" : {"code" : 385205, "url" : "http://madefor.github.io/0410/api/v1/385205.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/385205.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"average-apm": {"type": "string"}, "highest-apm": {"type": "string"}, "win-loss": {"type": "string"}}, "required": ["average-apm", "highest-apm", "win-loss"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"slp-parser-js": {"type": "string"}}, "required": ["slp-parser-js"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "slippi-utilities", "version" : "1.0.0", "description" : "Some random utilities I'm writing for slippi", "main" : "index.js", "scripts" : {"average-apm" : "node average-apm.js", "highest-apm" : "node highest-apm.js", "win-loss" : "node win-loss.js"}, "author" : "Zyst", "license" : "MIT", "dependencies" : {"slp-parser-js" : "^3.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"average-apm": {"type": "string"}, "highest-apm": {"type": "string"}, "win-loss": {"type": "string"}}, "required": ["average-apm", "highest-apm", "win-loss"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"slp-parser-js": {"type": "string"}}, "required": ["slp-parser-js"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "gypfile": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"bindings": {"type": "string"}}, "required": ["bindings"]}}, "required": ["name", "version", "description", "main", "private", "scripts", "gypfile", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "native.js", "version" : "0.0.0", "description" : "Native Library for Nodejs", "main" : "native.js", "private" : true, "scripts" : {"test" : "node native.js"}, "gypfile" : true, "dependencies" : {"bindings" : "~1.2.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "gypfile": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"bindings": {"type": "string"}}, "required": ["bindings"]}}, "required": ["name", "version", "description", "main", "private", "scripts", "gypfile", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"package" : "perl-test-utf8", "downloads" : 2300, "count" : 2277}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "mappingIndex": {"type": "integer"}, "redacted": {"type": "boolean"}, "mappingHash": {"type": "integer"}, "isGlobal": {"type": "boolean"}}, "required": ["index", "hash", "blacklisted", "mappingIndex", "redacted", "mappingHash", "isGlobal"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 2402, "hash" : 2068727091, "blacklisted" : false, "mappingIndex" : 0, "redacted" : false, "mappingHash" : 0, "isGlobal" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "mappingIndex": {"type": "integer"}, "redacted": {"type": "boolean"}, "mappingHash": {"type": "integer"}, "isGlobal": {"type": "boolean"}}, "required": ["index", "hash", "blacklisted", "mappingIndex", "redacted", "mappingHash", "isGlobal"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"vorgangId": {"type": "string"}, "VORGANG": {"type": "object", "properties": {"WAHLPERIODE": {"type": "string"}, "VORGANGSTYP": {"type": "string"}, "TITEL": {"type": "string"}, "INITIATIVE": {"type": "string"}, "AKTUELLER_STAND": {"type": "string"}, "SIGNATUR": {"type": "string"}, "GESTA_ORDNUNGSNUMMER": {"type": "string"}, "WICHTIGE_DRUCKSACHE": {"type": "object", "properties": {"DRS_HERAUSGEBER": {"type": "string"}, "DRS_NUMMER": {"type": "string"}, "DRS_TYP": {"type": "string"}, "DRS_LINK": {"type": "string"}}, "required": ["DRS_HERAUSGEBER", "DRS_NUMMER", "DRS_TYP", "DRS_LINK"]}, "EU_DOK_NR": {"type": "string"}, "ABSTRAKT": {"type": "string"}}, "required": ["WAHLPERIODE", "VORGANGSTYP", "TITEL", "INITIATIVE", "AKTUELLER_STAND", "SIGNATUR", "GESTA_ORDNUNGSNUMMER", "WICHTIGE_DRUCKSACHE", "EU_DOK_NR", "ABSTRAKT"]}, "VORGANGSABLAUF": {"type": "object", "properties": {"VORGANGSPOSITION": {"type": "object", "properties": {"ZUORDNUNG": {"type": "string"}, "URHEBER": {"type": "string"}, "FUNDSTELLE": {"type": "string"}, "FUNDSTELLE_LINK": {"type": "string"}}, "required": ["ZUORDNUNG", "URHEBER", "FUNDSTELLE", "FUNDSTELLE_LINK"]}}, "required": ["VORGANGSPOSITION"]}}, "required": ["vorgangId", "VORGANG", "VORGANGSABLAUF"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vorgangId" : "38951", "VORGANG" : {"WAHLPERIODE" : "17", "VORGANGSTYP" : "EU-Vorlage", "TITEL" : "Empfehlung f\u00fcr eine Entscheidung des Rates zur Aufhebung des Beschlusses 2010/408/EU \u00fcber das Bestehen eines \u00fcberm\u00e4\u00dfigen Defizits in Finnland\r\nSEK(2011) 857 endg.; Ratsdok. 12340/11", "INITIATIVE" : "Bundestag", "AKTUELLER_STAND" : "Keine parlamentarische Behandlung", "SIGNATUR" : "", "GESTA_ORDNUNGSNUMMER" : "", "WICHTIGE_DRUCKSACHE" : {"DRS_HERAUSGEBER" : "BT", "DRS_NUMMER" : "17/6985", "DRS_TYP" : "Unterrichtung", "DRS_LINK" : "http://dipbt.bundestag.de:80/dip21/btd/17/069/1706985.pdf"}, "EU_DOK_NR" : "Ratsdok. 12340/11, Sek. (2011) 857 endg.", "ABSTRAKT" : ""}, "VORGANGSABLAUF" : {"VORGANGSPOSITION" : {"ZUORDNUNG" : "BT", "URHEBER" : "Unterrichtung: Keine Ausschuss\u00fcberweisung, Urheber : Bundestag ", "FUNDSTELLE" : "13.09.2011 - BT-Drucksache 17/6985, Nr. B.37", "FUNDSTELLE_LINK" : "http://dipbt.bundestag.de:80/dip21/btd/17/069/1706985.pdf"}}} | json_instruct | {"type": "object", "properties": {"vorgangId": {"type": "string"}, "VORGANG": {"type": "object", "properties": {"WAHLPERIODE": {"type": "string"}, "VORGANGSTYP": {"type": "string"}, "TITEL": {"type": "string"}, "INITIATIVE": {"type": "string"}, "AKTUELLER_STAND": {"type": "string"}, "SIGNATUR": {"type": "string"}, "GESTA_ORDNUNGSNUMMER": {"type": "string"}, "WICHTIGE_DRUCKSACHE": {"type": "object", "properties": {"DRS_HERAUSGEBER": {"type": "string"}, "DRS_NUMMER": {"type": "string"}, "DRS_TYP": {"type": "string"}, "DRS_LINK": {"type": "string"}}, "required": ["DRS_HERAUSGEBER", "DRS_NUMMER", "DRS_TYP", "DRS_LINK"]}, "EU_DOK_NR": {"type": "string"}, "ABSTRAKT": {"type": "string"}}, "required": ["WAHLPERIODE", "VORGANGSTYP", "TITEL", "INITIATIVE", "AKTUELLER_STAND", "SIGNATUR", "GESTA_ORDNUNGSNUMMER", "WICHTIGE_DRUCKSACHE", "EU_DOK_NR", "ABSTRAKT"]}, "VORGANGSABLAUF": {"type": "object", "properties": {"VORGANGSPOSITION": {"type": "object", "properties": {"ZUORDNUNG": {"type": "string"}, "URHEBER": {"type": "string"}, "FUNDSTELLE": {"type": "string"}, "FUNDSTELLE_LINK": {"type": "string"}}, "required": ["ZUORDNUNG", "URHEBER", "FUNDSTELLE", "FUNDSTELLE_LINK"]}}, "required": ["VORGANGSPOSITION"]}}, "required": ["vorgangId", "VORGANG", "VORGANGSABLAUF"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"skyblock_id": {"type": "string"}, "quantity": {"type": "string"}, "item_name": {"type": "string"}}, "required": ["skyblock_id", "quantity", "item_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"skyblock_id" : "LOG_2", "quantity" : "10", "item_name" : "Log 2"}, {"skyblock_id" : "LOG_2", "quantity" : "10", "item_name" : "Log 2"}, {"skyblock_id" : "LOG_2", "quantity" : "10", "item_name" : "Log 2"}, {"skyblock_id" : "LOG_2", "quantity" : "10", "item_name" : "Log 2"}, {"skyblock_id" : "WOOD_AXE", "quantity" : "1", "item_name" : "Wood axe"}, {"skyblock_id" : "LOG_2", "quantity" : "10", "item_name" : "Log 2"}, {"skyblock_id" : "LOG_2", "quantity" : "10", "item_name" : "Log 2"}, {"skyblock_id" : "LOG_2", "quantity" : "10", "item_name" : "Log 2"}, {"skyblock_id" : "LOG_2", "quantity" : "10", "item_name" : "Log 2"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"skyblock_id": {"type": "string"}, "quantity": {"type": "string"}, "item_name": {"type": "string"}}, "required": ["skyblock_id", "quantity", "item_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"files": {"type": "array", "items": {}}, "include": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}}, "required": ["files", "include", "references"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"files" : [], "include" : [], "references" : [{"path" : "./lib"}, {"path" : "./AggroMiner"}, {"path" : "./ArtilleryMicro"}, {"path" : "./MissileKite"}, {"path" : "./SmartMelee"}, {"path" : "./Sneaktillery"}, {"path" : "./ZapKite"}]} | json_instruct | {"type": "object", "properties": {"files": {"type": "array", "items": {}}, "include": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}}, "required": ["files", "include", "references"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"probe_id": {"type": "integer"}, "resolvers": {"type": "array", "items": {"type": "object", "properties": {"internal": {"type": "string"}, "resolver_asn": {"type": "integer"}, "edns0_client_subnet": {"type": "string"}, "resolver_net": {"type": "string"}}, "required": ["internal", "resolver_asn", "edns0_client_subnet", "resolver_net"]}}}, "required": ["probe_id", "resolvers"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"probe_id" : 24233, "resolvers" : [{"internal" : "208.67.222.222", "resolver_asn" : 36692, "edns0_client_subnet" : "128.199.235.0/24", "resolver_net" : "67.215.80.0/24"}, {"internal" : "172.31.255.254", "resolver_asn" : 36692, "edns0_client_subnet" : "128.199.235.0/24", "resolver_net" : "67.215.80.0/24"}, {"ipv6_tcp" : true, "resolver_asn" : 24940, "resolver_net" : "5.9.0.0/16", "ipv4_tcp" : true, "internal" : "5.9.49.12", "ipv6_cap" : true, "edns0_client_subnet" : "128.199.235.0/24"}]} | json_instruct | {"type": "object", "properties": {"probe_id": {"type": "integer"}, "resolvers": {"type": "array", "items": {"type": "object", "properties": {"internal": {"type": "string"}, "resolver_asn": {"type": "integer"}, "edns0_client_subnet": {"type": "string"}, "resolver_net": {"type": "string"}}, "required": ["internal", "resolver_asn", "edns0_client_subnet", "resolver_net"]}}}, "required": ["probe_id", "resolvers"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"People": {"type": "array", "items": {"type": "object", "properties": {"PersonID": {"type": "string"}, "PersonURI": {"type": "string"}, "SurrogateID": {"type": "string"}, "NumberOfSubscriptions": {"type": "integer"}, "SubscribingSince": {"type": "string"}, "NumberOfNotifications": {"type": "integer"}, "NotifyingSince": {"type": "string"}, "Created": {"type": "string"}, "LastModified": {"type": "string"}, "ModifiedBy": {"type": "null"}}, "required": ["PersonID", "PersonURI", "SurrogateID", "NumberOfSubscriptions", "SubscribingSince", "NumberOfNotifications", "NotifyingSince", "Created", "LastModified", "ModifiedBy"]}}}, "required": ["People"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"People" : [{"PersonID" : "9136CCB8F66711D5BE060004AC494FFE", "PersonURI" : "/notification/v1/person/9136CCB8F66711D5BE060004AC494FFE", "SurrogateID" : "javerage@washington.edu", "NumberOfSubscriptions" : 0, "SubscribingSince" : "2012-11-13T21:49:07.162630+00:00", "NumberOfNotifications" : 0, "NotifyingSince" : "2012-11-13T21:49:07.162630+00:00", "Created" : "2012-11-13 21:49:07.162630+00:00", "LastModified" : "2012-11-13 21:49:07.162630+00:00", "ModifiedBy" : null}]} | json_instruct | {"type": "object", "properties": {"People": {"type": "array", "items": {"type": "object", "properties": {"PersonID": {"type": "string"}, "PersonURI": {"type": "string"}, "SurrogateID": {"type": "string"}, "NumberOfSubscriptions": {"type": "integer"}, "SubscribingSince": {"type": "string"}, "NumberOfNotifications": {"type": "integer"}, "NotifyingSince": {"type": "string"}, "Created": {"type": "string"}, "LastModified": {"type": "string"}, "ModifiedBy": {"type": "null"}}, "required": ["PersonID", "PersonURI", "SurrogateID", "NumberOfSubscriptions", "SubscribingSince", "NumberOfNotifications", "NotifyingSince", "Created", "LastModified", "ModifiedBy"]}}}, "required": ["People"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"acno": {"type": "string"}, "all_artists": {"type": "string"}, "catalogueGroup": {"type": "object", "properties": {}, "required": []}, "classification": {"type": "string"}, "contributorCount": {"type": "integer"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "displayOrder": {"type": "integer"}, "fc": {"type": "string"}, "gender": {"type": "string"}, "id": {"type": "integer"}, "mda": {"type": "string"}, "role": {"type": "string"}}, "required": ["date", "displayOrder", "fc", "gender", "id", "mda", "role"]}}, "creditLine": {"type": "string"}, "dateRange": {"type": "object", "properties": {"startYear": {"type": "integer"}, "text": {"type": "string"}}, "required": ["startYear", "text"]}, "dateText": {"type": "string"}, "depth": {"type": "string"}, "dimensions": {"type": "string"}, "foreignTitle": {"type": "null"}, "groupTitle": {"type": "null"}, "height": {"type": "string"}, "id": {"type": "integer"}, "inscription": {"type": "null"}, "medium": {"type": "string"}, "movementCount": {"type": "integer"}, "subjectCount": {"type": "integer"}, "thumbnailUrl": {"type": "string"}, "title": {"type": "string"}, "units": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "string"}}, "required": ["acno", "all_artists", "catalogueGroup", "classification", "contributorCount", "contributors", "creditLine", "dateRange", "dateText", "depth", "dimensions", "foreignTitle", "groupTitle", "height", "id", "inscription", "medium", "movementCount", "subjectCount", "thumbnailUrl", "title", "units", "url", "width"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"acno" : "T04146", "all_artists" : "Naum Gabo", "catalogueGroup" : {}, "classification" : "sculpture", "contributorCount" : 1, "contributors" : [{"date" : "1890\u20131977", "displayOrder" : 1, "fc" : "Naum Gabo", "gender" : "Male", "id" : 1137, "mda" : "Gabo, Naum", "role" : "artist"}], "creditLine" : "Presented by Nina Williams, the artist's daughter and her husband Graham Williams 1986", "dateRange" : {"startYear" : 1926, "text" : "1926-7"}, "dateText" : "1926\u20137", "depth" : "547", "dimensions" : "object: 603 x 801 x 547 mm", "foreignTitle" : null, "groupTitle" : null, "height" : "801", "id" : 4877, "inscription" : null, "medium" : "Plastic, wood, metal and fabric", "movementCount" : 0, "subjectCount" : 0, "thumbnailUrl" : "", "title" : "Model for the Set of 'La Chatte'", "units" : "mm", "url" : "http://www.tate.org.uk/art/artworks/gabo-model-for-the-set-of-la-chatte-t04146", "width" : "603"} | json_instruct | {"type": "object", "properties": {"acno": {"type": "string"}, "all_artists": {"type": "string"}, "catalogueGroup": {"type": "object", "properties": {}, "required": []}, "classification": {"type": "string"}, "contributorCount": {"type": "integer"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "displayOrder": {"type": "integer"}, "fc": {"type": "string"}, "gender": {"type": "string"}, "id": {"type": "integer"}, "mda": {"type": "string"}, "role": {"type": "string"}}, "required": ["date", "displayOrder", "fc", "gender", "id", "mda", "role"]}}, "creditLine": {"type": "string"}, "dateRange": {"type": "object", "properties": {"startYear": {"type": "integer"}, "text": {"type": "string"}}, "required": ["startYear", "text"]}, "dateText": {"type": "string"}, "depth": {"type": "string"}, "dimensions": {"type": "string"}, "foreignTitle": {"type": "null"}, "groupTitle": {"type": "null"}, "height": {"type": "string"}, "id": {"type": "integer"}, "inscription": {"type": "null"}, "medium": {"type": "string"}, "movementCount": {"type": "integer"}, "subjectCount": {"type": "integer"}, "thumbnailUrl": {"type": "string"}, "title": {"type": "string"}, "units": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "string"}}, "required": ["acno", "all_artists", "catalogueGroup", "classification", "contributorCount", "contributors", "creditLine", "dateRange", "dateText", "depth", "dimensions", "foreignTitle", "groupTitle", "height", "id", "inscription", "medium", "movementCount", "subjectCount", "thumbnailUrl", "title", "units", "url", "width"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"out": {"type": "array", "items": {"type": "string"}}}, "required": ["out"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"out" : ["/lib/cups/filter/raster2dymolm", "/lib/cups/filter/raster2dymolw", "/share/cups/model/lm400.ppd", "/share/cups/model/lm450.ppd", "/share/cups/model/lmpc.ppd", "/share/cups/model/lmpc2.ppd", "/share/cups/model/lmpnp.ppd", "/share/cups/model/lp350.ppd", "/share/cups/model/lw300.ppd", "/share/cups/model/lw310.ppd", "/share/cups/model/lw315.ppd", "/share/cups/model/lw320.ppd", "/share/cups/model/lw330.ppd", "/share/cups/model/lw330t.ppd", "/share/cups/model/lw400.ppd", "/share/cups/model/lw400t.ppd", "/share/cups/model/lw450.ppd", "/share/cups/model/lw450dl.ppd", "/share/cups/model/lw450dt.ppd", "/share/cups/model/lw450t.ppd", "/share/cups/model/lw450tt.ppd", "/share/cups/model/lw4xl.ppd", "/share/cups/model/lwduol.ppd", "/share/cups/model/lwduot.ppd", "/share/cups/model/lwduot2.ppd", "/share/cups/model/lwtt.ppd", "/share/cups/model/se450.ppd"]} | json_instruct | {"type": "object", "properties": {"out": {"type": "array", "items": {"type": "string"}}}, "required": ["out"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "support": {"type": "object", "properties": {"source": {"type": "string"}}, "required": ["source"]}, "require": {"type": "object", "properties": {"google/recaptcha": {"type": "string"}, "php": {"type": "string"}}, "required": ["google/recaptcha", "php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"FRTemplate\\": {"type": "string"}}, "required": ["FRTemplate\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "homepage", "license", "authors", "support", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dandersson/FRTemplate", "description" : "Small web-site framework.", "homepage" : "https://github.com/dandersson/FRTemplate", "license" : "Apache-2.0", "authors" : [{"name" : "Daniel Andersson", "homepage" : "http://510x.se/"}], "support" : {"source" : "https://github.com/dandersson/FRTemplate"}, "require" : {"google/recaptcha" : "~1.1", "php" : ">=5.5.0"}, "autoload" : {"psr-4" : {"FRTemplate\\" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "support": {"type": "object", "properties": {"source": {"type": "string"}}, "required": ["source"]}, "require": {"type": "object", "properties": {"google/recaptcha": {"type": "string"}, "php": {"type": "string"}}, "required": ["google/recaptcha", "php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"FRTemplate\\": {"type": "string"}}, "required": ["FRTemplate\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "homepage", "license", "authors", "support", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"componentType": {"type": "string"}, "name": {"type": "string"}, "events": {"type": "object", "properties": {"onClick": {"type": "object", "properties": {"action": {"type": "string"}, "parameters": {"type": "object", "properties": {"model": {"type": "string"}, "id": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "fields": {"type": "object", "properties": {"firstName": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "lastName": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}}, "required": ["firstName", "lastName"]}}, "required": ["model", "id", "fields"]}}, "required": ["action", "parameters"]}}, "required": ["onClick"]}, "properties": {"type": "object", "properties": {"children": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}}, "required": ["children"]}, "schemaVersion": {"type": "string"}}, "required": ["componentType", "name", "events", "properties", "schemaVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"componentType" : "Button", "name" : "UpdateCustomerButton", "events" : {"onClick" : {"action" : "Amplify.DataStoreUpdateItemAction", "parameters" : {"model" : "Customer", "id" : {"value" : "d9887268-47dd-4899-9568-db5809218751"}, "fields" : {"firstName" : {"value" : "Din"}, "lastName" : {"value" : "Djarin"}}}}}, "properties" : {"children" : {"value" : "Update"}}, "schemaVersion" : "1.0"} | json_instruct | {"type": "object", "properties": {"componentType": {"type": "string"}, "name": {"type": "string"}, "events": {"type": "object", "properties": {"onClick": {"type": "object", "properties": {"action": {"type": "string"}, "parameters": {"type": "object", "properties": {"model": {"type": "string"}, "id": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "fields": {"type": "object", "properties": {"firstName": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "lastName": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}}, "required": ["firstName", "lastName"]}}, "required": ["model", "id", "fields"]}}, "required": ["action", "parameters"]}}, "required": ["onClick"]}, "properties": {"type": "object", "properties": {"children": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}}, "required": ["children"]}, "schemaVersion": {"type": "string"}}, "required": ["componentType", "name", "events", "properties", "schemaVersion"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"imageNotFound": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}}, "required": ["imageNotFound", "user", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"imageNotFound" : "I was unable to get an avatar for {{value}}.", "user" : "I couldn't resolve `{{parameter}}` to a user. Please check if it's valid.", "url" : "You provided an invalid url."} | json_instruct | {"type": "object", "properties": {"imageNotFound": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}}, "required": ["imageNotFound", "user", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"stof/doctrine-extensions-bundle": {"type": "string"}, "jms/serializer-bundle": {"type": "string"}, "lexik/jwt-authentication-bundle": {"type": "string"}, "gesdinet/jwt-refresh-token-bundle": {"type": "string"}, "friendsofsymfony/rest-bundle": {"type": "string"}, "symfony/orm-pack": {"type": "string"}, "symfony/framework-bundle": {"type": "string"}, "nelmio/cors-bundle": {"type": "string"}}, "required": ["stof/doctrine-extensions-bundle", "jms/serializer-bundle", "lexik/jwt-authentication-bundle", "gesdinet/jwt-refresh-token-bundle", "friendsofsymfony/rest-bundle", "symfony/orm-pack", "symfony/framework-bundle", "nelmio/cors-bundle"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Comsa\\BookingBundle\\": {"type": "string"}}, "required": ["Comsa\\BookingBundle\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "comsa/booking-bundle", "description" : "A booking bundle with admin panel", "type" : "symfony-bundle", "authors" : [{"name" : "Ciryk Popeye", "email" : "ciryk@hotmail.be"}], "require" : {"stof/doctrine-extensions-bundle" : "^1.3", "jms/serializer-bundle" : "^2.4", "lexik/jwt-authentication-bundle" : "^2.6", "gesdinet/jwt-refresh-token-bundle" : "^0.6.2", "friendsofsymfony/rest-bundle" : "^2.5", "symfony/orm-pack" : "^1.0", "symfony/framework-bundle" : "3.4.14", "nelmio/cors-bundle" : "^1.5"}, "autoload" : {"psr-4" : {"Comsa\\BookingBundle\\" : "./"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"stof/doctrine-extensions-bundle": {"type": "string"}, "jms/serializer-bundle": {"type": "string"}, "lexik/jwt-authentication-bundle": {"type": "string"}, "gesdinet/jwt-refresh-token-bundle": {"type": "string"}, "friendsofsymfony/rest-bundle": {"type": "string"}, "symfony/orm-pack": {"type": "string"}, "symfony/framework-bundle": {"type": "string"}, "nelmio/cors-bundle": {"type": "string"}}, "required": ["stof/doctrine-extensions-bundle", "jms/serializer-bundle", "lexik/jwt-authentication-bundle", "gesdinet/jwt-refresh-token-bundle", "friendsofsymfony/rest-bundle", "symfony/orm-pack", "symfony/framework-bundle", "nelmio/cors-bundle"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Comsa\\BookingBundle\\": {"type": "string"}}, "required": ["Comsa\\BookingBundle\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "spud", "definition" : "1. A sharp, narrow spade, usually with a long handle, used by farmers for digging up large-rooted weeds; a similarly shaped implement used for various purposes. My spud these nettles from the stone can part. Swyft. 2. A dagger. [Obs.] olland. 3. Anything short and thick; specifically, a piece of dough boiled in fat. [Local, U.S.]"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"salesforcedx-vscode-core.push-or-deploy-on-save.enabled": {"type": "boolean"}, "search.exclude": {"type": "object", "properties": {"**/node_modules": {"type": "boolean"}, "**/bower_components": {"type": "boolean"}, "**/.sfdx": {"type": "boolean"}}, "required": ["**/node_modules", "**/bower_components", "**/.sfdx"]}, "uncrustify.langOverrides": {"type": "object", "properties": {"apex": {"type": "string"}, "apex-anon": {"type": "string"}}, "required": ["apex", "apex-anon"]}, "salesforcedx-vscode-core.show-cli-success-msg": {"type": "boolean"}}, "required": ["salesforcedx-vscode-core.push-or-deploy-on-save.enabled", "search.exclude", "uncrustify.langOverrides", "salesforcedx-vscode-core.show-cli-success-msg"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"salesforcedx-vscode-core.push-or-deploy-on-save.enabled" : true, "search.exclude" : {"**/node_modules" : true, "**/bower_components" : true, "**/.sfdx" : true}, "uncrustify.langOverrides" : {"apex" : "JAVA", "apex-anon" : "JAVA"}, "salesforcedx-vscode-core.show-cli-success-msg" : false} | json_instruct | {"type": "object", "properties": {"salesforcedx-vscode-core.push-or-deploy-on-save.enabled": {"type": "boolean"}, "search.exclude": {"type": "object", "properties": {"**/node_modules": {"type": "boolean"}, "**/bower_components": {"type": "boolean"}, "**/.sfdx": {"type": "boolean"}}, "required": ["**/node_modules", "**/bower_components", "**/.sfdx"]}, "uncrustify.langOverrides": {"type": "object", "properties": {"apex": {"type": "string"}, "apex-anon": {"type": "string"}}, "required": ["apex", "apex-anon"]}, "salesforcedx-vscode-core.show-cli-success-msg": {"type": "boolean"}}, "required": ["salesforcedx-vscode-core.push-or-deploy-on-save.enabled", "search.exclude", "uncrustify.langOverrides", "salesforcedx-vscode-core.show-cli-success-msg"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "360822110001", "text" : "\u767d\u6c99\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "360822110200", "text" : "\u6cb3\u53e3\u6751\u59d4\u4f1a"}, {"id" : "360822110201", "text" : "\u9752\u534e\u6751\u59d4\u4f1a"}, {"id" : "360822110202", "text" : "\u5927\u9f99\u6751\u59d4\u4f1a"}, {"id" : "360822110203", "text" : "\u98de\u884c\u6751\u59d4\u4f1a"}, {"id" : "360822110204", "text" : "\u5b89\u576a\u6751\u59d4\u4f1a"}, {"id" : "360822110205", "text" : "\u8d64\u5cb8\u6751\u59d4\u4f1a"}, {"id" : "360822110206", "text" : "\u6728\u53e3\u6751\u59d4\u4f1a"}, {"id" : "360822110207", "text" : "\u672c\u6ee9\u6751\u59d4\u4f1a"}, {"id" : "360822110208", "text" : "\u94f6\u7530\u6751\u59d4\u4f1a"}, {"id" : "360822110209", "text" : "\u5357\u576a\u6751\u59d4\u4f1a"}, {"id" : "360822110210", "text" : "\u4e0a\u7530\u6751\u59d4\u4f1a"}, {"id" : "360822110211", "text" : "\u767d\u6c99\u6751\u59d4\u4f1a"}, {"id" : "360822110212", "text" : "\u5e84\u53e3\u6751\u59d4\u4f1a"}, {"id" : "360822110213", "text" : "\u957f\u57e0\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "0x6c5fefa01dea2f49386c5cd43de51ef546ec420a0b7343b4a37d119e242f5834", "title" : "cake\u65b0ifo\u503c\u5f97\u5237\u5417\uff1f", "body" : "", "choices" : ["\u503c\u5f97\u51b2\u51b2\u51b2\uff01\uff01", "\u4e0d\u503c\u5feb\u8dd1\uff01\uff01"], "start" : 1636910400, "end" : 1636911000, "snapshot" : "12647317", "state" : "closed", "author" : "0xee93CdE6e4799B0FE5920C3f02e4cFEfbD39ff80", "space" : {"id" : "pancake", "name" : "PancakeSwap"}, "votes" : 0, "votes_data" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 2486, "surahNumber" : "021", "ayatNumber" : "003", "arabic" : "\u0644\u064e\u0627\u0647\u0650\u064a\u064e\u0629\u064b \u0642\u064f\u0644\u064f\u0648\u0628\u064f\u0647\u064f\u0645\u0652 \u06d7 \u0648\u064e\u0623\u064e\u0633\u064e\u0631\u0651\u064f\u0648\u0627 \u0627\u0644\u0646\u0651\u064e\u062c\u0652\u0648\u064e\u0649 \u0627\u0644\u0651\u064e\u0630\u0650\u064a\u0646\u064e \u0638\u064e\u0644\u064e\u0645\u064f\u0648\u0627 \u0647\u064e\u0644\u0652 \u0647\u064e\u0670\u0630\u064e\u0627 \u0625\u0650\u0644\u0651\u064e\u0627 \u0628\u064e\u0634\u064e\u0631\u064c \u0645\u0650\u062b\u0652\u0644\u064f\u0643\u064f\u0645\u0652 \u06d6 \u0623\u064e\u0641\u064e\u062a\u064e\u0623\u0652\u062a\u064f\u0648\u0646\u064e \u0627\u0644\u0633\u0651\u0650\u062d\u0652\u0631\u064e \u0648\u064e\u0623\u064e\u0646\u0652\u062a\u064f\u0645\u0652 \u062a\u064f\u0628\u0652\u0635\u0650\u0631\u064f\u0648\u0646\u064e", "english" : "With their hearts occupied (with evil things) those who do wrong, conceal their private counsels, (saying): \"Is this (Muhammad SAW) more than a human being like you? Will you submit to magic while you see it?\"", "bengali" : "\u09a4\u09be\u09a6\u09c7\u09b0 \u0985\u09a8\u09cd\u09a4\u09b0 \u09a5\u09be\u0995\u09c7 \u0996\u09c7\u09b2\u09be\u09df \u09ae\u09a4\u09cd\u09a4\u0964 \u099c\u09be\u09b2\u09c7\u09ae\u09b0\u09be \u0997\u09c7\u09be\u09aa\u09a8\u09c7 \u09aa\u09b0\u09be\u09ae\u09b0\u09cd\u09b6 \u0995\u09b0\u09c7, \u09b8\u09c7 \u09a4\u09c7\u09be \u09a4\u09c7\u09be\u09ae\u09be\u09a6\u09c7\u09b0\u0987 \u09ae\u09a4 \u098f\u0995\u099c\u09a8 \u09ae\u09be\u09a8\u09c1\u09b7; \u098f\u09ae\u09a4\u09be\u09ac\u09b8\u09cd\u09a5\u09be\u09df \u09a6\u09c7\u0996\u09c7 \u09b6\u09c1\u09a8\u09c7 \u09a4\u09c7\u09be\u09ae\u09b0\u09be \u09a4\u09be\u09b0 \u09af\u09be\u09a6\u09c1\u09b0 \u0995\u09ac\u09b2\u09c7 \u0995\u09c7\u09a8 \u09aa\u09dc?"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"preview-faq.title": {"type": "string"}}, "required": ["preview-faq.title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"preview-faq.title" : "Scratch 3.0 Preview \u010casto kladen\u00e9 ot\u00e1zky"} | json_instruct | {"type": "object", "properties": {"preview-faq.title": {"type": "string"}}, "required": ["preview-faq.title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"appref": {"type": "string"}}, "required": ["appref"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"appref" : "v1.5.46"} | json_instruct | {"type": "object", "properties": {"appref": {"type": "string"}}, "required": ["appref"], "$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.