input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "object", "properties": {"typewriter": {"type": "object", "properties": {"speed": {"type": "number"}, "speedUp": {"type": "number"}}, "required": ["speed", "speedUp"]}, "say": {"type": "string"}}, "required": ["typewriter", "say"]}}, "id": {"type": "string"}, "mode": {"type": "integer"}, "once": {"type": "boolean"}, "fadein": {"type": "number"}}, "required": ["scripts", "id", "mode", "once", "fadein"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"scripts" : [{"typewriter" : {"speed" : 0.05, "speedUp" : 0.01}, "say" : "\u6d77\u8ecd\u98df\u5802\u5927\u98df\u3044\u7af6\u4e89\u3067\u5165\u8cde\uff01\u300c\u71c3\u6599*100\u300d\u3092\u624b\u306b\u5165\u308c\u305f\uff01"}], "id" : "DAFUWENGEVENT2-3", "mode" : 2, "once" : true, "fadein" : 1.5} | json_instruct | {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "object", "properties": {"typewriter": {"type": "object", "properties": {"speed": {"type": "number"}, "speedUp": {"type": "number"}}, "required": ["speed", "speedUp"]}, "say": {"type": "string"}}, "required": ["typewriter", "say"]}}, "id": {"type": "string"}, "mode": {"type": "integer"}, "once": {"type": "boolean"}, "fadein": {"type": "number"}}, "required": ["scripts", "id", "mode", "once", "fadein"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"uri": {"type": "string"}, "name": {"type": "string"}, "category": {"type": "string"}, "parent": {"type": "string"}, "flags": {"type": "string"}, "lvars": {"type": "array", "items": {}}, "vars": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "expr": {"type": "object", "properties": {"script": {"type": "string"}}, "required": ["script"]}}, "required": ["name", "expr"]}}, "isas": {"type": "array", "items": {}}, "isLambda": {"type": "boolean"}}, "required": ["uri", "name", "category", "parent", "flags", "lvars", "vars", "isas", "isLambda"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"uri" : "local://Uymbo25-k28RSKWIGgh5OD/", "name" : "Test Search", "category" : "", "parent" : "local://edkPtDRwO38OvaBEGJZZf6/", "flags" : "U", "lvars" : [], "vars" : [{"name" : "testSearch", "expr" : {"script" : "var matches = $cjs.search({\n uri: \"/common/core/nXFwelpDRVA4faZ54D1kf8/\",\n ruri: \"/sridharcheema/fork-a-wiki/\",\n queryJson: { \n \"match\" : {\n \"formattedName\" : \"quick markdown example\"\n }\n },\n size: 2\n });\n \nconsole.log(\"search result:\"+JSON.stringify(matches));"}}], "isas" : [], "isLambda" : false} | json_instruct | {"type": "object", "properties": {"uri": {"type": "string"}, "name": {"type": "string"}, "category": {"type": "string"}, "parent": {"type": "string"}, "flags": {"type": "string"}, "lvars": {"type": "array", "items": {}}, "vars": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "expr": {"type": "object", "properties": {"script": {"type": "string"}}, "required": ["script"]}}, "required": ["name", "expr"]}}, "isas": {"type": "array", "items": {}}, "isLambda": {"type": "boolean"}}, "required": ["uri", "name", "category", "parent", "flags", "lvars", "vars", "isas", "isLambda"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"apps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "log_date_format": {"type": "string"}, "ignore_watch": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "script", "log_date_format", "ignore_watch"]}}}, "required": ["apps"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"apps" : [{"name" : "server", "script" : "./core/scripts/server.js", "log_date_format" : "YYYY-MM-DD HH:mm:ss", "ignore_watch" : ["core/build/config.json", "node_modules"]}]} | json_instruct | {"type": "object", "properties": {"apps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "log_date_format": {"type": "string"}, "ignore_watch": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "script", "log_date_format", "ignore_watch"]}}}, "required": ["apps"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"SEMANTIC_MASK": {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "categoryId": {"type": "integer"}}, "required": ["name", "categoryId"]}}}, "required": ["categories"]}, "INSTANCE_MASK": {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "categoryId": {"type": "integer"}}, "required": ["name", "categoryId"]}}}, "required": ["categories"]}}, "required": ["SEMANTIC_MASK", "INSTANCE_MASK"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"SEMANTIC_MASK" : {"categories" : [{"name" : "background", "categoryId" : 0}, {"name" : "aeroplane", "categoryId" : 1}, {"name" : "bicycle", "categoryId" : 2}, {"name" : "bird", "categoryId" : 3}, {"name" : "boat", "categoryId" : 4}, {"name" : "bottle", "categoryId" : 5}, {"name" : "bus", "categoryId" : 6}, {"name" : "car", "categoryId" : 7}, {"name" : "cat", "categoryId" : 8}, {"name" : "chair", "categoryId" : 9}, {"name" : "cow", "categoryId" : 10}, {"name" : "diningtable", "categoryId" : 11}, {"name" : "dog", "categoryId" : 12}, {"name" : "horse", "categoryId" : 13}, {"name" : "motorbike", "categoryId" : 14}, {"name" : "person", "categoryId" : 15}, {"name" : "pottedplant", "categoryId" : 16}, {"name" : "sheep", "categoryId" : 17}, {"name" : "sofa", "categoryId" : 18}, {"name" : "train", "categoryId" : 19}, {"name" : "tvmonitor", "categoryId" : 20}, {"name" : "void", "categoryId" : 255}]}, "INSTANCE_MASK" : {"categories" : [{"name" : "background", "categoryId" : 0}, {"name" : "void", "categoryId" : 255}]}} | json_instruct | {"type": "object", "properties": {"SEMANTIC_MASK": {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "categoryId": {"type": "integer"}}, "required": ["name", "categoryId"]}}}, "required": ["categories"]}, "INSTANCE_MASK": {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "categoryId": {"type": "integer"}}, "required": ["name", "categoryId"]}}}, "required": ["categories"]}}, "required": ["SEMANTIC_MASK", "INSTANCE_MASK"], "$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": "integer"}, "give_rate1": {"type": "integer"}, "give_rate2": {"type": "integer"}, "give_rate3": {"type": "integer"}, "give_rate4": {"type": "integer"}, "give_rate5": {"type": "integer"}, "give_rate6": {"type": "integer"}, "give_rate7": {"type": "integer"}, "give_rate8": {"type": "integer"}, "give_rate9": {"type": "integer"}, "give_rate10": {"type": "integer"}}, "required": ["id", "give_rate1", "give_rate2", "give_rate3", "give_rate4", "give_rate5", "give_rate6", "give_rate7", "give_rate8", "give_rate9", "give_rate10"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 1, "give_rate1" : 1000, "give_rate2" : 1000, "give_rate3" : 1000, "give_rate4" : 1000, "give_rate5" : 1000, "give_rate6" : 1000, "give_rate7" : 1000, "give_rate8" : 1000, "give_rate9" : 1000, "give_rate10" : 1000}, {"id" : 2, "give_rate1" : 1200, "give_rate2" : 1200, "give_rate3" : 1200, "give_rate4" : 1200, "give_rate5" : 1200, "give_rate6" : 1200, "give_rate7" : 1200, "give_rate8" : 1200, "give_rate9" : 1200, "give_rate10" : 1200}, {"id" : 3, "give_rate1" : 1500, "give_rate2" : 1500, "give_rate3" : 1500, "give_rate4" : 1500, "give_rate5" : 1500, "give_rate6" : 1500, "give_rate7" : 1500, "give_rate8" : 1500, "give_rate9" : 1500, "give_rate10" : 1500}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "give_rate1": {"type": "integer"}, "give_rate2": {"type": "integer"}, "give_rate3": {"type": "integer"}, "give_rate4": {"type": "integer"}, "give_rate5": {"type": "integer"}, "give_rate6": {"type": "integer"}, "give_rate7": {"type": "integer"}, "give_rate8": {"type": "integer"}, "give_rate9": {"type": "integer"}, "give_rate10": {"type": "integer"}}, "required": ["id", "give_rate1", "give_rate2", "give_rate3", "give_rate4", "give_rate5", "give_rate6", "give_rate7", "give_rate8", "give_rate9", "give_rate10"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "demo": {"type": "string"}, "version": {"type": "string"}, "engines": {"type": "object", "properties": {"ghost": {"type": "string"}}, "required": ["ghost"]}, "license": {"type": "string"}, "screenshots": {"type": "object", "properties": {"desktop": {"type": "string"}, "mobile": {"type": "string"}}, "required": ["desktop", "mobile"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "gpm": {"type": "object", "properties": {"type": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "categories"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "string"}, "contributors": {"type": "string"}}, "required": ["name", "description", "demo", "version", "engines", "license", "screenshots", "author", "gpm", "keywords", "bugs", "contributors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "miksel", "description" : "minimal theme for writer and creative people", "demo" : "http://pixelcraft.work/", "version" : "1.0.0", "engines" : {"ghost" : ">=1.0.0"}, "license" : "MIT", "screenshots" : {"desktop" : "assets/screenshot-desktop.jpg", "mobile" : "assets/screenshot-mobile.jpg"}, "author" : {"name" : "pikselkraft", "email" : "contact@dereksalmon.me", "url" : "http://www.dereksalmon.me"}, "gpm" : {"type" : "theme", "categories" : ["minimal", "fonts", "Personal Blogs"]}, "keywords" : ["ghost", "theme"], "bugs" : "contact@dereksalmon.me", "contributors" : "@pikselkraft"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "demo": {"type": "string"}, "version": {"type": "string"}, "engines": {"type": "object", "properties": {"ghost": {"type": "string"}}, "required": ["ghost"]}, "license": {"type": "string"}, "screenshots": {"type": "object", "properties": {"desktop": {"type": "string"}, "mobile": {"type": "string"}}, "required": ["desktop", "mobile"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "gpm": {"type": "object", "properties": {"type": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "categories"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "string"}, "contributors": {"type": "string"}}, "required": ["name", "description", "demo", "version", "engines", "license", "screenshots", "author", "gpm", "keywords", "bugs", "contributors"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"styled-components-macro.cjs.js": {"type": "string"}, "styled-components-macro.cjs.min.js": {"type": "string"}, "styled-components-macro.esm.js": {"type": "string"}, "styled-components-macro.esm.min.js": {"type": "string"}, "styled-components.browser.cjs.js": {"type": "string"}, "styled-components.browser.cjs.min.js": {"type": "string"}, "styled-components.browser.esm.js": {"type": "string"}, "styled-components.browser.esm.min.js": {"type": "string"}, "styled-components.cjs.js": {"type": "string"}, "styled-components.cjs.min.js": {"type": "string"}, "styled-components.esm.js": {"type": "string"}, "styled-components.esm.min.js": {"type": "string"}, "styled-components.js": {"type": "string"}, "styled-components.min.js": {"type": "string"}}, "required": ["styled-components-macro.cjs.js", "styled-components-macro.cjs.min.js", "styled-components-macro.esm.js", "styled-components-macro.esm.min.js", "styled-components.browser.cjs.js", "styled-components.browser.cjs.min.js", "styled-components.browser.esm.js", "styled-components.browser.esm.min.js", "styled-components.cjs.js", "styled-components.cjs.min.js", "styled-components.esm.js", "styled-components.esm.min.js", "styled-components.js", "styled-components.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"styled-components-macro.cjs.js" : "sha512-Z7+L3jjp7ovawqRtzsVBN0HMbYdO6zv9a4ErPjEmo5ngIcrZ/6AwcGmqfBcUzQTQ1PdmxNs8Vhptln5DmVw/1w==", "styled-components-macro.cjs.min.js" : "sha512-YAOzMfhquuimMiet1b+Tk/huJ3HGgMLS3RrkXCmYMPQL5Yj/GEg9CP5rVwIEaCjuk3GRNLfrlCETVeMUsXFVow==", "styled-components-macro.esm.js" : "sha512-LAKYhbKq44aNM6Ap/2Smm/mS8Lw9bxVBYwf2vYPRhCRw5AedyiWJ6yO3WHlPjJTmzhDpIzu7VHzA4G1J//hAYg==", "styled-components-macro.esm.min.js" : "sha512-krncdyBXsqAQXr0mO8DWKwaVhfEU62dJE9rWN+Ty45bGPaud2GOvjdReYeuLCZri+WrDw7RAA6MhCRGyrkKl4A==", "styled-components.browser.cjs.js" : "sha512-BnESK7F2pbxSuS/IAYZGSINKmRtcuMd4zmYsZ8bglzj5zVaabcgQIpDCpdhKZ70gSVPl6wnDUyt7VwzXWFkGvQ==", "styled-components.browser.cjs.min.js" : "sha512-Su55nJ9XXbo0viE5ABpNuz0XXieeDQkdyKN6QTQAuc7LZ7x8r1mMbeDIabT4LsPbom3FYP1K4OST4fDMkGcI0Q==", "styled-components.browser.esm.js" : "sha512-pVN9JcFUBkof99OOzs4VhBR+8xiX4V+KvBXshiTlhOB0YHfFG8cVtfb6d2UAlswVJvvGeUT+w0hGkamI+wIENg==", "styled-components.browser.esm.min.js" : "sha512-ZAxHvL56UgsGFC4KrZHEmMu2iYDvAQFCkYxkwzHhxG8AQCOsA2un3iKd+jgX6OD9z+flHwUMMHsfaFt2TfMezg==", "styled-components.cjs.js" : "sha512-/zA2aESnhq+4NY6y1rF+FMsW28hFijEAR9iywZJ+njZ4XGFwsj1lEQIOXwkWz6HFZbND9FnLglX6gB/X5GlGYg==", "styled-components.cjs.min.js" : "sha512-VePJOmCxAoEHW3lR0teFJx+m+TGIHpk8ulTOw5TbQ0huMljhDwS7+z8B13np6bmUJmEVCf1zvAi/ENzCtruZvw==", "styled-components.esm.js" : "sha512-zxNXSspB4sBJslgHuGRKyDA4fj+oKh7uazxLHWtm96fXgEksyPDxkMVxxDlj2y5yiTOuIAn5kWB/M3BvW4SnqA==", "styled-components.esm.min.js" : "sha512-y7xjJOdUoUt1XmGb5xX/VaUaWj9fpxFJvxMfaoUVwrWJoJNlYuBvYBDZAYzXfyatke7KU2utvv6Zn7HH2Nm2zw==", "styled-components.js" : "sha512-c85HJfLOxjudKnP794wbZhm6LNlNnW7E72P4BQOvRYxVqnIN84zPb3FBFTxw5wphVS0J+WJUnu2WVXN29vuATQ==", "styled-components.min.js" : "sha512-PBLIRTMya3fJyLtvO8EzxbTT/3vHjDnDyswle1WrLhLFMhqiX5CUoenSeuUGGEKey/BYY+VGJuUwI2rR21gY/Q=="} | json_instruct | {"type": "object", "properties": {"styled-components-macro.cjs.js": {"type": "string"}, "styled-components-macro.cjs.min.js": {"type": "string"}, "styled-components-macro.esm.js": {"type": "string"}, "styled-components-macro.esm.min.js": {"type": "string"}, "styled-components.browser.cjs.js": {"type": "string"}, "styled-components.browser.cjs.min.js": {"type": "string"}, "styled-components.browser.esm.js": {"type": "string"}, "styled-components.browser.esm.min.js": {"type": "string"}, "styled-components.cjs.js": {"type": "string"}, "styled-components.cjs.min.js": {"type": "string"}, "styled-components.esm.js": {"type": "string"}, "styled-components.esm.min.js": {"type": "string"}, "styled-components.js": {"type": "string"}, "styled-components.min.js": {"type": "string"}}, "required": ["styled-components-macro.cjs.js", "styled-components-macro.cjs.min.js", "styled-components-macro.esm.js", "styled-components-macro.esm.min.js", "styled-components.browser.cjs.js", "styled-components.browser.cjs.min.js", "styled-components.browser.esm.js", "styled-components.browser.esm.min.js", "styled-components.cjs.js", "styled-components.cjs.min.js", "styled-components.esm.js", "styled-components.esm.min.js", "styled-components.js", "styled-components.min.js"], "$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"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"force-update": {"type": "string"}, "build": {"type": "string"}, "build-css": {"type": "string"}, "build-verbose": {"type": "string"}, "watch": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["force-update", "build", "build-css", "build-verbose", "watch", "start", "test"]}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/vkbeautify": {"type": "string"}, "ajv-cli": {"type": "string"}, "brace": {"type": "string"}, "http-server": {"type": "string"}, "json-loader": {"type": "string"}, "markdown-it": {"type": "string"}, "ts-loader": {"type": "string"}, "tslint": {"type": "string"}, "typescript": {"type": "string"}, "vkbeautify": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["@types/node", "@types/vkbeautify", "ajv-cli", "brace", "http-server", "json-loader", "markdown-it", "ts-loader", "tslint", "typescript", "vkbeautify", "webpack"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "private", "scripts", "dependencies", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "adaptivecards-controls-testapp", "version" : "0.1.0", "description" : "Test application for Adaptive Card JS/HTML controls", "main" : "built/testapp.js", "private" : true, "scripts" : {"force-update" : "npm install adaptivecards-controls -f", "build" : "webpack", "build-css" : "node-sass ./scss/controls.scss --output ./css", "build-verbose" : "webpack --display-error-details", "watch" : "webpack --watch", "start" : "http-server ./index.html -c-1 -o -a localhost", "test" : "echo \"Error: no test specified\" && exit 1"}, "dependencies" : {"@types/node" : "0.0.2", "@types/vkbeautify" : "^0.99.0", "ajv-cli" : "1.1.1", "brace" : "^0.9.1", "http-server" : "0.9.0", "json-loader" : "0.5.4", "markdown-it" : "^8.2.2", "ts-loader" : "^2.0.3", "tslint" : "^4.4.2", "typescript" : "^2.1.5", "vkbeautify" : "^0.99.1", "webpack" : "^2.3.1"}, "author" : "Microsoft", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"force-update": {"type": "string"}, "build": {"type": "string"}, "build-css": {"type": "string"}, "build-verbose": {"type": "string"}, "watch": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["force-update", "build", "build-css", "build-verbose", "watch", "start", "test"]}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/vkbeautify": {"type": "string"}, "ajv-cli": {"type": "string"}, "brace": {"type": "string"}, "http-server": {"type": "string"}, "json-loader": {"type": "string"}, "markdown-it": {"type": "string"}, "ts-loader": {"type": "string"}, "tslint": {"type": "string"}, "typescript": {"type": "string"}, "vkbeautify": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["@types/node", "@types/vkbeautify", "ajv-cli", "brace", "http-server", "json-loader", "markdown-it", "ts-loader", "tslint", "typescript", "vkbeautify", "webpack"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "private", "scripts", "dependencies", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {"gear": {"type": "string"}, "jslint": {"type": "string"}, "uglify-js": {"type": "string"}, "csslint": {"type": "string"}, "less": {"type": "string"}, "handlebars": {"type": "string"}, "mime": {"type": "string"}, "knox": {"type": "string"}}, "required": ["gear", "jslint", "uglify-js", "csslint", "less", "handlebars", "mime", "knox"]}, "devDependencies": {"type": "object", "properties": {"should": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["should", "mocha"]}}, "required": ["name", "version", "description", "author", "keywords", "repository", "bugs", "main", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gear-lib", "version" : "0.8.1", "description" : "Collection of common Gear.js tasks", "author" : "Stephen Murphy <stephen@hypernaut.com>", "keywords" : ["gear", "task", "build"], "repository" : {"type" : "git", "url" : "http://github.com/yahoo/gear-lib.git"}, "bugs" : {"url" : "http://github.com/yahoo/gear-lib/issues"}, "main" : "index", "scripts" : {"test" : "mocha --require should"}, "dependencies" : {"gear" : ">= 0.7.x", "jslint" : "0.1.x", "uglify-js" : "1.2.x", "csslint" : "0.9.x", "less" : "1.2.x", "handlebars" : "1.0.x", "mime" : "1.2.x", "knox" : "0.0.x"}, "devDependencies" : {"should" : "0.6.x", "mocha" : "1.0.x"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {"gear": {"type": "string"}, "jslint": {"type": "string"}, "uglify-js": {"type": "string"}, "csslint": {"type": "string"}, "less": {"type": "string"}, "handlebars": {"type": "string"}, "mime": {"type": "string"}, "knox": {"type": "string"}}, "required": ["gear", "jslint", "uglify-js", "csslint", "less", "handlebars", "mime", "knox"]}, "devDependencies": {"type": "object", "properties": {"should": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["should", "mocha"]}}, "required": ["name", "version", "description", "author", "keywords", "repository", "bugs", "main", "scripts", "dependencies", "devDependencies"], "$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"}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"2": {"type": "string"}}, "required": ["2"]}, "devDependencies": {"type": "object", "properties": {"eslint-config-lamansky": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["eslint-config-lamansky", "mocha"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}, "env": {"type": "object", "properties": {"mocha": {"type": "boolean"}}, "required": ["mocha"]}}, "required": ["extends", "env"]}}, "required": ["name", "version", "description", "author", "license", "homepage", "repository", "main", "dependencies", "devDependencies", "scripts", "eslintConfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "nearest-number", "version" : "1.0.0", "description" : "From a list of numbers, picks the one closest to a given target.", "author" : "John Lamansky", "license" : "MIT", "homepage" : "https://github.com/lamansky/nearest-number", "repository" : "lamansky/nearest-number", "main" : "index.js", "dependencies" : {"2" : "^1.0.1"}, "devDependencies" : {"eslint-config-lamansky" : "^1.0.0", "mocha" : "^3.2.0"}, "scripts" : {"test" : "mocha"}, "eslintConfig" : {"extends" : "lamansky", "env" : {"mocha" : true}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"2": {"type": "string"}}, "required": ["2"]}, "devDependencies": {"type": "object", "properties": {"eslint-config-lamansky": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["eslint-config-lamansky", "mocha"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}, "env": {"type": "object", "properties": {"mocha": {"type": "boolean"}}, "required": ["mocha"]}}, "required": ["extends", "env"]}}, "required": ["name", "version", "description", "author", "license", "homepage", "repository", "main", "dependencies", "devDependencies", "scripts", "eslintConfig"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"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" : 1999, "sex" : "M", "n" : 5, "prop" : 2.45e-06}, {"year" : 2000, "sex" : "M", "n" : 7, "prop" : 3.35e-06}, {"year" : 2002, "sex" : "M", "n" : 5, "prop" : 2.42e-06}, {"year" : 2006, "sex" : "M", "n" : 5, "prop" : 2.28e-06}, {"year" : 2009, "sex" : "M", "n" : 6, "prop" : 2.83e-06}, {"year" : 2010, "sex" : "M", "n" : 9, "prop" : 4.39e-06}, {"year" : 2011, "sex" : "M", "n" : 7, "prop" : 3.45e-06}, {"year" : 2012, "sex" : "M", "n" : 7, "prop" : 3.46e-06}, {"year" : 2013, "sex" : "M", "n" : 5, "prop" : 2.48e-06}, {"year" : 2014, "sex" : "M", "n" : 5, "prop" : 2.45e-06}, {"year" : 2015, "sex" : "M", "n" : 7, "prop" : 3.43e-06}, {"year" : 2016, "sex" : "M", "n" : 5, "prop" : 2.48e-06}, {"year" : 2017, "sex" : "M", "n" : 11, "prop" : 5.6e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "widmanstatten figures", "definition" : "Certain figures appearing on etched meteoric iron; -- so called after A. B. Widmanst\u00e4tten, of Vienna, who first described them in 1808. See the Note and Illust. under Meteorite."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "docFormat": {"type": "string"}, "triples": {"type": "array", "items": {"type": "object", "properties": {"triple": {"type": "object", "properties": {"subject": {"type": "string"}, "predicate": {"type": "string"}, "object": {"type": "string"}}, "required": ["subject", "predicate", "object"]}}, "required": ["triple"]}}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "tags", "friends", "greeting", "favoriteFruit", "location", "docFormat", "triples"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "55ee5e98e7a3f9980d759f0f", "index" : 2534, "guid" : "6624b606-33b9-49df-911d-1181667ade17", "isActive" : true, "balance" : "$78,692.51", "picture" : "http://placehold.it/32x32", "age" : 40, "eyeColor" : "brown", "name" : "Cortez Hicks", "gender" : "male", "company" : "FURNITECH", "email" : "cortezhicks@furnitech.com", "phone" : "+1 (898) 591-2271", "address" : "452 Hillel Place, Rodanthe, New Jersey, 9158", "about" : "Labore cillum aliquip excepteur do et culpa amet. Consequat magna minim elit id. Quis non ipsum excepteur id eiusmod labore laboris laboris nostrud. Dolore irure id do incididunt. Eiusmod adipisicing Lorem aliqua laborum consequat ut tempor sit quis ea veniam consectetur dolor reprehenderit. Ut sint ad minim tempor officia cillum quis. Eu cupidatat eiusmod cillum fugiat incididunt.\r\n", "registered" : "2014-01-23T02:38:25 -07:00", "tags" : ["enim", "fugiat", "occaecat", "do", "consectetur", "velit", "id"], "friends" : [{"id" : 0, "name" : "Sosa Heath"}, {"id" : 1, "name" : "Marie Bradshaw"}, {"id" : 2, "name" : "Alvarez Battle"}], "greeting" : "Hello, Cortez Hicks! You have 5 unread messages.", "favoriteFruit" : "pear", "location" : {"latitude" : -27.488031, "longitude" : -45.215827}, "docFormat" : "json", "triples" : [{"triple" : {"subject" : "/sample-data/data-2534.json", "predicate" : "http://www.w3.org/2000/01/rdf-schema#label", "object" : "Cortez Hicks"}}, {"triple" : {"subject" : "/sample-data/data-2534.json", "predicate" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "object" : "http://xmlns.com/foaf/0.1/Person"}}, {"triple" : {"subject" : "/sample-data/data-2534.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-2297.json"}}, {"triple" : {"subject" : "/sample-data/data-2534.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-2667.json"}}, {"triple" : {"subject" : "/sample-data/data-2534.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-1814.json"}}]} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "docFormat": {"type": "string"}, "triples": {"type": "array", "items": {"type": "object", "properties": {"triple": {"type": "object", "properties": {"subject": {"type": "string"}, "predicate": {"type": "string"}, "object": {"type": "string"}}, "required": ["subject", "predicate", "object"]}}, "required": ["triple"]}}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "tags", "friends", "greeting", "favoriteFruit", "location", "docFormat", "triples"], "$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"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["serve", "build", "dev"]}, "dependencies": {"type": "object", "properties": {"@fortawesome/fontawesome-svg-core": {"type": "string"}, "@fortawesome/free-regular-svg-icons": {"type": "string"}, "@fortawesome/vue-fontawesome": {"type": "string"}, "hammerjs": {"type": "string"}, "nanoid": {"type": "string"}, "normalize.css": {"type": "string"}, "vue": {"type": "string"}}, "required": ["@fortawesome/fontawesome-svg-core", "@fortawesome/free-regular-svg-icons", "@fortawesome/vue-fontawesome", "hammerjs", "nanoid", "normalize.css", "vue"]}, "devDependencies": {"type": "object", "properties": {"@vitejs/plugin-vue": {"type": "string"}, "@volar/experimental": {"type": "string"}, "@vue/compiler-sfc": {"type": "string"}, "@vue/eslint-config-prettier": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "eslint-plugin-vue": {"type": "string"}, "prettier": {"type": "string"}, "sass": {"type": "string"}, "vite": {"type": "string"}, "vite-plugin-pwa": {"type": "string"}}, "required": ["@vitejs/plugin-vue", "@volar/experimental", "@vue/compiler-sfc", "@vue/eslint-config-prettier", "eslint", "eslint-plugin-prettier", "eslint-plugin-vue", "prettier", "sass", "vite", "vite-plugin-pwa"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tabs", "version" : "1.4.1", "private" : true, "scripts" : {"serve" : "vite serve", "build" : "vite build", "dev" : "vite"}, "dependencies" : {"@fortawesome/fontawesome-svg-core" : "^1.2.36", "@fortawesome/free-regular-svg-icons" : "^5.15.4", "@fortawesome/vue-fontawesome" : "^3.0.0-4", "hammerjs" : "^2.0.8", "nanoid" : "^3.1.23", "normalize.css" : "^8.0.1", "vue" : "^3.2.1"}, "devDependencies" : {"@vitejs/plugin-vue" : "^1.4.0", "@volar/experimental" : "^0.26.14", "@vue/compiler-sfc" : "^3.2.1", "@vue/eslint-config-prettier" : "^6.0.0", "eslint" : "^7.32.0", "eslint-plugin-prettier" : "3.4.0", "eslint-plugin-vue" : "^7.15.2", "prettier" : "^2.3.2", "sass" : "^1.37.5", "vite" : "^2.4.4", "vite-plugin-pwa" : "^0.10.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["serve", "build", "dev"]}, "dependencies": {"type": "object", "properties": {"@fortawesome/fontawesome-svg-core": {"type": "string"}, "@fortawesome/free-regular-svg-icons": {"type": "string"}, "@fortawesome/vue-fontawesome": {"type": "string"}, "hammerjs": {"type": "string"}, "nanoid": {"type": "string"}, "normalize.css": {"type": "string"}, "vue": {"type": "string"}}, "required": ["@fortawesome/fontawesome-svg-core", "@fortawesome/free-regular-svg-icons", "@fortawesome/vue-fontawesome", "hammerjs", "nanoid", "normalize.css", "vue"]}, "devDependencies": {"type": "object", "properties": {"@vitejs/plugin-vue": {"type": "string"}, "@volar/experimental": {"type": "string"}, "@vue/compiler-sfc": {"type": "string"}, "@vue/eslint-config-prettier": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "eslint-plugin-vue": {"type": "string"}, "prettier": {"type": "string"}, "sass": {"type": "string"}, "vite": {"type": "string"}, "vite-plugin-pwa": {"type": "string"}}, "required": ["@vitejs/plugin-vue", "@volar/experimental", "@vue/compiler-sfc", "@vue/eslint-config-prettier", "eslint", "eslint-plugin-prettier", "eslint-plugin-vue", "prettier", "sass", "vite", "vite-plugin-pwa"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"maxLeafRecords": {"type": "integer"}, "dimensionsSplitOrder": {"type": "array", "items": {"type": "string"}}, "skipStarNodeCreationForDimensions": {"type": "array", "items": {}}, "skipMaterializationForDimensions": {"type": "array", "items": {"type": "string"}}}, "required": ["maxLeafRecords", "dimensionsSplitOrder", "skipStarNodeCreationForDimensions", "skipMaterializationForDimensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"maxLeafRecords" : 100, "dimensionsSplitOrder" : ["l_receiptdate", "l_shipdate", "l_shipmode", "l_returnflag"], "skipStarNodeCreationForDimensions" : [], "skipMaterializationForDimensions" : ["l_partkey", "l_commitdate", "l_linestatus", "l_comment", "l_orderkey", "l_shipinstruct", "l_linenumber", "l_suppkey"]} | json_instruct | {"type": "object", "properties": {"maxLeafRecords": {"type": "integer"}, "dimensionsSplitOrder": {"type": "array", "items": {"type": "string"}}, "skipStarNodeCreationForDimensions": {"type": "array", "items": {}}, "skipMaterializationForDimensions": {"type": "array", "items": {"type": "string"}}}, "required": ["maxLeafRecords", "dimensionsSplitOrder", "skipStarNodeCreationForDimensions", "skipMaterializationForDimensions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "510503001", "text" : "\u5b89\u5bcc\u8857\u9053"}, {"id" : "510503002", "text" : "\u6c38\u5b81\u8857\u9053"}, {"id" : "510503003", "text" : "\u4e1c\u5347\u8857\u9053"}, {"id" : "510503100", "text" : "\u5927\u6e21\u53e3\u9547"}, {"id" : "510503101", "text" : "\u62a4\u56fd\u9547"}, {"id" : "510503102", "text" : "\u6253\u53e4\u9547"}, {"id" : "510503103", "text" : "\u4e0a\u9a6c\u9547"}, {"id" : "510503104", "text" : "\u5408\u9762\u9547"}, {"id" : "510503106", "text" : "\u4e30\u4e50\u9547"}, {"id" : "510503107", "text" : "\u767d\u8282\u9547"}, {"id" : "510503108", "text" : "\u5929\u4ed9\u9547"}, {"id" : "510503109", "text" : "\u65b0\u4e50\u9547"}, {"id" : "510503111", "text" : "\u9f99\u8f66\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 a JSON structure that matches this schema definition:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\u5de5\u5ee0\u540d\u7a31" : "\u592a\u5730\u4f01\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99609847", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "06610000064874", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u5317\u5e02\u9daf\u6b4c\u5340\u4e2d\u5c71\u8def\u4e8c\uff10\u516b\u5df7\u4e00\u3001\u4e09\u865f", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u65b0\u5317\u5e02\u9daf\u6b4c\u5340", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u7fc1\u6587\u5d07", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "34231986", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "0580101", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0670920", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["25\u91d1\u5c6c\u88fd\u54c1\u88fd\u9020\u696d", "29\u6a5f\u68b0\u8a2d\u5099\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["251\u91d1\u5c6c\u624b\u5de5\u5177\u53ca\u6a21\u5177", "293\u901a\u7528\u6a5f\u68b0\u8a2d\u5099"]} | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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" : "commet", "downloads" : 4400, "count" : 4461}] | 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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"900807123": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900807123"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900807123" : {"nama" : "TPS 1", "dapil" : [9101, 19103, 2910905]}} | json_instruct | {"type": "object", "properties": {"900807123": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900807123"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"9": {"type": "array", "items": {"type": "integer"}}, "17": {"type": "array", "items": {"type": "integer"}}, "25": {"type": "array", "items": {"type": "integer"}}, "33": {"type": "array", "items": {"type": "integer"}}, "41": {"type": "array", "items": {"type": "integer"}}, "49": {"type": "array", "items": {"type": "integer"}}, "57": {"type": "array", "items": {"type": "integer"}}, "65": {"type": "array", "items": {"type": "integer"}}, "73": {"type": "array", "items": {"type": "integer"}}, "nBranches": {"type": "integer"}, "originalCodeFileName": {"type": "string"}, "instrumentedCodeFileName": {"type": "string"}, "code": {"type": "string"}}, "required": ["9", "17", "25", "33", "41", "49", "57", "65", "73", "nBranches", "originalCodeFileName", "instrumentedCodeFileName", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"9" : [1, 1, 1, 7], "17" : [1, 18, 1, 25], "25" : [1, 26, 1, 47], "33" : [1, 18, 1, 48], "41" : [1, 1, 1, 48], "49" : [1, 1, 1, 49], "57" : [1, 1, 1, 49], "65" : [1, 1, 1, 49], "73" : [1, 1, 1, 49], "nBranches" : 0, "originalCodeFileName" : "/home/f3i/umma/node_modules/core-js/internals/path.js", "instrumentedCodeFileName" : "/home/f3i/umma/node_modules/core-js/internals/path_jalangi_.js", "code" : "module.exports = require('../internals/global');\n"} | json_instruct | {"type": "object", "properties": {"9": {"type": "array", "items": {"type": "integer"}}, "17": {"type": "array", "items": {"type": "integer"}}, "25": {"type": "array", "items": {"type": "integer"}}, "33": {"type": "array", "items": {"type": "integer"}}, "41": {"type": "array", "items": {"type": "integer"}}, "49": {"type": "array", "items": {"type": "integer"}}, "57": {"type": "array", "items": {"type": "integer"}}, "65": {"type": "array", "items": {"type": "integer"}}, "73": {"type": "array", "items": {"type": "integer"}}, "nBranches": {"type": "integer"}, "originalCodeFileName": {"type": "string"}, "instrumentedCodeFileName": {"type": "string"}, "code": {"type": "string"}}, "required": ["9", "17", "25", "33", "41", "49", "57", "65", "73", "nBranches", "originalCodeFileName", "instrumentedCodeFileName", "code"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"fail-fast": {"type": "boolean"}, "matrix": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "object", "properties": {"runs": {"type": "object", "properties": {"build": {"type": "string"}, "history": {"type": "string"}, "prepare": {"type": "string"}, "pull": {"type": "string"}, "images": {"type": "string"}}, "required": ["build", "history", "prepare", "pull", "images"]}}, "required": ["runs"]}}}, "required": ["include"]}}, "required": ["fail-fast", "matrix"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"fail-fast" : false, "matrix" : {"include" : [{"runs" : {"build" : "docker build --tag 'penn-state-dance-marathon/amazonlinux2-python:3.7.12' --tag 'penn-state-dance-marathon/amazonlinux2-python:3.7' '3.7.12'", "history" : "docker history 'penn-state-dance-marathon/amazonlinux2-python:3.7.12'", "prepare" : "git clone --depth 1 https://github.com/docker-library/official-images.git -b master ~/oi\n# create a dummy empty image/layer so we can --filter since= later to get a meaningful image list\n{ echo FROM busybox:latest; echo RUN :; } | docker build --no-cache --tag image-list-marker -\n# PGP Happy Eyeballs\ngit clone --depth 1 https://github.com/tianon/pgp-happy-eyeballs.git ~/phe\n~/phe/hack-my-builds.sh\nrm -rf ~/phe", "pull" : "docker pull 'penn-state-dance-marathon/amazonlinux2-python:3.7.12'", "images" : "docker image ls --filter since=image-list-marker"}}]}} | json_instruct | {"type": "object", "properties": {"fail-fast": {"type": "boolean"}, "matrix": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "object", "properties": {"runs": {"type": "object", "properties": {"build": {"type": "string"}, "history": {"type": "string"}, "prepare": {"type": "string"}, "pull": {"type": "string"}, "images": {"type": "string"}}, "required": ["build", "history", "prepare", "pull", "images"]}}, "required": ["runs"]}}}, "required": ["include"]}}, "required": ["fail-fast", "matrix"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "links": {"type": "array", "items": {"type": "string"}}, "data_recebimento": {"type": "string"}, "remetente": {"type": "string"}, "origem": {"type": "string"}, "descricao": {"type": "string"}, "caixa": {"type": "string"}, "em_resposta": {"type": "string"}}, "required": ["id", "links", "data_recebimento", "remetente", "origem", "descricao", "caixa", "em_resposta"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 9, "links" : ["https://legis.senado.leg.br/sdleg-getter/documento/download/73aba225-55d4-47cb-9cd3-afde9ecdde8d"], "data_recebimento" : "05/05/2021", "remetente" : "Minist\u00e9rio P\u00fablico Federal de S\u00e3o Jos\u00e9 do Rio Preto-SP", "origem" : "\n", "descricao" : "\nC\u00f3pia do Procedimento Apurat\u00f3rio 1.34.015.000172/2020-32, aos cuidados do 5o Of\u00edcio do MPF de S\u00e3o Jos\u00e9 do Rio Preto-SP, destinado ao acompanhamento da destina\u00e7\u00e3o de verbas federais, no enfrentamento da Covid-19, por munic\u00edpios do grupo III da regi\u00e3o de S\u00e3o Jos\u00e9 do Rio Preto/SP\n\n\t\t\t\t\t\t\tDocumenta\u00e7\u00e3o contendo:\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t841 folha(s).\n\t\t\t\t\t\t\t\n", "caixa" : " 1 ", "em_resposta" : " 1 "} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "links": {"type": "array", "items": {"type": "string"}}, "data_recebimento": {"type": "string"}, "remetente": {"type": "string"}, "origem": {"type": "string"}, "descricao": {"type": "string"}, "caixa": {"type": "string"}, "em_resposta": {"type": "string"}}, "required": ["id", "links", "data_recebimento", "remetente", "origem", "descricao", "caixa", "em_resposta"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 85863955, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "382085a0f4e46c692f3a4060d65bd149", "wof:id" : 85863955, "wof:repo" : "whosonfirst-data-admin-es"}, "bbox" : [-2.17663, 43.00612, -2.17663, 43.00612], "geometry" : {"coordinates" : [-2.17663, 43.00612], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"province" : "\u6d59\u6c5f\u7701", "city" : "\u5b81\u6ce2\u5e02", "area" : "\u5317\u4ed1\u533a", "name" : "\u5317\u4ed1\u533a\u6e05\u6c34\u90ae\u653f\u652f\u5c40", "code" : "315826", "address" : "\u9752\u5c71\u6751\u6cb3\u4e0b118\u53f7", "phone" : "0574-86140242"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/generic/food/cherryporridge.consumable": {"type": "array", "items": {"type": "string"}}}, "required": ["items/generic/food/cherryporridge.consumable"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"DeniedAlternatives" : [], "Files" : {"items/generic/food/cherryporridge.consumable" : ["/shortdescription"]}, "Texts" : {"Chs" : "\u6a31\u6843\u9ea6\u7247\u7ca5", "Eng" : "Cherry Porridge"}}, {"DeniedAlternatives" : [], "Files" : {"items/generic/food/cherryporridge.consumable" : ["/description"]}, "Texts" : {"Chs" : "\u6d53\u7a20\uff0c\u4e14\u4e00\u53e3\u4e0b\u53bb\u6ee1\u662f\u6a31\u6843\u7684\u5473\u9053\u3002\n^green;\u7c7b\u578b\uff1a\u7d20\u98df^reset;", "Eng" : "Thick, with whole cherries to accent the flavor. ^green;Type: Herbivore^reset;"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/generic/food/cherryporridge.consumable": {"type": "array", "items": {"type": "string"}}}, "required": ["items/generic/food/cherryporridge.consumable"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "philanthropist", "definition" : "One who practices philanthropy; one who loves mankind, and seeks to promote the good of others."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"merged" : "/afs/ualberta.ca/home/t/n/tnguyen1/FillerCreepForAndroid/app/build/intermediates/res/merged/debug/drawable-ldpi/dark_matter.png", "source" : "/afs/ualberta.ca/home/t/n/tnguyen1/FillerCreepForAndroid/app/src/main/res/drawable-ldpi/dark_matter.png"}, {"merged" : "/afs/ualberta.ca/home/t/n/tnguyen1/FillerCreepForAndroid/app/build/intermediates/res/merged/debug/drawable-ldpi/ic_launcher.png", "source" : "/afs/ualberta.ca/home/t/n/tnguyen1/FillerCreepForAndroid/app/src/main/res/drawable-ldpi/ic_launcher.png"}, {"merged" : "/afs/ualberta.ca/home/t/n/tnguyen1/FillerCreepForAndroid/app/build/intermediates/res/merged/debug/drawable-ldpi/matter.png", "source" : "/afs/ualberta.ca/home/t/n/tnguyen1/FillerCreepForAndroid/app/src/main/res/drawable-ldpi/matter.png"}, {"merged" : "/afs/ualberta.ca/home/t/n/tnguyen1/FillerCreepForAndroid/app/build/intermediates/res/merged/debug/drawable-ldpi/dark_energy.png", "source" : "/afs/ualberta.ca/home/t/n/tnguyen1/FillerCreepForAndroid/app/src/main/res/drawable-ldpi/dark_energy.png"}, {"merged" : "/afs/ualberta.ca/home/t/n/tnguyen1/FillerCreepForAndroid/app/build/intermediates/res/merged/debug/drawable-ldpi/energy.png", "source" : "/afs/ualberta.ca/home/t/n/tnguyen1/FillerCreepForAndroid/app/src/main/res/drawable-ldpi/energy.png"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"allMarkdownRemark": {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {"id": {"type": "string"}, "frontmatter": {"type": "object", "properties": {"title": {"type": "string"}, "path": {"type": "string"}, "date": {"type": "string"}, "author": {"type": "null"}}, "required": ["title", "path", "date", "author"]}}, "required": ["id", "frontmatter"]}}, "required": ["node"]}}}, "required": ["edges"]}}, "required": ["allMarkdownRemark"]}, "pageContext": {"type": "object", "properties": {}, "required": []}}, "required": ["data", "pageContext"]}}, "required": ["componentChunkName", "path", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"componentChunkName" : "component---src-pages-projects-tsx", "path" : "/projects/", "result" : {"data" : {"allMarkdownRemark" : {"edges" : [{"node" : {"id" : "7554b70a-33e1-5807-b00c-8b9a411c23ff", "frontmatter" : {"title" : "100 Days of Code", "path" : "/100DaysOfCode", "date" : "Friday 15 May 2020", "author" : null}}}]}}, "pageContext" : {}}} | json_instruct | {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"allMarkdownRemark": {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {"id": {"type": "string"}, "frontmatter": {"type": "object", "properties": {"title": {"type": "string"}, "path": {"type": "string"}, "date": {"type": "string"}, "author": {"type": "null"}}, "required": ["title", "path", "date", "author"]}}, "required": ["id", "frontmatter"]}}, "required": ["node"]}}}, "required": ["edges"]}}, "required": ["allMarkdownRemark"]}, "pageContext": {"type": "object", "properties": {}, "required": []}}, "required": ["data", "pageContext"]}}, "required": ["componentChunkName", "path", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 71139, "cartId" : "ca075f40-a230-463c-b13c-18d99888961a", "preferredProducts" : [1604, 1856], "productReviews" : [{"productId" : 3391, "reviewText" : "one of my hobbies is sailing. and when i'm sailing this works great.", "reviewDate" : "2018-08-03T16:58:30.1653599+03:00"}, {"productId" : 4739, "reviewText" : "My velociraptor loves to play with it.", "reviewDate" : "2018-09-11T14:16:11.659226+03:00"}, {"productId" : 130, "reviewText" : "This Guyana works excessively well. It speedily improves my baseball by a lot.", "reviewDate" : "2020-03-26T02:00:12.1989934+02:00"}, {"productId" : 2255, "reviewText" : "one of my hobbies is scuba diving. and when i'm scuba diving this works great.", "reviewDate" : "2016-09-04T02:46:06.2100112+03:00"}, {"productId" : 521, "reviewText" : "My neighbor Allean has one of these. She works as a sky diver and she says it looks weedy.", "reviewDate" : "2017-10-08T01:21:54.964025+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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"python.pythonPath": {"type": "string"}, "python.linting.enabled": {"type": "boolean"}, "python.linting.pylintEnabled": {"type": "boolean"}, "python.linting.pycodestyleEnabled": {"type": "boolean"}, "python.formatting.provider": {"type": "string"}, "ptyhon.formatting.blackArgs": {"type": "array", "items": {"type": "string"}}, "python.linting.flake8Args": {"type": "array", "items": {"type": "string"}}, "python.linting.pep8Args": {"type": "array", "items": {"type": "string"}}, "python.linting.pycodestyleArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["python.pythonPath", "python.linting.enabled", "python.linting.pylintEnabled", "python.linting.pycodestyleEnabled", "python.formatting.provider", "ptyhon.formatting.blackArgs", "python.linting.flake8Args", "python.linting.pep8Args", "python.linting.pycodestyleArgs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"python.pythonPath" : "/home/jannis/.local/share/virtualenvs/main-zCc3g8zz/bin/python", "python.linting.enabled" : true, "python.linting.pylintEnabled" : false, "python.linting.pycodestyleEnabled" : true, "python.formatting.provider" : "black", "ptyhon.formatting.blackArgs" : ["--line-length=119"], "python.linting.flake8Args" : ["--max-line-length=120"], "python.linting.pep8Args" : ["--max-line-length=120"], "python.linting.pycodestyleArgs" : ["--max-line-length=119"]} | json_instruct | {"type": "object", "properties": {"python.pythonPath": {"type": "string"}, "python.linting.enabled": {"type": "boolean"}, "python.linting.pylintEnabled": {"type": "boolean"}, "python.linting.pycodestyleEnabled": {"type": "boolean"}, "python.formatting.provider": {"type": "string"}, "ptyhon.formatting.blackArgs": {"type": "array", "items": {"type": "string"}}, "python.linting.flake8Args": {"type": "array", "items": {"type": "string"}}, "python.linting.pep8Args": {"type": "array", "items": {"type": "string"}}, "python.linting.pycodestyleArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["python.pythonPath", "python.linting.enabled", "python.linting.pylintEnabled", "python.linting.pycodestyleEnabled", "python.formatting.provider", "ptyhon.formatting.blackArgs", "python.linting.flake8Args", "python.linting.pep8Args", "python.linting.pycodestyleArgs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"domain": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "name": {"type": "string"}, "homepage": {"type": "string"}, "audit": {"type": "string"}, "director": {"type": "string"}, "pre-approval": {"type": "string"}, "updated": {"type": "integer"}}, "required": ["domain", "title", "type", "license", "name", "homepage", "audit", "director", "pre-approval", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"domain" : "zhuobao.com", "title" : "\u6df1\u5733\u5e02\u5353\u5b9d\u79d1\u6280\u80a1\u4efd\u6709\u9650\u516c\u53f8", "type" : "\u4f01\u4e1a", "license" : "\u7ca4ICP\u590705147809\u53f7-1", "name" : "\u6df1\u5733\u5e02\u5353\u5b9d\u79d1\u6280\u80a1\u4efd\u6709\u9650\u516c\u53f8", "homepage" : "www.zhuobao.com", "audit" : "2016-10-28", "director" : "", "pre-approval" : "", "updated" : 1484638603} | json_instruct | {"type": "object", "properties": {"domain": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "name": {"type": "string"}, "homepage": {"type": "string"}, "audit": {"type": "string"}, "director": {"type": "string"}, "pre-approval": {"type": "string"}, "updated": {"type": "integer"}}, "required": ["domain", "title", "type", "license", "name", "homepage", "audit", "director", "pre-approval", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x7e2555d31f75a34a6a5604ac04a7ee8fe769731d", "tool" : "honeybadger", "start" : 1565804251.071129, "end" : 1565804265.0057464, "duration" : 13.934617280960083, "analysis" : [{"errors" : [], "file" : "/unique_chucks/30/0x7e2555d31f75a34a6a5604ac04a7ee8fe769731d.sol", "name" : "SpareCurrencyToken"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"_id": {"type": "string"}, "_isa": {"type": "string"}, "label": {"type": "string"}, "subblock": {"type": "string"}}, "required": ["_id", "_isa", "label", "subblock"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "order_forced-marriage-protection", "_isa" : "radio_group:yes-no-required", "label" : "Forced marriage protection order", "subblock" : "order_forced-marriage-protection_dependencies"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "_isa": {"type": "string"}, "label": {"type": "string"}, "subblock": {"type": "string"}}, "required": ["_id", "_isa", "label", "subblock"], "$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"}, "dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}, "faucet": {"type": "string"}, "lodash": {"type": "string"}, "pg": {"type": "string"}, "ramda": {"type": "string"}}, "required": ["bluebird", "faucet", "lodash", "pg", "ramda"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"generate": {"type": "string"}, "test": {"type": "string"}}, "required": ["generate", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "pg-model-generator", "version" : "1.0.0", "description" : "Generator of PHP 5 classes from PostgreSQL tables schema.", "main" : "index.js", "dependencies" : {"bluebird" : "^3.4.1", "faucet" : "0.0.1", "lodash" : "^4.13.1", "pg" : "^6.0.1", "ramda" : "^0.21.0"}, "devDependencies" : {}, "scripts" : {"generate" : "node ./src/index.js", "test" : "node ./test/unit/run.js | faucet"}, "repository" : {"type" : "git", "url" : "git+https://github.com/nevmerzhitsky/pg-model-generator.git"}, "keywords" : ["postgresql", "php", "php5", "model"], "author" : "Sergey Nevmerzhitsky <sergey.nevmerzhitsky@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/nevmerzhitsky/pg-model-generator/issues"}, "homepage" : "https://github.com/nevmerzhitsky/pg-model-generator#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}, "faucet": {"type": "string"}, "lodash": {"type": "string"}, "pg": {"type": "string"}, "ramda": {"type": "string"}}, "required": ["bluebird", "faucet", "lodash", "pg", "ramda"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"generate": {"type": "string"}, "test": {"type": "string"}}, "required": ["generate", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : {"0" : {"m1" : "\u0644\u0627\u0644\u0647 \u0628\u0647 \u06a9\u0631\u0634\u0645\u0647 \u0628\u0631 \u0686\u0645\u0646 \u0645\u06cc \u062e\u0646\u062f\u062f", "m2" : "\u062f\u0631 \u0628\u0627\u063a \u0634\u0642\u0627\u06cc\u0642 \u0648 \u0633\u0645\u0646 \u0645\u06cc \u062e\u0646\u062f\u062f"}, "1" : {"m1" : "\u062f\u0631 \u062e\u0646\u062f\u0647 \u0628\u06cc\u0646 \u06a9\u0647 \u0628\u0627 \u062a\u0646\u06af\u062f\u0644\u06cc", "m2" : "\u0647\u0645\u0686\u0648\u0646 \u0644\u0628 \u0622\u0646 \u062a\u0646\u06af \u062f\u0647\u0646 \u0645\u06cc \u062e\u0646\u062f\u062f"}}} | json_instruct | {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "github": {"type": "string"}}, "required": ["title", "github"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Darpan Sunwar", "github" : "dsunwar"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "github": {"type": "string"}}, "required": ["title", "github"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"GoodFortuneFromGod": {"type": "array", "items": {"type": "string"}}}, "required": ["GoodFortuneFromGod"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"GoodFortuneFromGod" : ["TheAllegedCar", "BigFancyHouse", "HandWave", "ContrivedCoincidence", "DeusExMachina", "AsTheGoodBookSays", "MockMillionaire", "ConspicuousConsumption", "RealLife", "IWishItWereReal", "EasyEvangelism", "BenevolentGenie", "UnexplainedRecovery", "ReligionIsMagic", "LogicalFallacies", "PlayedForLaughs", "ShipperOnDeck", "OccamsRazor", "GoingPostal", "CorruptChurch", "DaydreamBeliever", "GodIsGood", "ThievesGuild", "AfterTheEnd", "EncyclopediaExposita", "JustBeforeTheEnd", "ThePlague", "ApocalypticGagOrder", "TheImmune", "Parodied", "Lampshaded", "StealthPun", "ItMakesSenseInContext", "DeadpanSnarker", "AmbulanceChaser", "SeriousBusiness", "TropeCodifier", "Karma"]} | json_instruct | {"type": "object", "properties": {"GoodFortuneFromGod": {"type": "array", "items": {"type": "string"}}}, "required": ["GoodFortuneFromGod"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"textCitation" : "[See frec2uzisod on Metamath](http://us.metamath.org/mpegif/frec2uzisod.html)"}], "names" : ["frec2uzisod"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_wph", "#T_wi", "#T_cC", "#T_wcel", "#T_cz", "#T_cG", "#T_wceq", "#T_cfrec--1", "#T_vx", "#T_cmpt--1", "#T_cz", "#T_cmpt--2", "#T_vx", "#T_caddc", "#T_c1", "#T_cfrec--2", "#T_cC", "#T_wph", "#T_wi", "#T_cG", "#T_wiso--1", "#T_cep", "#T_wiso--2", "#T_clt", "#T_com", "#T_wiso--3", "#T_cuz", "#T_cfv", "#T_cC", "#T_cC", "#T_vx", "#T_wph", "#T_vx"], "metaLanguage" : "METAMATH", "remarks" : " ` G ` (see ~ frec2uz0d ) is an isomorphism from natural ordinals to upper integers. (Contributed by Jim Kingdon, 17-May-2020.) ", "statement" : "frec2uz.1 $e |- ( ph -> C e. ZZ ) $.\nfrec2uz.2 $e |- G = frec ( ( x e. ZZ |-> ( x + 1 ) ) , C ) $.\nfrec2uzisod $p |- ( ph -> G Isom _E , < ( _om , ( ZZ>= ` C ) ) ) $.\n$d C x $.\n$d ph x $."} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\u5de5\u5ee0\u540d\u7a31" : "\u7fd4\u5b87\u751f\u91ab\u79d1\u6280\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "63022350", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u81fa\u5317\u5e02\u5167\u6e56\u5340\u6e56\u5143\u91cc\u884c\u611b\u8def\u4e03\u5341\u4e03\u5df7\u516d\u5341\u4e5d\u865f\u516d\u6a13", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u81fa\u5317\u5e02\u5167\u6e56\u5340\u6e56\u5143\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u8521\u5609\u6af8", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "53350764", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "1040127", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["19\u5316\u5b78\u88fd\u54c1\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["194\u5316\u7ca7\u54c1"]} | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : "Organizing without formal organization: group identification, goal setting and social modeling in directing online production.", "fields" : ["formal organization", "group decision making", "collective identity", "online community", "goal setting"], "abstract" : "A challenge for many online production communities is to direct their members to accomplish tasks that are important to the group, even when these tasks may not match individual members' interests. Here we investigate how combining group identification and direction setting can motivate volunteers in online communities to accomplish tasks important to the success of the group as a whole. We hypothesize that group identity, the perception of belonging to a group, triggers in-group favoritism; and direction setting (including explicit direction from group goals and implicit direction from role models) focuses people's group-oriented motivation towards the group's important tasks. We tested our hypotheses in the context of Wikipedia's Collaborations of the Week (COTW), a group goal setting mechanism and a social event within Wikiprojects. Results demonstrate that 1) publicizing important group goals via COTW can have a strong motivating influence on editors who have voluntarily identified themselves as group members compared to those who have not self-identified; 2) the effects of goals spill over to non-goal related tasks; and 3) editors exposed to group role models in COTW are more likely to perform similarly to the models on group-relevant citizenship behaviors. Finally, we discuss design and managerial implications based on our findings.", "citation" : "Citations (62)", "departments" : ["Carnegie Mellon University", "Carnegie Mellon University", "Carnegie Mellon University"], "authors" : ["Haiyi Zhu.....http://dblp.org/pers/hd/z/Zhu:Haiyi", "Robert E. Kraut.....http://dblp.org/pers/hd/k/Kraut:Robert_E=", "Aniket Kittur.....http://dblp.org/pers/hd/k/Kittur:Aniket"], "conf" : "cscw", "year" : "2012", "pages" : 10} | 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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : ["Stir together flour, baking powder, baking soda, cinnamon, and salt.", "In a mixing bowl, combine corn and sugars. Beat in eggs and oil till well blended. Mix flour mixture into batter. Stir in raisins and nuts. Pour batter into greased 9 x 13 inch pan.", "Bake at 350 degrees F (175 degrees C) for 30 to 35 minutes, or till cake tests done. Cool."], "image" : "https://imagesvc.meredithcorp.io/v3/mm/image?q=85&c=sc&poi=face&w=250&h=131&url=https%3A%2F%2Fimages.media-allrecipes.com%2Fuserphotos%2F504252.jpg", "ingredients" : ["1 (14.75 ounce) can cream-style corn", "\u00bd cup packed brown sugar", "\u00be cup white sugar", "3 eggs", "1 cup vegetable oil", "1 tablespoon baking powder", "2\u2009\u00bc cups all-purpose flour", "1 teaspoon baking soda", "1 teaspoon salt", "1 teaspoon ground cinnamon", "\u00bd cup raisins", "\u00bd cup chopped walnuts"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Amazing Corn Cake", "url" : "http://allrecipes.com/recipe/8080/amazing-corn-cake/"} | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"android23": {"type": "object", "properties": {"browserName": {"type": "string"}, "appium-version": {"type": "string"}, "platformName": {"type": "string"}, "platformVersion": {"type": "string"}, "deviceName": {"type": "string"}, "noReset": {"type": "boolean"}, "app": {"type": "string"}}, "required": ["browserName", "appium-version", "platformName", "platformVersion", "deviceName", "noReset", "app"]}, "ios-simulator10iPhone6": {"type": "object", "properties": {"browserName": {"type": "string"}, "appium-version": {"type": "string"}, "platformName": {"type": "string"}, "platformVersion": {"type": "string"}, "deviceName": {"type": "string"}, "app": {"type": "string"}}, "required": ["browserName", "appium-version", "platformName", "platformVersion", "deviceName", "app"]}, "ios-simulator103iPhone6": {"type": "object", "properties": {"browserName": {"type": "string"}, "appium-version": {"type": "string"}, "platformName": {"type": "string"}, "platformVersion": {"type": "string"}, "deviceName": {"type": "string"}, "app": {"type": "string"}}, "required": ["browserName", "appium-version", "platformName", "platformVersion", "deviceName", "app"]}}, "required": ["android23", "ios-simulator10iPhone6", "ios-simulator103iPhone6"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"android23" : {"browserName" : "", "appium-version" : "1.6.5", "platformName" : "Android", "platformVersion" : "6.0", "deviceName" : "Android Emulator", "noReset" : false, "app" : ""}, "ios-simulator10iPhone6" : {"browserName" : "", "appium-version" : "1.6.5", "platformName" : "iOS", "platformVersion" : "10.0", "deviceName" : "iPhone 6 Simulator", "app" : ""}, "ios-simulator103iPhone6" : {"browserName" : "", "appium-version" : "1.6.5", "platformName" : "iOS", "platformVersion" : "10.3", "deviceName" : "iPhone 6 Simulator", "app" : ""}} | json_instruct | {"type": "object", "properties": {"android23": {"type": "object", "properties": {"browserName": {"type": "string"}, "appium-version": {"type": "string"}, "platformName": {"type": "string"}, "platformVersion": {"type": "string"}, "deviceName": {"type": "string"}, "noReset": {"type": "boolean"}, "app": {"type": "string"}}, "required": ["browserName", "appium-version", "platformName", "platformVersion", "deviceName", "noReset", "app"]}, "ios-simulator10iPhone6": {"type": "object", "properties": {"browserName": {"type": "string"}, "appium-version": {"type": "string"}, "platformName": {"type": "string"}, "platformVersion": {"type": "string"}, "deviceName": {"type": "string"}, "app": {"type": "string"}}, "required": ["browserName", "appium-version", "platformName", "platformVersion", "deviceName", "app"]}, "ios-simulator103iPhone6": {"type": "object", "properties": {"browserName": {"type": "string"}, "appium-version": {"type": "string"}, "platformName": {"type": "string"}, "platformVersion": {"type": "string"}, "deviceName": {"type": "string"}, "app": {"type": "string"}}, "required": ["browserName", "appium-version", "platformName", "platformVersion", "deviceName", "app"]}}, "required": ["android23", "ios-simulator10iPhone6", "ios-simulator103iPhone6"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "buildpacks": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "environments": {"type": "object", "properties": {"test": {"type": "object", "properties": {"env": {"type": "object", "properties": {"SHUNIT_HOME": {"type": "string"}}, "required": ["SHUNIT_HOME"]}}, "required": ["env"]}}, "required": ["test"]}}, "required": ["name", "description", "scripts", "buildpacks", "environments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Datadog Agent Gigalixir Buildpack", "description" : "This Gigalixir Buildpack installs the Datadog Agent in your replica to collect system metrics, custom application metrics, and traces", "scripts" : {"test" : ".buildpack-testrunner/bin/run ."}, "buildpacks" : [{"url" : "https://github.com/heroku/heroku-buildpack-testrunner"}], "environments" : {"test" : {"env" : {"SHUNIT_HOME" : "/app/.shunit2"}}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "buildpacks": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "environments": {"type": "object", "properties": {"test": {"type": "object", "properties": {"env": {"type": "object", "properties": {"SHUNIT_HOME": {"type": "string"}}, "required": ["SHUNIT_HOME"]}}, "required": ["env"]}}, "required": ["test"]}}, "required": ["name", "description", "scripts", "buildpacks", "environments"], "$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"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Blend first 7 ingredients in processor until almost smooth. Season with salt and pepper. Pour marinade into 13x9x2-inch glass baking dish. Add swordfish, turning to coat. Cover and refrigerate 2 hours, or let stand at room temperature 1 hour, turning fish twice.", "Prepare barbecue (medium heat). Place smoke chips in 8x6-inch foil packet with open top. Set packet atop coals about 5 minutes before grilling. Grill fish until cooked through, basting often with marinade, about 4 minutes per side.", "Serve fish with avocado mayonnaise."], "ingredients" : ["Avocado mayonnaise", "1 cup thinly sliced green onions", "3/4 cup (packed) cilantro leaves", "3 tablespoons extra-virgin olive oil", "3 tablespoons fresh lime juice", "1 1/2 tablespoons grated lime peel", "1 1/2 tablespoons golden brown sugar", "1 tablespoon coarsely chopped seeded jalape\u00f1o chili", "6 8-ounce swordfish steaks (about 3/4 inch thick)", "1 cup hickory smoke chips, soaked in water 30 minutes, drained"], "language" : "en-US", "source" : "www.epicurious.com", "tags" : ["Food Processor", "Citrus", "Fish", "Herb", "Marinate", "Summer", "Grill/Barbecue"], "title" : "Grilled Swordfish Verde", "url" : "http://www.epicurious.com/recipes/food/views/grilled-swordfish-verde-2146"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"compile": {"type": "string"}, "test": {"type": "string"}, "flatten": {"type": "string"}, "abi": {"type": "string"}, "ui:view": {"type": "string"}, "ui:build": {"type": "string"}}, "required": ["compile", "test", "flatten", "abi", "ui:view", "ui:build"]}, "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": {"ganache-cli": {"type": "string"}, "openzeppelin-solidity": {"type": "string"}, "truffle": {"type": "string"}, "web3-utils": {"type": "string"}}, "required": ["ganache-cli", "openzeppelin-solidity", "truffle", "web3-utils"]}, "devDependencies": {"type": "object", "properties": {"@solui/cli": {"type": "string"}, "chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "chai-bignumber": {"type": "string"}, "eth-gas-reporter": {"type": "string"}, "ethereumjs-util": {"type": "string"}, "node-jq": {"type": "string"}, "truffle-assertions": {"type": "string"}, "truffle-flattener": {"type": "string"}}, "required": ["@solui/cli", "chai", "chai-as-promised", "chai-bignumber", "eth-gas-reporter", "ethereumjs-util", "node-jq", "truffle-assertions", "truffle-flattener"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "native-to-erc20-bridge-contracts", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"compile" : "truffle compile", "test" : "scripts/test.sh", "flatten" : "scripts/flatten.sh", "abi" : "scripts/abi.sh", "ui:view" : "solui view --spec dapp/ui.json --artifacts build/contracts", "ui:build" : "solui publish-folder --spec dapp/ui.json --artifacts build/contracts --folder build/ui"}, "repository" : {"type" : "git", "url" : "git+https://github.com/fuseio/fuse-bridge.git"}, "author" : "LiorRabin", "license" : "MIT", "bugs" : {"url" : "https://github.com/fuseio/fuse-bridge/issues"}, "homepage" : "https://github.com/fuseio/fuse-bridge#readme", "dependencies" : {"ganache-cli" : "^6.7.0", "openzeppelin-solidity" : "2.0.1", "truffle" : "4.1.11", "web3-utils" : "^1.0.0-beta.34"}, "devDependencies" : {"@solui/cli" : "^1.21.1", "chai" : "^4.2.0", "chai-as-promised" : "^7.1.1", "chai-bignumber" : "^3.0.0", "eth-gas-reporter" : "^0.2.12", "ethereumjs-util" : "^6.1.0", "node-jq" : "^1.10.3", "truffle-assertions" : "^0.9.2", "truffle-flattener" : "^1.4.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"compile": {"type": "string"}, "test": {"type": "string"}, "flatten": {"type": "string"}, "abi": {"type": "string"}, "ui:view": {"type": "string"}, "ui:build": {"type": "string"}}, "required": ["compile", "test", "flatten", "abi", "ui:view", "ui:build"]}, "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": {"ganache-cli": {"type": "string"}, "openzeppelin-solidity": {"type": "string"}, "truffle": {"type": "string"}, "web3-utils": {"type": "string"}}, "required": ["ganache-cli", "openzeppelin-solidity", "truffle", "web3-utils"]}, "devDependencies": {"type": "object", "properties": {"@solui/cli": {"type": "string"}, "chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "chai-bignumber": {"type": "string"}, "eth-gas-reporter": {"type": "string"}, "ethereumjs-util": {"type": "string"}, "node-jq": {"type": "string"}, "truffle-assertions": {"type": "string"}, "truffle-flattener": {"type": "string"}}, "required": ["@solui/cli", "chai", "chai-as-promised", "chai-bignumber", "eth-gas-reporter", "ethereumjs-util", "node-jq", "truffle-assertions", "truffle-flattener"]}}, "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": {"Credit": {"type": "string"}}, "required": ["Credit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Credit" : "0"} | json_instruct | {"type": "object", "properties": {"Credit": {"type": "string"}}, "required": ["Credit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\u5de5\u5ee0\u540d\u7a31" : "\u9f4a\u4e9e\u570b\u969b\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99641752", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u81fa\u4e2d\u5e02\u6f6d\u5b50\u5340\u6817\u6797\u91cc\u4e2d\u5c71\u8def\u4e09\u6bb5\u4e09\uff10\u4e94\u5df7\u4e94\u4e09\u865f", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u81fa\u4e2d\u5e02\u6f6d\u5b50\u5340\u6817\u6797\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u4e01\u9e97\u82ac", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "70734287", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0920220", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["30\u6c7d\u8eca\u53ca\u5176\u96f6\u4ef6\u88fd\u9020\u696d", "31\u5176\u4ed6\u904b\u8f38\u5de5\u5177\u53ca\u5176\u96f6\u4ef6\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["303\u6c7d\u8eca\u96f6\u4ef6", "312\u6a5f\u8eca\u53ca\u5176\u96f6\u4ef6", "313\u81ea\u884c\u8eca\u53ca\u5176\u96f6\u4ef6"]} | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"displayName": {"type": "string"}, "getUrl": {"type": "string"}, "logo": {"type": "string"}}, "required": ["displayName", "getUrl", "logo"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"displayName" : "Big Data", "getUrl" : "https://api.coursera.org/api/courses.v1?fields=photoUrl&q=search&query=big+data", "logo" : "big-data-logo.jpg"}, {"displayName" : "Machine Learning", "getUrl" : "https://api.coursera.org/api/courses.v1?fields=photoUrl&q=search&query=machine+learning", "logo" : "machine-learning-logo.png"}, {"displayName" : "Data Science", "getUrl" : "https://api.coursera.org/api/courses.v1?fields=photoUrl&q=search&query=data+science", "logo" : "data-science-logo.jpg"}, {"displayName" : "Algorithms and Data Structures", "getUrl" : "https://api.coursera.org/api/courses.v1?fields=photoUrl&q=search&query=algorithms", "logo" : "algorithms-logo.jpg"}, {"displayName" : "Saved offline", "getUrl" : "/offline", "logo" : "offline-logo.jpg", "featured" : true}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"displayName": {"type": "string"}, "getUrl": {"type": "string"}, "logo": {"type": "string"}}, "required": ["displayName", "getUrl", "logo"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"add_is_visible": {"type": "boolean"}, "category": {"type": "string"}, "default_dim": {"type": "object", "properties": {"height": {"type": "integer"}, "width": {"type": "integer"}}, "required": ["height", "width"]}, "display": {"type": "string"}, "fields": {"type": "object", "properties": {"ABk": {"type": "object", "properties": {"caption": {"type": "string"}, "editor": {"type": "string"}, "name": {"type": "string"}, "optional": {"type": "boolean"}, "rank": {"type": "integer"}, "value": {"type": "string"}}, "required": ["caption", "editor", "name", "optional", "rank", "value"]}}, "required": ["ABk"]}, "icon": {"type": "string"}, "property_applications": {"type": "object", "properties": {"MinWidth": {"type": "boolean"}, "resizable": {"type": "boolean"}}, "required": ["MinWidth", "resizable"]}}, "required": ["add_is_visible", "category", "default_dim", "display", "fields", "icon", "property_applications"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"add_is_visible" : true, "category" : "visual elements", "default_dim" : {"height" : 240, "width" : 320}, "display" : "VideoReplay", "fields" : {"ABk" : {"caption" : "record", "editor" : "DynamicValue", "name" : "record", "optional" : true, "rank" : 0, "value" : "text"}}, "icon" : "ion-android-checkbox-blank", "property_applications" : {"MinWidth" : true, "resizable" : true}} | json_instruct | {"type": "object", "properties": {"add_is_visible": {"type": "boolean"}, "category": {"type": "string"}, "default_dim": {"type": "object", "properties": {"height": {"type": "integer"}, "width": {"type": "integer"}}, "required": ["height", "width"]}, "display": {"type": "string"}, "fields": {"type": "object", "properties": {"ABk": {"type": "object", "properties": {"caption": {"type": "string"}, "editor": {"type": "string"}, "name": {"type": "string"}, "optional": {"type": "boolean"}, "rank": {"type": "integer"}, "value": {"type": "string"}}, "required": ["caption", "editor", "name", "optional", "rank", "value"]}}, "required": ["ABk"]}, "icon": {"type": "string"}, "property_applications": {"type": "object", "properties": {"MinWidth": {"type": "boolean"}, "resizable": {"type": "boolean"}}, "required": ["MinWidth", "resizable"]}}, "required": ["add_is_visible", "category", "default_dim", "display", "fields", "icon", "property_applications"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"cameraNames": {"type": "array", "items": {"type": "string"}}, "cameraPoses": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["cameraNames", "cameraPoses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cameraNames" : ["camera1"], "cameraPoses" : [[-525.053, 315, -443.864, 0.832883, 0, -0.553449, 0]]} | json_instruct | {"type": "object", "properties": {"cameraNames": {"type": "array", "items": {"type": "string"}}, "cameraPoses": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["cameraNames", "cameraPoses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"usingComponents": {"type": "object", "properties": {"guess_what": {"type": "string"}}, "required": ["guess_what"]}, "onReachBottomDistance": {"type": "integer"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBarTextStyle": {"type": "string"}, "backgroundColor": {"type": "string"}, "backgroundTextStyle": {"type": "string"}}, "required": ["usingComponents", "onReachBottomDistance", "navigationBarBackgroundColor", "navigationBarTextStyle", "backgroundColor", "backgroundTextStyle"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"usingComponents" : {"guess_what" : "/components/guess_what/guess_what"}, "onReachBottomDistance" : 50, "navigationBarBackgroundColor" : "#000000", "navigationBarTextStyle" : "white", "backgroundColor" : "#eeeeee", "backgroundTextStyle" : "light"} | json_instruct | {"type": "object", "properties": {"usingComponents": {"type": "object", "properties": {"guess_what": {"type": "string"}}, "required": ["guess_what"]}, "onReachBottomDistance": {"type": "integer"}, "navigationBarBackgroundColor": {"type": "string"}, "navigationBarTextStyle": {"type": "string"}, "backgroundColor": {"type": "string"}, "backgroundTextStyle": {"type": "string"}}, "required": ["usingComponents", "onReachBottomDistance", "navigationBarBackgroundColor", "navigationBarTextStyle", "backgroundColor", "backgroundTextStyle"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"prop-types": {"type": "string"}, "react": {"type": "string"}, "react-art": {"type": "string"}, "react-native": {"type": "string"}, "react-native-remote-svg": {"type": "string"}, "react-native-svg-uri": {"type": "string"}, "react-native-web": {"type": "string"}, "react-primitives": {"type": "string"}, "react-sketchapp": {"type": "string"}, "react-test-renderer": {"type": "string"}, "styled-components": {"type": "string"}}, "required": ["prop-types", "react", "react-art", "react-native", "react-native-remote-svg", "react-native-svg-uri", "react-native-web", "react-primitives", "react-sketchapp", "react-test-renderer", "styled-components"]}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-native": {"type": "string"}, "react-native-web": {"type": "string"}, "react-primitives": {"type": "string"}, "react-art": {"type": "string"}, "react-sketchapp": {"type": "string"}}, "required": ["react", "react-native", "react-native-web", "react-primitives", "react-art", "react-sketchapp"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@unireact/components", "version" : "0.1.0", "description" : "Universal Rendering Components for React", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Santhosh Beerelli <san2beerelli@gmail.com> (http://san2beerelli.com/)", "license" : "MIT", "dependencies" : {"prop-types" : "15.6.1", "react" : "16.3.2", "react-art" : "16.3.2", "react-native" : "0.55.3", "react-native-remote-svg" : "1.2.0", "react-native-svg-uri" : "1.2.3", "react-native-web" : "0.6.1", "react-primitives" : "0.5.0", "react-sketchapp" : "1.1.0", "react-test-renderer" : "16.3.2", "styled-components" : "3.2.6"}, "peerDependencies" : {"react" : ">=16.3.2", "react-native" : ">=0.55.3", "react-native-web" : ">=0.6.1", "react-primitives" : ">=0.5.0", "react-art" : "16.3.2", "react-sketchapp" : ">=1.1.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"prop-types": {"type": "string"}, "react": {"type": "string"}, "react-art": {"type": "string"}, "react-native": {"type": "string"}, "react-native-remote-svg": {"type": "string"}, "react-native-svg-uri": {"type": "string"}, "react-native-web": {"type": "string"}, "react-primitives": {"type": "string"}, "react-sketchapp": {"type": "string"}, "react-test-renderer": {"type": "string"}, "styled-components": {"type": "string"}}, "required": ["prop-types", "react", "react-art", "react-native", "react-native-remote-svg", "react-native-svg-uri", "react-native-web", "react-primitives", "react-sketchapp", "react-test-renderer", "styled-components"]}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-native": {"type": "string"}, "react-native-web": {"type": "string"}, "react-primitives": {"type": "string"}, "react-art": {"type": "string"}, "react-sketchapp": {"type": "string"}}, "required": ["react", "react-native", "react-native-web", "react-primitives", "react-art", "react-sketchapp"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"oneOf": {"type": "array", "items": {"type": "object", "properties": {"standsFor": {"type": "string"}, "value": {"type": "integer"}}, "required": ["standsFor", "value"]}}}, "required": ["oneOf"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"oneOf" : [{"standsFor" : "butt", "value" : 1}, {"standsFor" : "round", "value" : 2}, {"standsFor" : "butt", "value" : 3}]} | json_instruct | {"type": "object", "properties": {"oneOf": {"type": "array", "items": {"type": "object", "properties": {"standsFor": {"type": "string"}, "value": {"type": "integer"}}, "required": ["standsFor", "value"]}}}, "required": ["oneOf"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "2fd481cca4b2b3a49216", "c" : {}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IsRecentlyVerified" : false, "ID" : 67765, "UUID" : "39AA32C2-C79C-4D19-8D9F-4B8100ED8AFD", "DataProviderID" : 1, "OperatorID" : 234, "UsageTypeID" : 4, "AddressInfo" : {"ID" : 68111, "Title" : "Freiwillige Feuerwehr", "AddressLine1" : "Badstra\u00dfe 1", "Town" : "Hilpoltstein", "StateOrProvince" : "Landkreis Roth", "Postcode" : "91161", "CountryID" : 87, "Latitude" : 49.19156235612567, "Longitude" : 11.19463751660238, "AccessComments" : "24/7 verf\u00fcgbar an der Feuerwehr.", "DistanceUnit" : 0}, "Connections" : [{"ID" : 94287, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "Amps" : 32, "Voltage" : 400, "PowerKW" : 22, "CurrentTypeID" : 20, "Quantity" : 2}], "NumberOfPoints" : 2, "StatusTypeID" : 50, "DateLastStatusUpdate" : "2016-05-30T11:18:00Z", "DataQualityLevel" : 1, "DateCreated" : "2016-05-30T11:18:00Z", "SubmissionStatusTypeID" : 200} | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/armors/tier6/fusunwalker/fusunwalker.chest": {"type": "array", "items": {"type": "string"}}, "items/armors/tier6/fusunwalker/fusunwalker.head": {"type": "array", "items": {"type": "string"}}, "items/armors/tier6/fusunwalker/fusunwalker.legs": {"type": "array", "items": {"type": "string"}}}, "required": ["items/armors/tier6/fusunwalker/fusunwalker.chest", "items/armors/tier6/fusunwalker/fusunwalker.head", "items/armors/tier6/fusunwalker/fusunwalker.legs"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"DeniedAlternatives" : [], "Files" : {"items/armors/tier6/fusunwalker/fusunwalker.chest" : ["/description"], "items/armors/tier6/fusunwalker/fusunwalker.head" : ["/description"], "items/armors/tier6/fusunwalker/fusunwalker.legs" : ["/description"]}, "Texts" : {"Chs" : "^orange;\u5957\u88c5\u5956\u52b1^reset;\uff1a\n^yellow;\ue024^reset; \u7b49\u79bb\u5b50\u6b66\u5668: \u4f24\u5bb3x^green;1.15^reset;\n^yellow;\ue024^reset; ^cyan;\u514d\u75ab^reset;: \u81f4\u547d\u8f90\u5c04/\u708e\u70ed/\u5bd2\u51b7, \u538b\u5f3a, \u7a92\u606f", "Eng" : "^orange;Set Bonuses^reset;: \n^yellow;\ue024^reset; Plasma Weapons: Damage x^green;1.15^reset;\n^yellow;\ue024^reset; ^cyan;Immune^reset;: Deadly Rads/Heat/Cold, Pressure, Oxygen"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/armors/tier6/fusunwalker/fusunwalker.chest": {"type": "array", "items": {"type": "string"}}, "items/armors/tier6/fusunwalker/fusunwalker.head": {"type": "array", "items": {"type": "string"}}, "items/armors/tier6/fusunwalker/fusunwalker.legs": {"type": "array", "items": {"type": "string"}}}, "required": ["items/armors/tier6/fusunwalker/fusunwalker.chest", "items/armors/tier6/fusunwalker/fusunwalker.head", "items/armors/tier6/fusunwalker/fusunwalker.legs"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "var _jsxFileName = \"/home/habibur/React/my-app/src/Components/ListComponent.js\";\nimport React from 'react';\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\nexport const ListComponent = props => {\n const numbers = props.number;\n const listItems = numbers.map(number => /*#__PURE__*/_jsxDEV(\"li\", {\n children: \"number\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 6,\n columnNumber: 5\n }, this));\n return /*#__PURE__*/_jsxDEV(\"div\", {\n children: /*#__PURE__*/_jsxDEV(\"ul\", {\n children: listItems\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 11,\n columnNumber: 13\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 10,\n columnNumber: 9\n }, this);\n};\n_c = ListComponent;\n\nvar _c;\n\n$RefreshReg$(_c, \"ListComponent\");", "map" : {"version" : 3, "sources" : ["/home/habibur/React/my-app/src/Components/ListComponent.js"], "names" : ["React", "ListComponent", "props", "numbers", "number", "listItems", "map"], "mappings" : ";AAAA,OAAOA,KAAP,MAAkB,OAAlB;;AAEA,OAAO,MAAMC,aAAa,GAAIC,KAAD,IAAW;AACpC,QAAMC,OAAO,GAAGD,KAAK,CAACE,MAAtB;AACA,QAAMC,SAAS,GAAGF,OAAO,CAACG,GAAR,CAAaF,MAAD,iBAC9B;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,UADkB,CAAlB;AAIA,sBACI;AAAA,2BACI;AAAA,gBAAKC;AAAL;AAAA;AAAA;AAAA;AAAA;AADJ;AAAA;AAAA;AAAA;AAAA,UADJ;AAKH,CAXM;KAAMJ,a", "sourcesContent" : ["import React from 'react'\n\nexport const ListComponent = (props) => {\n const numbers = props.number;\n const listItems = numbers.map((number)=>\n <li>number</li>\n );\n\n return (\n <div>\n <ul>{listItems}</ul>\n </div>\n )\n}\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": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"depend": {"type": "array", "items": {"type": "string"}}}, "required": ["depend"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"depend" : ["7f67ed3d-f604-4663-9fb2-aae349ae6fc2@6c48a"]} | json_instruct | {"type": "object", "properties": {"depend": {"type": "array", "items": {"type": "string"}}}, "required": ["depend"], "$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"}, "devel": {"type": "string"}}, "required": ["start", "devel"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "jade": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "morgan": {"type": "string"}, "serialport": {"type": "string"}}, "required": ["body-parser", "express", "jade", "jsonwebtoken", "morgan", "serialport"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "web-remote", "version" : "0.0.0-a", "description" : "web-remote", "main" : "app.js", "scripts" : {"start" : "node --use_strict app.js", "devel" : "nodemon --use_strict app.js"}, "author" : "Drew Anderson <drew@onlycentral.com>", "license" : "ISC", "dependencies" : {"body-parser" : "^1.15.0", "express" : "^4.13.4", "jade" : "^1.11.0", "jsonwebtoken" : "^6.2.0", "morgan" : "^1.7.0", "serialport" : "^3.0.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"}, "devel": {"type": "string"}}, "required": ["start", "devel"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "jade": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "morgan": {"type": "string"}, "serialport": {"type": "string"}}, "required": ["body-parser", "express", "jade", "jsonwebtoken", "morgan", "serialport"]}}, "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": "array", "items": {"type": "object", "properties": {"adcode": {"type": "string"}, "name": {"type": "string"}, "level": {"type": "string"}, "parent": {"type": "string"}}, "required": ["adcode", "name", "level", "parent"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"adcode" : "630203100", "name" : "\u5e73\u5b89\u9547", "level" : "street", "parent" : "630203"}, {"adcode" : "630203101", "name" : "\u5c0f\u5ce1\u9547", "level" : "street", "parent" : "630203"}, {"adcode" : "630203102", "name" : "\u4e09\u5408\u9547", "level" : "street", "parent" : "630203"}, {"adcode" : "630203200", "name" : "\u6d2a\u6c34\u6cc9\u56de\u65cf\u4e61", "level" : "street", "parent" : "630203"}, {"adcode" : "630203201", "name" : "\u77f3\u7070\u7a91\u56de\u65cf\u4e61", "level" : "street", "parent" : "630203"}, {"adcode" : "630203202", "name" : "\u53e4\u57ce\u56de\u65cf\u4e61", "level" : "street", "parent" : "630203"}, {"adcode" : "630203203", "name" : "\u6c99\u6c9f\u56de\u65cf\u4e61", "level" : "street", "parent" : "630203"}, {"adcode" : "630203204", "name" : "\u5df4\u85cf\u6c9f\u56de\u65cf\u4e61", "level" : "street", "parent" : "630203"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"adcode": {"type": "string"}, "name": {"type": "string"}, "level": {"type": "string"}, "parent": {"type": "string"}}, "required": ["adcode", "name", "level", "parent"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "subject": {"type": "string"}, "column": {"type": "string"}, "intro": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "cover": {"type": "string"}, "date": {"type": "string"}}, "required": ["name", "title", "author", "subject", "column", "intro", "keywords", "cover", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "\uff1c\u5929\u6743\uff1e\u731b\u58eb\u9c81\u8fc5", "title" : "\uff1c\u5929\u6743\uff1e\u731b\u58eb\u9c81\u8fc5", "author" : "\u4f5a\u540d", "subject" : "", "column" : "", "intro" : "**\u5728\u6211\u770b\u6765\uff0c\u751f\u6d3b\u800c\u975e\u6279\u5224\u624d\u662f\u9c81\u8fc5\u601d\u60f3\u4e0e\u6587\u5b66\u7684\u4e3b\u9898\uff0c\u53ef\u5c31\u50cf\u95f0\u571f\u8fd9\u6837\u518d\u65e5\u5e38\u4e0d\u8fc7\u7684\u5f62\u8c61\uff0c\u4e5f\u4ee5\u6700\u53bb\u610f\u8bc6\u5f62\u6001\u7684\u65b9\u5f0f\u544a\u77e5\u7740\u4e16\u754c\u7684\u6c89\u6ca6\uff0c\u66f4\u9051\u8bba\u7edf\u6cbb\u8005\u7684\u6b8b\u66b4\u3001\u6c11\u4f17\u7684\u9ebb\u6728\u3001\u5356\u56fd...", "keywords" : ["\u60b2\u6124", "\u5929\u6743", "\u6124\u6012", "\u6587\u827a", "\u8bed\u4e1d", "\u9c81\u8fc5", "\u731b\u58eb", "\u5b5f\u5b50"], "cover" : "6af748ae-ffef-4471-82a9-e66f4b80f812.jpg", "date" : "2011-10-06T13:54:50.000Z"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "subject": {"type": "string"}, "column": {"type": "string"}, "intro": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "cover": {"type": "string"}, "date": {"type": "string"}}, "required": ["name", "title", "author", "subject", "column", "intro", "keywords", "cover", "date"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"stellar-sdk.js": {"type": "string"}, "stellar-sdk.min.js": {"type": "string"}}, "required": ["stellar-sdk.js", "stellar-sdk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stellar-sdk.js" : "sha256-CvTxZiwqEB5qcuFyfuPrBq6JobVxYBwOke3HSLCRj5Y=", "stellar-sdk.min.js" : "sha256-LfwcDLzSds5K6wgWoyBHxD51P7Wv8C9/dVl84de9IXU="} | json_instruct | {"type": "object", "properties": {"stellar-sdk.js": {"type": "string"}, "stellar-sdk.min.js": {"type": "string"}}, "required": ["stellar-sdk.js", "stellar-sdk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "623b42061db8c09a526858e0d8ee68af477e2513"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[190, -586, 8043, -86, -251, 369, -121, -71, -389, -90, -123, 86, 372, 232, -493, 7883, 23, 361, -7809, 118, -10991, 3822, -470, 10228, 177, -10098, 16033, -303, -4948, 5584, 167, 55], [9811, 9982, 2993, 9990, 10061, 1986, 9866, 9964, 9825, 3252, 10112, 9789, 10114, 9986, 9963, 5201, 9962, 948, 9101, 10013, 2508, 1289, 9918, 1113, 10133, 2078, 1784, 9805, 2524, 680, 10090, 9870]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "data": {"type": "object", "properties": {"type": {"type": "string"}, "attuned": {"type": "boolean"}, "bulk": {"type": "string"}, "capacity": {"type": "object", "properties": {"max": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["max", "value"]}, "damage": {"type": "object", "properties": {"parts": {"type": "array", "items": {}}}, "required": ["parts"]}, "description": {"type": "object", "properties": {"chat": {"type": "string"}, "unidentified": {"type": "string"}, "value": {"type": "string"}}, "required": ["chat", "unidentified", "value"]}, "equipped": {"type": "boolean"}, "hands": {"type": "integer"}, "identified": {"type": "boolean"}, "level": {"type": "integer"}, "price": {"type": "integer"}, "quantity": {"type": "integer"}, "source": {"type": "string"}, "usage": {"type": "object", "properties": {"per": {"type": "string"}, "value": {"type": "integer"}}, "required": ["per", "value"]}}, "required": ["type", "attuned", "bulk", "capacity", "damage", "description", "equipped", "hands", "identified", "level", "price", "quantity", "source", "usage"]}, "flags": {"type": "object", "properties": {}, "required": []}, "img": {"type": "string"}, "permission": {"type": "object", "properties": {"QKfICymYNdnzinV1": {"type": "integer"}, "default": {"type": "integer"}}, "required": ["QKfICymYNdnzinV1", "default"]}}, "required": ["_id", "name", "type", "data", "flags", "img", "permission"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "NvrgoJ53pmEkacLl", "name" : "Chemalyzer", "type" : "technological", "data" : {"type" : "", "attuned" : false, "bulk" : "L", "capacity" : {"max" : 20, "value" : 20}, "damage" : {"parts" : []}, "description" : {"chat" : "", "unidentified" : "", "value" : "<p><span id=\"ctl00_MainContent_DataListTechItems_ctl00_LabelName\">This handheld unit includes an extendable wand tipped with a sampling nozzle, and can be easily operated with a single hand. It grants a +4 circumstance bonus to Engineering, Mysticism, and Physical Science checks to identify an unknown @Compendium[sfrpg.rules.aKqRtg165rAly1Cc]{Drug}, medicinal, poison, or other chemical substance. </span></p>"}, "equipped" : false, "hands" : 1, "identified" : true, "level" : 1, "price" : 150, "quantity" : 1, "source" : "Armory", "usage" : {"per" : "use", "value" : 2}}, "flags" : {}, "img" : "systems/sfrpg/icons/equipment/technological%20items/chemalyzer.webp", "permission" : {"QKfICymYNdnzinV1" : 3, "default" : 0}} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "data": {"type": "object", "properties": {"type": {"type": "string"}, "attuned": {"type": "boolean"}, "bulk": {"type": "string"}, "capacity": {"type": "object", "properties": {"max": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["max", "value"]}, "damage": {"type": "object", "properties": {"parts": {"type": "array", "items": {}}}, "required": ["parts"]}, "description": {"type": "object", "properties": {"chat": {"type": "string"}, "unidentified": {"type": "string"}, "value": {"type": "string"}}, "required": ["chat", "unidentified", "value"]}, "equipped": {"type": "boolean"}, "hands": {"type": "integer"}, "identified": {"type": "boolean"}, "level": {"type": "integer"}, "price": {"type": "integer"}, "quantity": {"type": "integer"}, "source": {"type": "string"}, "usage": {"type": "object", "properties": {"per": {"type": "string"}, "value": {"type": "integer"}}, "required": ["per", "value"]}}, "required": ["type", "attuned", "bulk", "capacity", "damage", "description", "equipped", "hands", "identified", "level", "price", "quantity", "source", "usage"]}, "flags": {"type": "object", "properties": {}, "required": []}, "img": {"type": "string"}, "permission": {"type": "object", "properties": {"QKfICymYNdnzinV1": {"type": "integer"}, "default": {"type": "integer"}}, "required": ["QKfICymYNdnzinV1", "default"]}}, "required": ["_id", "name", "type", "data", "flags", "img", "permission"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "peerDependencies": {"type": "object", "properties": {"babel-eslint": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "eslint-plugin-react": {"type": "string"}}, "required": ["babel-eslint", "eslint", "eslint-config-airbnb", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react"]}, "scripts": {"type": "object", "properties": {"publish": {"type": "string"}, "test": {"type": "string"}}, "required": ["publish", "test"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "keywords", "peerDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "eslint-config-skyscanner", "version" : "2.0.0", "description" : "Skyscanner's ESLint config.", "main" : "index.js", "repository" : {"type" : "git", "url" : "https://github.com/Skyscanner/eslint-config-skyscanner"}, "author" : "Matthew Davidson <matthew.davidson@skyscanner.net>", "license" : "Apache-2.0", "keywords" : ["eslint", "eslintconfig", "config", "skyscanner", "javascript", "styleguide"], "peerDependencies" : {"babel-eslint" : "^8.0.1", "eslint" : "^4.9.0", "eslint-config-airbnb" : "^16.1.0", "eslint-plugin-import" : "^2.8.0", "eslint-plugin-jsx-a11y" : "^6.0.2", "eslint-plugin-react" : "^7.4.0"}, "scripts" : {"publish" : "np", "test" : "(cd test && ./e2e-test.sh)"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "peerDependencies": {"type": "object", "properties": {"babel-eslint": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "eslint-plugin-react": {"type": "string"}}, "required": ["babel-eslint", "eslint", "eslint-config-airbnb", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-react"]}, "scripts": {"type": "object", "properties": {"publish": {"type": "string"}, "test": {"type": "string"}}, "required": ["publish", "test"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "keywords", "peerDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "IS THIS, WHAT MOVES THE MIND, IN EVERY PARTICULAR INSTANCE,", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/4266.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"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"glob": {"type": "string"}, "html-minifier-terser": {"type": "string"}}, "required": ["glob", "html-minifier-terser"]}, "devDependencies": {"type": "object", "properties": {"@types/glob": {"type": "string"}, "@types/html-minifier-terser": {"type": "string"}, "@types/node": {"type": "string"}, "tsup": {"type": "string"}, "vite": {"type": "string"}}, "required": ["@types/glob", "@types/html-minifier-terser", "@types/node", "tsup", "vite"]}, "peerDependencies": {"type": "object", "properties": {"vite": {"type": "string"}}, "required": ["vite"]}}, "required": ["name", "version", "description", "main", "module", "types", "scripts", "author", "license", "keywords", "homepage", "repository", "dependencies", "devDependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "vite-plugin-minify", "version" : "1.3.1", "description" : "Minify html in production", "main" : "dist/index.js", "module" : "dist/index.mjs", "types" : "dist/index.d.ts", "scripts" : {"build" : "tsup"}, "author" : "zhuweiyou <i@zhuweiyou.com>", "license" : "MIT", "keywords" : ["vite", "minify", "minify-html", "vite-plugin", "vite-plugin-minify"], "homepage" : "https://github.com/zhuweiyou/vite-plugin-minify#readme", "repository" : {"type" : "git", "url" : "git+https://github.com/zhuweiyou/vite-plugin-minify.git"}, "dependencies" : {"glob" : "^8.0.3", "html-minifier-terser" : "^6.1.0"}, "devDependencies" : {"@types/glob" : "^7.2.0", "@types/html-minifier-terser" : "^6.1.0", "@types/node" : "^17.0.36", "tsup" : "^6.0.1", "vite" : "*"}, "peerDependencies" : {"vite" : "^2.9.9"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"glob": {"type": "string"}, "html-minifier-terser": {"type": "string"}}, "required": ["glob", "html-minifier-terser"]}, "devDependencies": {"type": "object", "properties": {"@types/glob": {"type": "string"}, "@types/html-minifier-terser": {"type": "string"}, "@types/node": {"type": "string"}, "tsup": {"type": "string"}, "vite": {"type": "string"}}, "required": ["@types/glob", "@types/html-minifier-terser", "@types/node", "tsup", "vite"]}, "peerDependencies": {"type": "object", "properties": {"vite": {"type": "string"}}, "required": ["vite"]}}, "required": ["name", "version", "description", "main", "module", "types", "scripts", "author", "license", "keywords", "homepage", "repository", "dependencies", "devDependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/yaml": {"type": "string"}, "shaggy8871/console": {"type": "string"}, "jfcherng/php-diff": {"type": "string"}}, "required": ["php", "symfony/yaml", "shaggy8871/console", "jfcherng/php-diff"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Yami\\": {"type": "string"}}, "required": ["Yami\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tests\\": {"type": "string"}}, "required": ["Tests\\"]}}, "required": ["psr-4"]}, "bin": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "type", "license", "authors", "repositories", "minimum-stability", "require", "require-dev", "autoload", "autoload-dev", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "shaggy8871/yami", "description" : "Yami is a YAML migration tool", "type" : "application", "license" : "MIT", "authors" : [{"name" : "J. Ginsberg", "email" : "john.ginsberg@tristadeca.com"}], "repositories" : [{"type" : "vcs", "url" : "https://github.com/shaggy8871/php-diff"}], "minimum-stability" : "dev", "require" : {"php" : ">=7.4.0", "symfony/yaml" : "^5.0", "shaggy8871/console" : ">=1.0.5", "jfcherng/php-diff" : "v6.6.5"}, "require-dev" : {"phpunit/phpunit" : "^8"}, "autoload" : {"psr-4" : {"Yami\\" : "./src/Yami/"}}, "autoload-dev" : {"psr-4" : {"Tests\\" : "./tests/Tests/"}}, "bin" : ["yami"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/yaml": {"type": "string"}, "shaggy8871/console": {"type": "string"}, "jfcherng/php-diff": {"type": "string"}}, "required": ["php", "symfony/yaml", "shaggy8871/console", "jfcherng/php-diff"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Yami\\": {"type": "string"}}, "required": ["Yami\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tests\\": {"type": "string"}}, "required": ["Tests\\"]}}, "required": ["psr-4"]}, "bin": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "type", "license", "authors", "repositories", "minimum-stability", "require", "require-dev", "autoload", "autoload-dev", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "imagePath": {"type": "string"}, "shortDesc": {"type": "string"}, "overViewHTML": {"type": "string"}, "githubUrl": {"type": "string"}, "liveProject": {"type": "string"}, "featured": {"type": "boolean"}, "keywords": {"type": "array", "items": {"type": "string"}}, "design": {"type": "boolean"}, "designHTML": {"type": "string"}, "colorScheme": {"type": "array", "items": {"type": "string"}}, "designImages": {"type": "array", "items": {"type": "string"}}, "contribution": {"type": "array", "items": {"type": "string"}}, "seoURL": {"type": "string"}}, "required": ["name", "imagePath", "shortDesc", "overViewHTML", "githubUrl", "liveProject", "featured", "keywords", "design", "designHTML", "colorScheme", "designImages", "contribution", "seoURL"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Personal Portfolio", "imagePath" : "/images/projects/portfolio/", "shortDesc" : "An angular application displaying featured projects and work history", "overViewHTML" : "<p>I chose to build my portfolio in angular to explore its capabilities a little more. I encountered some challenges with integrating the mixItUp library as the function needed to be called after all of my portfolio items had been rendered by angular. Several resources suggested adding a timeOut, but this seemed like the lazy way out and either had the potential to fail or negatively impact the user experience. After looking into it a little more I created a directive that would broadcast once the last project loaded. I could then listen for this in the mixitup directive.</p>", "githubUrl" : "https://github.com/CarrieShort/node-portfolio", "liveProject" : "https://www.carrieshort.com", "featured" : false, "keywords" : ["UX", "Branding", "Angular", "Express", "mongoDB", "REST API", "HTML", "CSS", "jQuery", "javaScript"], "design" : true, "designHTML" : "<p>The site is fully responsive with custom break points added to provide the best experience at a variety of screen sizes. I wanted my portfolio to demonstrate that I had a background in design, but didn't want to focus to much on the design side.</p>", "colorScheme" : ["91eed9", "6fa89b", "fc456c", "3dd3b2", "ffffff", "3a3a3a", "a8a8a8"], "designImages" : ["artboards.png", "screenshot-mobile.png", "screenshot-web.png"], "contribution" : ["product Owner", "UX", "Branding", "CSS", "HTML", "javaScript", "Routes", "Unit Test", "Angular"], "seoURL" : "personal-portfolio"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "imagePath": {"type": "string"}, "shortDesc": {"type": "string"}, "overViewHTML": {"type": "string"}, "githubUrl": {"type": "string"}, "liveProject": {"type": "string"}, "featured": {"type": "boolean"}, "keywords": {"type": "array", "items": {"type": "string"}}, "design": {"type": "boolean"}, "designHTML": {"type": "string"}, "colorScheme": {"type": "array", "items": {"type": "string"}}, "designImages": {"type": "array", "items": {"type": "string"}}, "contribution": {"type": "array", "items": {"type": "string"}}, "seoURL": {"type": "string"}}, "required": ["name", "imagePath", "shortDesc", "overViewHTML", "githubUrl", "liveProject", "featured", "keywords", "design", "designHTML", "colorScheme", "designImages", "contribution", "seoURL"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "required": ["name", "id", "isDefault", "gains"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Cyberdrive Forte Classic Soprano", "id" : "d1cdf635c6d0f8eb8312c76d9e14b6743a75490a", "isDefault" : false, "gains" : {"global" : -6.9, "bands" : [-8.5, -4.3, -3.9, -2.3, 1.8, 3.5, 7.0, -5.9, -2.1, -0.7]}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "isDefault": {"type": "boolean"}, "gains": {"type": "object", "properties": {"global": {"type": "number"}, "bands": {"type": "array", "items": {"type": "number"}}}, "required": ["global", "bands"]}}, "required": ["name", "id", "isDefault", "gains"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1973, 5], [1977, 5], [1985, 5], [1988, 7], [1991, 8], [1992, 8], [1997, 5], [2001, 7], [2002, 8], [2009, 6], [2012, 6]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"RavenDbUrls": {"type": "array", "items": {"type": "string"}}, "RavenDbDatabase": {"type": "string"}, "FacebookAppId": {"type": "string"}, "FacebookAppSecret": {"type": "string"}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}}, "required": ["RavenDbUrls", "RavenDbDatabase", "FacebookAppId", "FacebookAppSecret", "Logging", "AllowedHosts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"RavenDbUrls" : ["http://localhost:32779"], "RavenDbDatabase" : "IdentitySample", "FacebookAppId" : "", "FacebookAppSecret" : "", "Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft" : "Warning", "Microsoft.Hosting.Lifetime" : "Information"}}, "AllowedHosts" : "*"} | json_instruct | {"type": "object", "properties": {"RavenDbUrls": {"type": "array", "items": {"type": "string"}}, "RavenDbDatabase": {"type": "string"}, "FacebookAppId": {"type": "string"}, "FacebookAppSecret": {"type": "string"}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}}, "required": ["RavenDbUrls", "RavenDbDatabase", "FacebookAppId", "FacebookAppSecret", "Logging", "AllowedHosts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x59217d3e1daebbeb89a8d92e4ee0e936bf5e7f93", "tool" : "manticore", "start" : 1563993839.2903256, "end" : 1563995641.5900328, "duration" : 1802.2997071743011, "analysis" : [[], [], [], [], []]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1125965161, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "e3e41f5a94f2a84525832474fe86505f", "wof:id" : 1125965161, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [-1.65499, 51.86722, -1.65499, 51.86722], "geometry" : {"coordinates" : [-1.65499, 51.86722], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "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"]}, "properties": {"type": "object", "properties": {"address": {"type": "string"}, "country_code": {"type": "string"}, "iata": {"type": "string"}, "icao": {"type": "null"}, "name": {"type": "string"}}, "required": ["address", "country_code", "iata", "icao", "name"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[104.922592, 24.99295], [104.92054, 24.996906], [104.92012, 24.997726], [104.920166, 24.998133], [104.920494, 25.000776], [104.920616, 25.001842], [104.920731, 25.002884], [104.920876, 25.004766], [104.920807, 25.005199], [104.919876, 25.007429], [104.920822, 25.007196], [104.920876, 25.00708], [104.922523, 25.003483], [104.921272, 24.999928], [104.92128, 24.999649], [104.921379, 24.998508], [104.921425, 24.99828], [104.921501, 24.997858], [104.922173, 24.995432], [104.92231, 24.994926], [104.922501, 24.99407], [104.922592, 24.99295]]], [[[104.924988, 25.114626], [104.93145, 25.118233], [104.936272, 25.124157], [104.931458, 25.118061], [104.924988, 25.114626]]]]}, "properties" : {"address" : "Xingyi, Xingyi, Guizhou, China (ACX)", "country_code" : "CN", "iata" : "ACX", "icao" : null, "name" : "Xingyi Airport"}} | 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": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"address": {"type": "string"}, "country_code": {"type": "string"}, "iata": {"type": "string"}, "icao": {"type": "null"}, "name": {"type": "string"}}, "required": ["address", "country_code", "iata", "icao", "name"]}}, "required": ["type", "geometry", "properties"], "$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": {"production": {"type": "string"}, "start": {"type": "string"}, "start-dev": {"type": "string"}, "migrate": {"type": "string"}, "test": {"type": "string"}}, "required": ["production", "start", "start-dev", "migrate", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "body-parser": {"type": "string"}, "express": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mssql": {"type": "string"}, "pm2": {"type": "string"}}, "required": ["axios", "body-parser", "express", "jsonwebtoken", "mssql", "pm2"]}, "devDependencies": {"type": "object", "properties": {"cross-env": {"type": "string"}, "jest": {"type": "string"}, "nodemon": {"type": "string"}, "supertest": {"type": "string"}}, "required": ["cross-env", "jest", "nodemon", "supertest"]}, "jest": {"type": "object", "properties": {"testEnvironment": {"type": "string"}, "coveragePathIgnorePatterns": {"type": "array", "items": {"type": "string"}}}, "required": ["testEnvironment", "coveragePathIgnorePatterns"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "backend-developer-assessment-insurance-company", "version" : "1.0.0", "description" : "", "main" : "./src/index.js", "scripts" : {"production" : "pm2 start ./src/index.js --watch --name backend-app", "start" : "node ./src/index.js", "start-dev" : "nodemon index.js", "migrate" : "node ./src/database/initialSetup.js", "test" : "jest"}, "author" : "Roberto de Figueiredo Minelli", "license" : "MIT", "dependencies" : {"axios" : "^0.19.0", "body-parser" : "^1.19.0", "express" : "^4.17.1", "jsonwebtoken" : "^8.5.1", "mssql" : "^5.1.0", "pm2" : "^4.1.2"}, "devDependencies" : {"cross-env" : "^6.0.0", "jest" : "^24.9.0", "nodemon" : "^1.19.2", "supertest" : "^4.0.2"}, "jest" : {"testEnvironment" : "node", "coveragePathIgnorePatterns" : ["/node_modules/"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"production": {"type": "string"}, "start": {"type": "string"}, "start-dev": {"type": "string"}, "migrate": {"type": "string"}, "test": {"type": "string"}}, "required": ["production", "start", "start-dev", "migrate", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "body-parser": {"type": "string"}, "express": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mssql": {"type": "string"}, "pm2": {"type": "string"}}, "required": ["axios", "body-parser", "express", "jsonwebtoken", "mssql", "pm2"]}, "devDependencies": {"type": "object", "properties": {"cross-env": {"type": "string"}, "jest": {"type": "string"}, "nodemon": {"type": "string"}, "supertest": {"type": "string"}}, "required": ["cross-env", "jest", "nodemon", "supertest"]}, "jest": {"type": "object", "properties": {"testEnvironment": {"type": "string"}, "coveragePathIgnorePatterns": {"type": "array", "items": {"type": "string"}}}, "required": ["testEnvironment", "coveragePathIgnorePatterns"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"atax_kernel20": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "integer"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "integer"}, "device_end": {"type": "integer"}, "host_queued_end": {"type": "number"}}, "required": ["device_start", "host_queued_start", "device_queued", "device_end", "host_queued_end"]}, "device": {"type": "string"}, "nd_range": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}, "cmdq": {"type": "integer"}, "read": {"type": "object", "properties": {"device_start": {"type": "integer"}, "device_end": {"type": "integer"}}, "required": ["device_start", "device_end"]}}, "required": ["write", "device", "nd_range", "cmdq", "read"]}}, "required": ["atax_kernel20"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"atax_kernel20" : {"write" : {"device_start" : -1, "host_queued_start" : 1586234448.596443, "device_queued" : -1, "device_end" : -1, "host_queued_end" : 1586234448.59673}, "device" : "cpu", "nd_range" : {"device_start" : 2902222.7862241142, "device_end" : 2902222.787035177}, "cmdq" : 0, "read" : {"device_start" : -1, "device_end" : -1}}} | json_instruct | {"type": "object", "properties": {"atax_kernel20": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "integer"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "integer"}, "device_end": {"type": "integer"}, "host_queued_end": {"type": "number"}}, "required": ["device_start", "host_queued_start", "device_queued", "device_end", "host_queued_end"]}, "device": {"type": "string"}, "nd_range": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}, "cmdq": {"type": "integer"}, "read": {"type": "object", "properties": {"device_start": {"type": "integer"}, "device_end": {"type": "integer"}}, "required": ["device_start", "device_end"]}}, "required": ["write", "device", "nd_range", "cmdq", "read"]}}, "required": ["atax_kernel20"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"<page title>": {"type": "string"}, "angle of view diagonal": {"type": "string"}, "diaphragm blades": {"type": "string"}, "filter size": {"type": "string"}, "focal length": {"type": "string"}, "lens construction": {"type": "string"}, "maximum aperture": {"type": "string"}, "maximum magnification ratio": {"type": "string"}, "minimum aperture": {"type": "string"}, "minimum focus distance": {"type": "string"}, "model no": {"type": "string"}, "mounts available": {"type": "string"}, "standard accessory": {"type": "string"}, "weight": {"type": "string"}}, "required": ["<page title>", "angle of view diagonal", "diaphragm blades", "filter size", "focal length", "lens construction", "maximum aperture", "maximum magnification ratio", "minimum aperture", "minimum focus distance", "model no", "mounts available", "standard accessory", "weight"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"<page title>" : "Tamron SP AF 24-70mm f/2.8 Di VC USD Lenses - Canon Mount", "angle of view diagonal" : "84\u00b0 4' to 34\u00b0 21' (full-frame 35mm format)", "diaphragm blades" : "9 (rounded diaphragm)", "filter size" : "82mm", "focal length" : "24-70mm", "lens construction" : "17 elements in 12 groups, including:", "maximum aperture" : "f/2.8", "maximum magnification ratio" : "1:5 (at f=70mm: MFD 0.38m)", "minimum aperture" : "f/22", "minimum focus distance" : "0.38m (15.0in.)", "model no" : "A007", "mounts available" : "Canon AF, Sony (Konica Minolta), Nikon AF-D", "standard accessory" : "Flower-shaped Lens Hood", "weight" : "825g (29.1oz)"} | json_instruct | {"type": "object", "properties": {"<page title>": {"type": "string"}, "angle of view diagonal": {"type": "string"}, "diaphragm blades": {"type": "string"}, "filter size": {"type": "string"}, "focal length": {"type": "string"}, "lens construction": {"type": "string"}, "maximum aperture": {"type": "string"}, "maximum magnification ratio": {"type": "string"}, "minimum aperture": {"type": "string"}, "minimum focus distance": {"type": "string"}, "model no": {"type": "string"}, "mounts available": {"type": "string"}, "standard accessory": {"type": "string"}, "weight": {"type": "string"}}, "required": ["<page title>", "angle of view diagonal", "diaphragm blades", "filter size", "focal length", "lens construction", "maximum aperture", "maximum magnification ratio", "minimum aperture", "minimum focus distance", "model no", "mounts available", "standard accessory", "weight"], "$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" : [1052.36, 222.793, 1, 1084.21, 240.865, 1, 1074.22, 240.87, 1, 1080.36, 292.841, 1, 288.016, 332.77, 0, 1098.33, 239.874, 1, 1107.39, 293.746, 1, 1095.23, 344.038, 1, 1067.25, 336.986, 1, 1069.05, 403.873, 1, 1072.21, 467.951, 1, 1083.22, 336.038, 1, 1101.76, 401.36, 1, 1146.82, 463.067, 1, 1048.5, 212.685, 0, 1051.38, 212.786, 1, 334.632, 218.529, 0, 1068.37, 210.885, 1], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}, "test": {"type": "string"}, "example": {"type": "string"}}, "required": ["lib", "test", "example"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test-dev": {"type": "string"}}, "required": ["test", "test-dev"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jasmine-node": {"type": "string"}}, "required": ["jasmine-node"]}, "dependencies": {"type": "object", "properties": {"lazier": {"type": "string"}, "node-osc": {"type": "string"}}, "required": ["lazier", "node-osc"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "keywords", "author", "repository", "license", "devDependencies", "dependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "bit-by-bit", "version" : "0.0.6", "description" : "tiny libraries", "main" : "bbb.js", "directories" : {"lib" : "./lib", "test" : "./test", "example" : "./example"}, "scripts" : {"test" : "NODE_PATH=. jasmine-node test", "test-dev" : "NODE_PATH=. jasmine-node --autotest test --watch ./bbb.js ./lib"}, "keywords" : [], "author" : "ISHII 2bit", "repository" : {"type" : "git", "url" : "https://github.com/2bbb/node-bit_by_bit"}, "license" : "MIT", "devDependencies" : {"jasmine-node" : "^1.14.5"}, "dependencies" : {"lazier" : "0.0.2", "node-osc" : "^2.0.4"}, "engines" : {"node" : ">=6.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}, "test": {"type": "string"}, "example": {"type": "string"}}, "required": ["lib", "test", "example"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test-dev": {"type": "string"}}, "required": ["test", "test-dev"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jasmine-node": {"type": "string"}}, "required": ["jasmine-node"]}, "dependencies": {"type": "object", "properties": {"lazier": {"type": "string"}, "node-osc": {"type": "string"}}, "required": ["lazier", "node-osc"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "keywords", "author", "repository", "license", "devDependencies", "dependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"fields": {"type": "array", "items": {"type": "string"}}, "moreFields": {"type": "array", "items": {"type": "string"}}, "geometry": {"type": "array", "items": {"type": "string"}}, "terms": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "object", "properties": {"man_made": {"type": "string"}}, "required": ["man_made"]}, "name": {"type": "string"}}, "required": ["fields", "moreFields", "geometry", "terms", "tags", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"fields" : ["name", "operator", "address", "access_simple", "building_area"], "moreFields" : ["website", "phone", "email", "fax"], "geometry" : ["point", "area"], "terms" : ["astronomical", "meteorological"], "tags" : {"man_made" : "observatory"}, "name" : "Observatory"} | json_instruct | {"type": "object", "properties": {"fields": {"type": "array", "items": {"type": "string"}}, "moreFields": {"type": "array", "items": {"type": "string"}}, "geometry": {"type": "array", "items": {"type": "string"}}, "terms": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "object", "properties": {"man_made": {"type": "string"}}, "required": ["man_made"]}, "name": {"type": "string"}}, "required": ["fields", "moreFields", "geometry", "terms", "tags", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"label": {"type": "string"}, "position": {"type": "integer"}}, "required": ["label", "position"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"label" : "F.A.Q.", "position" : 999} | json_instruct | {"type": "object", "properties": {"label": {"type": "string"}, "position": {"type": "integer"}}, "required": ["label", "position"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "IMPACT", "symbol" : "$IMPACT", "logoURI" : "https://raw.githubusercontent.com/LexyVolpe/token/main/60kb.png", "decimals" : 9, "address" : "3WA8kxjyBTsfvxdTdmJeRtk1SKWCXYNp6QK4n4j5Zsbg", "chainId" : 101, "tags" : ["social-token"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"projectId": {"type": "string"}, "projectName": {"type": "string"}}, "required": ["projectId", "projectName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"projectId" : "ee5de5e3-a436-4dad-9c22-7a262d0fbe04", "projectName" : "exoplayer-codelab-00"} | json_instruct | {"type": "object", "properties": {"projectId": {"type": "string"}, "projectName": {"type": "string"}}, "required": ["projectId", "projectName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "ALFREDA", "frequency" : 18975, "males" : "0.1844532279314888 %", "females" : "99.81554677206852 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"dev:server": {"type": "string"}, "typeorm": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev:server", "typeorm", "test"]}, "dependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "express": {"type": "string"}, "ts-node-dev": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/express", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "express", "ts-node-dev", "typescript"]}, "devDependencies": {"type": "object", "properties": {"eslint-import-resolver-typescript": {"type": "string"}}, "required": ["eslint-import-resolver-typescript"]}}, "required": ["scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"scripts" : {"dev:server" : "ts-node-dev --inspect --transpile-only --ignore-watch node_modules src/server.ts", "typeorm" : "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli.js", "test" : "jest"}, "dependencies" : {"@types/express" : "^4.17.8", "@typescript-eslint/eslint-plugin" : "^4.4.0", "@typescript-eslint/parser" : "^4.4.0", "eslint" : "7.2.0", "eslint-config-airbnb-base" : "^14.2.0", "eslint-plugin-import" : "2.21.2", "express" : "^4.17.1", "ts-node-dev" : "^1.0.0-pre.63", "typescript" : "^4.0.3"}, "devDependencies" : {"eslint-import-resolver-typescript" : "^2.3.0"}} | json_instruct | {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"dev:server": {"type": "string"}, "typeorm": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev:server", "typeorm", "test"]}, "dependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "express": {"type": "string"}, "ts-node-dev": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/express", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "express", "ts-node-dev", "typescript"]}, "devDependencies": {"type": "object", "properties": {"eslint-import-resolver-typescript": {"type": "string"}}, "required": ["eslint-import-resolver-typescript"]}}, "required": ["scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"review_id": {"type": "string"}, "movie_id": {"type": "string"}, "author": {"type": "string"}, "review": {"type": "string"}, "rating": {"type": "string"}, "date": {"type": "string"}}, "required": ["review_id", "movie_id", "author", "review", "rating", "date"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"review_id" : "9567198", "movie_id" : "120514", "author" : "ske4****", "review" : "\uce90\uc2a4\ud305 \ub808\uc54c \ub9d8\uc5d0 \uc548\ub4e4\uc9c0\ub9cc \uc124\ubd80\uc5d0\ub300\ud55c \uc758\ub9ac\ub85c!!", "rating" : "10", "date" : "15.01.06"}, {"review_id" : "8878871", "movie_id" : "120514", "author" : "ddds****", "review" : "1\ub4f1\uc774\ub2e4 1\ub4f1\uc774\ub124. 1\ub4f1\uc77c\uc138 \u314b\u314b\u314b", "rating" : "10", "date" : "14.07.03"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"review_id": {"type": "string"}, "movie_id": {"type": "string"}, "author": {"type": "string"}, "review": {"type": "string"}, "rating": {"type": "string"}, "date": {"type": "string"}}, "required": ["review_id", "movie_id", "author", "review", "rating", "date"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"cloud_sidebar_projectlist_create_project": {"type": "string"}, "cloud_sidebar_projectlist_loading_projects": {"type": "string"}, "cloud_sidebar_projectlist_error": {"type": "string"}, "cloud_sidebar_projectlist_title": {"type": "string"}, "cloud_sidebar_projectlist_title_search": {"type": "string"}, "cloud_sidebar_projectlist_view_all_projects": {"type": "string"}}, "required": ["cloud_sidebar_projectlist_create_project", "cloud_sidebar_projectlist_loading_projects", "cloud_sidebar_projectlist_error", "cloud_sidebar_projectlist_title", "cloud_sidebar_projectlist_title_search", "cloud_sidebar_projectlist_view_all_projects"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cloud_sidebar_projectlist_create_project" : "Criar um novo projeto", "cloud_sidebar_projectlist_loading_projects" : "A carregar a lista dos seus projetos", "cloud_sidebar_projectlist_error" : "Ocorreu um erro durante o carregamento da lista de projetos ({{ err }})", "cloud_sidebar_projectlist_title" : "Os meus projetos", "cloud_sidebar_projectlist_title_search" : "Procurar um projeto", "cloud_sidebar_projectlist_view_all_projects" : "Ver todos os meus projetos"} | json_instruct | {"type": "object", "properties": {"cloud_sidebar_projectlist_create_project": {"type": "string"}, "cloud_sidebar_projectlist_loading_projects": {"type": "string"}, "cloud_sidebar_projectlist_error": {"type": "string"}, "cloud_sidebar_projectlist_title": {"type": "string"}, "cloud_sidebar_projectlist_title_search": {"type": "string"}, "cloud_sidebar_projectlist_view_all_projects": {"type": "string"}}, "required": ["cloud_sidebar_projectlist_create_project", "cloud_sidebar_projectlist_loading_projects", "cloud_sidebar_projectlist_error", "cloud_sidebar_projectlist_title", "cloud_sidebar_projectlist_title_search", "cloud_sidebar_projectlist_view_all_projects"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "Reference": {"type": "string"}, "LevelID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "Reference", "LevelID"]}}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "OperatorID", "AddressInfo", "Connections", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IsRecentlyVerified" : false, "ID" : 8191, "UUID" : "A28DD04A-C9FF-431F-A304-075C5896ED89", "DataProviderID" : 15, "DataProvidersReference" : "6703", "OperatorID" : 26, "AddressInfo" : {"ID" : 8088, "Title" : "3130 Highway 82 E", "AddressLine1" : "3130 Highway 82 E", "Town" : "Greenville", "StateOrProvince" : "MS", "Postcode" : "38703", "CountryID" : 2, "Latitude" : 33.40083, "Longitude" : -91.00818, "ContactTelephone1" : " (662) 335-3505", "RelatedURL" : "http://carstations.com/6703", "DistanceUnit" : 0}, "Connections" : [{"ID" : 5620, "ConnectionTypeID" : 1, "Reference" : "J1772", "LevelID" : 2}], "StatusTypeID" : 0, "DateLastStatusUpdate" : "2017-11-04T14:04:00Z", "DataQualityLevel" : 1, "DateCreated" : "2011-11-11T12:06:00Z", "SubmissionStatusTypeID" : 100} | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "Reference": {"type": "string"}, "LevelID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "Reference", "LevelID"]}}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "OperatorID", "AddressInfo", "Connections", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"mini-dark.css": {"type": "string"}, "mini-dark.min.css": {"type": "string"}, "mini-default.css": {"type": "string"}, "mini-default.min.css": {"type": "string"}, "mini-lite.css": {"type": "string"}, "mini-lite.min.css": {"type": "string"}, "mini-nord.css": {"type": "string"}, "mini-nord.min.css": {"type": "string"}, "mini-sucroa.css": {"type": "string"}, "mini-sucroa.min.css": {"type": "string"}}, "required": ["mini-dark.css", "mini-dark.min.css", "mini-default.css", "mini-default.min.css", "mini-lite.css", "mini-lite.min.css", "mini-nord.css", "mini-nord.min.css", "mini-sucroa.css", "mini-sucroa.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"mini-dark.css" : "sha256-mx/XRAEn+il9LqYPnnRMDYcvwz46n9vVp6/7NbKE/rc=", "mini-dark.min.css" : "sha256-AlNRnrFD+Z6kApvleTlNoAVAP2PiWukIZvjK2EIX92M=", "mini-default.css" : "sha256-R7zXS00WQfP81+L+OOTZ2t+q2iewvaVYFo0SO3QmB70=", "mini-default.min.css" : "sha256-mCG6ZbtwUOWLLxQykJzvJ+pFvtR1a1/j4l1e4QD7c+Y=", "mini-lite.css" : "sha256-U+UvUFqMZcR/nZMmDesOQ/JN/+sraFZGuwUuzGanZSU=", "mini-lite.min.css" : "sha256-D2v/BUsdOsG9aQltL3bZRsDn0OneodWTArm8tYcxMCk=", "mini-nord.css" : "sha256-tot0Z2N2T2AtgFN50xyk+0MSVPYFV/5h81VN44uBLlo=", "mini-nord.min.css" : "sha256-J6VTw5knW5jPjXXaZzA0SaZevnL8cktqaKoVzvvqIVE=", "mini-sucroa.css" : "sha256-5VvGMDUNaFCAZD6NpKKXhvuiMwvpPX4hbGy8H4RuOvQ=", "mini-sucroa.min.css" : "sha256-RbXfvTVI6MeEXCicllUO5XSriuZ5I/r31OkIpqA8TIo="} | json_instruct | {"type": "object", "properties": {"mini-dark.css": {"type": "string"}, "mini-dark.min.css": {"type": "string"}, "mini-default.css": {"type": "string"}, "mini-default.min.css": {"type": "string"}, "mini-lite.css": {"type": "string"}, "mini-lite.min.css": {"type": "string"}, "mini-nord.css": {"type": "string"}, "mini-nord.min.css": {"type": "string"}, "mini-sucroa.css": {"type": "string"}, "mini-sucroa.min.css": {"type": "string"}}, "required": ["mini-dark.css", "mini-dark.min.css", "mini-default.css", "mini-default.min.css", "mini-lite.css", "mini-lite.min.css", "mini-nord.css", "mini-nord.min.css", "mini-sucroa.css", "mini-sucroa.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "short_description": {"type": "string"}, "icon": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "short_description", "icon", "contributors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Support Tickets", "short_description" : "LN support ticket system", "icon" : "contact_support", "contributors" : ["benarc"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "short_description": {"type": "string"}, "icon": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "short_description", "icon", "contributors"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "displayName": {"type": "string"}, "publisher": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "icon": {"type": "string"}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "galleryBanner": {"type": "object", "properties": {"color": {"type": "string"}, "theme": {"type": "string"}}, "required": ["color", "theme"]}, "categories": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "contributes": {"type": "object", "properties": {"themes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "uiTheme": {"type": "string"}, "path": {"type": "string"}}, "required": ["label", "uiTheme", "path"]}}}, "required": ["themes"]}, "files": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "author", "displayName", "publisher", "description", "version", "icon", "engines", "repository", "galleryBanner", "categories", "keywords", "contributes", "files", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "birds-of-paradise", "author" : {"name" : "Jeroen de Vries"}, "displayName" : "Birds of Paradise", "publisher" : "Programming-Engineer", "description" : "\ud83e\udd9a Birds of paradise with semantic highlighting", "version" : "0.1.0", "icon" : "icon.png", "engines" : {"vscode" : "^1.62.0"}, "repository" : {"type" : "git", "url" : "https://github.com/Jeroendevr/birds-of-paradise-vscode"}, "galleryBanner" : {"color" : "#281C1C", "theme" : "dark"}, "categories" : ["Themes"], "keywords" : ["Birds of Paradise", "Bird of Paradise", "Dark Theme", "terminal"], "contributes" : {"themes" : [{"label" : "Birds of Paradise", "uiTheme" : "vs-dark", "path" : "./themes/Birds of Paradise-color-theme.json"}]}, "files" : ["themes/Birds of Paradise-color-theme.json", "themes", "themes/*", "package.json", "README.md"], "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "displayName": {"type": "string"}, "publisher": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "icon": {"type": "string"}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "galleryBanner": {"type": "object", "properties": {"color": {"type": "string"}, "theme": {"type": "string"}}, "required": ["color", "theme"]}, "categories": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "contributes": {"type": "object", "properties": {"themes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "uiTheme": {"type": "string"}, "path": {"type": "string"}}, "required": ["label", "uiTheme", "path"]}}}, "required": ["themes"]}, "files": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "author", "displayName", "publisher", "description", "version", "icon", "engines", "repository", "galleryBanner", "categories", "keywords", "contributes", "files", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2021-08-29T22:00:00Z", "Temp" : 27.6, "RelHum" : 72, "WindSpeed" : 1.2, "WindDir" : 43} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "MMD/Callme Callme!\uff084k60fps\uff09", "author" : "Mei Chan", "description" : "NULL", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/video_embed_field_thumbnails/youtube/od1YwwScP4Q.jpg?itok=C_GGlPa8", "download" : "https://www.iwara.tv/api/video/lyvdxhxbveiwlo3g6", "origin" : "https://www.iwara.tv/videos/lyvdxhxbveiwlo3g6"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "string"}, "SERIES_NAME": {"type": "string"}, "X_CALENDAR_YEAR": {"type": "integer"}, "Y_PREVALENCE_1000PP": {"type": "number"}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "CONDITIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "string"}, "MIN_VALUE": {"type": "integer"}, "P10_VALUE": {"type": "integer"}, "P25_VALUE": {"type": "integer"}, "MEDIAN_VALUE": {"type": "integer"}, "P75_VALUE": {"type": "integer"}, "P90_VALUE": {"type": "integer"}, "MAX_VALUE": {"type": "integer"}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "CONDITIONS_BY_TYPE", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : "20-29", "SERIES_NAME" : "FEMALE", "X_CALENDAR_YEAR" : 2005, "Y_PREVALENCE_1000PP" : 0.02502}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Observation recorded from EHR", "COUNT_VALUE" : 49}, "AGE_AT_FIRST_DIAGNOSIS" : {"CATEGORY" : "FEMALE", "MIN_VALUE" : 0, "P10_VALUE" : 20, "P25_VALUE" : 22, "MEDIAN_VALUE" : 25, "P75_VALUE" : 30, "P90_VALUE" : 36, "MAX_VALUE" : 40}} | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "string"}, "SERIES_NAME": {"type": "string"}, "X_CALENDAR_YEAR": {"type": "integer"}, "Y_PREVALENCE_1000PP": {"type": "number"}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "CONDITIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "string"}, "MIN_VALUE": {"type": "integer"}, "P10_VALUE": {"type": "integer"}, "P25_VALUE": {"type": "integer"}, "MEDIAN_VALUE": {"type": "integer"}, "P75_VALUE": {"type": "integer"}, "P90_VALUE": {"type": "integer"}, "MAX_VALUE": {"type": "integer"}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "CONDITIONS_BY_TYPE", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"graph": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "infected": {"type": "array", "items": {"type": "integer"}}}, "required": ["graph", "infected"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"graph" : [[0, 0, 0, 0, 1, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1], [0, 0, 0, 0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0]], "infected" : [0, 1, 4, 5]} | json_instruct | {"type": "object", "properties": {"graph": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "infected": {"type": "array", "items": {"type": "integer"}}}, "required": ["graph", "infected"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[2001, 5], [2002, 8], [2004, 5], [2005, 9], [2007, 11], [2008, 8], [2009, 11], [2010, 7], [2011, 10], [2013, 5], [2014, 9]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"description": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "sp": {"type": "integer"}, "type": {"type": "string"}}, "required": ["description", "id", "name", "sp", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "Grants Def+3 to adjacent allies during combat.", "id" : "spur-def-2", "name" : "Spur Def 2", "sp" : 100, "type" : "s"} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "sp": {"type": "integer"}, "type": {"type": "string"}}, "required": ["description", "id", "name", "sp", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"course_setup": {"type": "object", "properties": {"conv_matrix": {"type": "array", "items": {"type": "object", "properties": {"mark": {"type": "string"}, "min": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["mark", "min", "max"]}}, "grade_breakdown": {"type": "object", "properties": {"participation": {"type": "integer"}, "assignment1": {"type": "integer"}, "assignment2": {"type": "integer"}, "assignment3": {"type": "integer"}, "assignment4": {"type": "integer"}}, "required": ["participation", "assignment1", "assignment2", "assignment3", "assignment4"]}}, "required": ["conv_matrix", "grade_breakdown"]}}, "required": ["course_setup"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"course_setup" : {"conv_matrix" : [{"mark" : "A+", "min" : 97, "max" : 100}, {"mark" : "A", "min" : 93, "max" : 97}, {"mark" : "A-", "min" : 89, "max" : 92}, {"mark" : "B+", "min" : 85, "max" : 89}, {"mark" : "B", "min" : 81, "max" : 85}, {"mark" : "B-", "min" : 77, "max" : 81}, {"mark" : "C+", "min" : 73, "max" : 77}, {"mark" : "C", "min" : 69, "max" : 73}, {"mark" : "C-", "min" : 65, "max" : 69}, {"mark" : "D+", "min" : 61, "max" : 65}, {"mark" : "D-", "min" : 57, "max" : 61}], "grade_breakdown" : {"participation" : 5, "assignment1" : 20, "assignment2" : 25, "assignment3" : 25, "assignment4" : 25}}} | json_instruct | {"type": "object", "properties": {"course_setup": {"type": "object", "properties": {"conv_matrix": {"type": "array", "items": {"type": "object", "properties": {"mark": {"type": "string"}, "min": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["mark", "min", "max"]}}, "grade_breakdown": {"type": "object", "properties": {"participation": {"type": "integer"}, "assignment1": {"type": "integer"}, "assignment2": {"type": "integer"}, "assignment3": {"type": "integer"}, "assignment4": {"type": "integer"}}, "required": ["participation", "assignment1", "assignment2", "assignment3", "assignment4"]}}, "required": ["conv_matrix", "grade_breakdown"]}}, "required": ["course_setup"], "$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.