input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vertices" : [[86, 84], [34, 114], [101, 99], [87, 106], [48, 116], [53, 115], [94, 108], [136, 87], [110, 107], [114, 110], [75, 122], [119, 102], [130, 96], [110, 100], [120, 118], [61, 136], [103, 142], [117, 146], [68, 136], [87, 119], [111, 84], [117, 142], [116, 137], [110, 134], [107, 130], [98, 119], [121, 136], [100, 117], [87, 118], [105, 114], [98, 114], [86, 115], [86, 117], [90, 121], [94, 124], [98, 127], [89, 125], [79, 105], [86, 97], [85, 121], [84, 136], [75, 95], [90, 141], [86, 115], [62, 130], [101, 96], [124, 99], [54, 97], [124, 106], [92, 101], [50, 86], [108, 110], [116, 101], [68, 88], [109, 101], [105, 98], [94, 79], [102, 100], [44, 69], [66, 92], [41, 134], [87, 98], [37, 81], [85, 97], [80, 84], [76, 95], [56, 83], [47, 78], [78, 97], [73, 82], [85, 97], [72, 100], [63, 95], [56, 46], [56, 145], [62, 134], [57, 108], [60, 98], [19, 90], [63, 46], [65, 93], [14, 85], [52, 134], [53, 63], [67, 100], [58, 68], [57, 73], [45, 75], [56, 70], [37, 66], [47, 56], [51, 70]]} | json_instruct | {"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "null"}, "href": {"type": "string"}, "url": {"type": "null"}, "description": {"type": "null"}, "isoPatterns": {"type": "null"}, "count": {"type": "integer"}, "qualityRules": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}}, "required": ["id", "name", "href", "url", "description", "isoPatterns", "count", "qualityRules"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "COMMAND-INJECTION", "name" : null, "href" : "CARL/quality-standards/AIP/items/COMMAND-INJECTION", "url" : null, "description" : null, "isoPatterns" : null, "count" : 42, "qualityRules" : {"name" : "Quality Rules in numeric ID order", "href" : "CARL/quality-standards/AIP/items/COMMAND-INJECTION/quality-rules"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "null"}, "href": {"type": "string"}, "url": {"type": "null"}, "description": {"type": "null"}, "isoPatterns": {"type": "null"}, "count": {"type": "integer"}, "qualityRules": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}}, "required": ["id", "name", "href", "url", "description", "isoPatterns", "count", "qualityRules"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "2002", "provinceId" : "51", "regencyId" : "02", "districtId" : "07", "name" : "Beringkit"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$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"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:watch": {"type": "string"}, "lint": {"type": "string"}, "lint:errors": {"type": "string"}, "lint:staged": {"type": "string"}, "lint:fix": {"type": "string"}, "jest": {"type": "string"}, "prepush": {"type": "string"}, "precommit": {"type": "string"}}, "required": ["test", "test:watch", "lint", "lint:errors", "lint:staged", "lint:fix", "jest", "prepush", "precommit"]}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "imap": {"type": "string"}, "mailparser": {"type": "string"}, "mime": {"type": "string"}}, "required": ["async", "imap", "mailparser", "mime"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "jest": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "jest"]}}, "required": ["name", "version", "description", "author", "repository", "scripts", "dependencies", "keywords", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mail-listener-next", "version" : "1.0.5", "description" : "Updated Mail listener library for node.js. Get notification when new email arrived.", "author" : {"name" : "uapasha", "email" : "uapasha@gmail.com"}, "repository" : {"type" : "git", "url" : "https://github.com/askpoly/mail-listener2.git"}, "scripts" : {"test" : "yarn lint:errors && yarn jest", "test:watch" : "yarn jest --watch", "lint" : "eslint *.js", "lint:errors" : "yarn lint --quiet", "lint:staged" : "lint-staged", "lint:fix" : "yarn lint --fix", "jest" : "TZ='America/New_York' jest", "prepush" : "yarn test", "precommit" : "yarn lint:staged"}, "dependencies" : {"async" : "^0.9.0", "imap" : "~0.8.14", "mailparser" : "^0.6.2", "mime" : "^1.0.0"}, "keywords" : ["mail", "job", "imap", "mail listener", "email", "email parser"], "license" : "MIT", "devDependencies" : {"eslint" : "^4.13.1", "eslint-config-airbnb-base" : "^12.1.0", "eslint-plugin-import" : "^2.8.0", "jest" : "^22.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:watch": {"type": "string"}, "lint": {"type": "string"}, "lint:errors": {"type": "string"}, "lint:staged": {"type": "string"}, "lint:fix": {"type": "string"}, "jest": {"type": "string"}, "prepush": {"type": "string"}, "precommit": {"type": "string"}}, "required": ["test", "test:watch", "lint", "lint:errors", "lint:staged", "lint:fix", "jest", "prepush", "precommit"]}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "imap": {"type": "string"}, "mailparser": {"type": "string"}, "mime": {"type": "string"}}, "required": ["async", "imap", "mailparser", "mime"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "jest": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "jest"]}}, "required": ["name", "version", "description", "author", "repository", "scripts", "dependencies", "keywords", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "moduleType": {"type": "string"}, "option": {"type": "string"}, "values": {"type": "string"}}, "required": ["id", "moduleType", "option", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "footer", "moduleType" : "footer", "option" : "{}", "values" : "{}"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "moduleType": {"type": "string"}, "option": {"type": "string"}, "values": {"type": "string"}}, "required": ["id", "moduleType", "option", "values"], "$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" : "071a923e9d45798fb28e465e4f4244c6d19975e5"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"$id": {"type": "string"}, "$schema": {"type": "string"}, "type": {"type": "string"}, "minItems": {"type": "integer"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"route": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "descr": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "origin": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "mntBy": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["route", "descr", "origin", "mntBy", "source"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "properties", "required"]}}, "required": ["$id", "$schema", "type", "minItems", "items"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$id" : "https://githb.com/jtschichold/mm-cloud-services-miners/RADBASRegisterdRoutesMiner.schema.json", "$schema" : "http://json-schema.org/draft-07/schema#", "type" : "array", "minItems" : 1, "items" : {"type" : "object", "properties" : {"route" : {"type" : "string"}, "descr" : {"type" : "string"}, "origin" : {"type" : "string"}, "mntBy" : {"type" : "string"}, "source" : {"type" : "string"}}, "required" : ["route", "origin", "source"]}} | json_instruct | {"type": "object", "properties": {"$id": {"type": "string"}, "$schema": {"type": "string"}, "type": {"type": "string"}, "minItems": {"type": "integer"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"route": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "descr": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "origin": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "mntBy": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["route", "descr", "origin", "mntBy", "source"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "properties", "required"]}}, "required": ["$id", "$schema", "type", "minItems", "items"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"python.linting.pylintArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["python.linting.pylintArgs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"python.linting.pylintArgs" : ["--load-plugins pylint_django"]} | json_instruct | {"type": "object", "properties": {"python.linting.pylintArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["python.linting.pylintArgs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}, "additional": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}}, "required": ["main", "additional"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 162746, "info" : {"name" : "FFXIV.consolegameswiki Zenburn", "description" : "A less bright and intense color scheme for FFXIV.consolegamewiki", "additionalInfo" : null, "format" : "uso", "category" : "consolegameswiki", "createdAt" : "2018-07-23T01:43:36.000Z", "updatedAt" : "2018-07-23T01:43:36.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 680259, "name" : "Dr.Meat"}}, "stats" : {"installs" : {"total" : 90, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "162746_additional_31354.jpeg", "archived" : true}, "additional" : [{"name" : "162746_additional_31354.jpeg", "archived" : true}, {"name" : "162746_additional_31355.jpeg", "archived" : false}]}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain(\"ffxiv.consolegameswiki.com\") {\r\n/* \r\n ~*~* FFXIV.consolegameswiki Zenburn *~*~\r\n V. 1.0.0\r\n \u00a9 2018 Created by: Dr.Meat\r\n*/\r\n\r\n/* Overall Background */\r\n.mw-body, body {\r\n background-color: #3f3f3f !important;\r\n color: #f0dfaf !important;\r\n}\r\n\r\n/* Headers font color */\r\n.mw-body h1, .mw-body h2 {\r\n color: #dfaf8f !important;\r\n}\r\n\r\nh1, h2, h3, h4, h5, h6 {\r\n color: #dfaf8f !important;\r\n}\r\n\r\n/* Tables */\r\ndiv#mw-head {\r\n background-color: #afafaf !important;\r\n}\r\n\r\ntable {\r\n background-color: #bfbfaf !important;\r\n color: #4f4f4f !important;\r\n}\r\n\r\n#toc, .toc, .mw-warning, .toccolours {\r\n border: 1px solid #888;\r\n background-color: #cfcfcf;\r\n}\r\n\r\n/* Hyperlinks */\r\na:link{\r\n color: #bc6c9c !important;\r\n}\r\n\r\na:visited{\r\n color: #8c8cbc !important;\r\n}\r\n\r\na:hover{\r\n color: #9c9ccc !important;\r\n}\r\n\r\na:active{\r\n color: #ffd7a7 !important;\r\n}\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}, "additional": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}}, "required": ["main", "additional"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "32": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "32", "48", "128"]}, "manifest_version": {"type": "integer"}}, "required": ["name", "version", "description", "permissions", "background", "icons", "manifest_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Slack Workspace Users Profile Getter", "version" : "1.0", "description" : "Enable the extension, then visit the workspace that you'd like to get its list of users.", "permissions" : ["webRequest", "webRequestBlocking", "downloads", "https://*.slack.com/*", "https://www.linkedin.com/*"], "background" : {"scripts" : ["shared/constants.js", "shared/csv.js", "shared/jquery.js", "linkedin/linkedin.js", "slack/slack.js"], "persistent" : true}, "icons" : {"16" : "images/get_started16.png", "32" : "images/get_started32.png", "48" : "images/get_started48.png", "128" : "images/get_started128.png"}, "manifest_version" : 2} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "32": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "32", "48", "128"]}, "manifest_version": {"type": "integer"}}, "required": ["name", "version", "description", "permissions", "background", "icons", "manifest_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"testRunIds": {"type": "array", "items": {"type": "string"}}, "unfilteredTests": {"type": "object", "properties": {"dts": {"type": "array", "items": {}}}, "required": ["dts"]}, "filteredTests": {"type": "object", "properties": {"dts": {"type": "array", "items": {}}}, "required": ["dts"]}, "roundTime": {"type": "number"}}, "required": ["testRunIds", "unfilteredTests", "filteredTests", "roundTime"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"testRunIds" : ["1635737376917-5eeb91fb-af9a-47d9-946c-beb0608edbed"], "unfilteredTests" : {"dts" : []}, "filteredTests" : {"dts" : []}, "roundTime" : 21.862212117} | json_instruct | {"type": "object", "properties": {"testRunIds": {"type": "array", "items": {"type": "string"}}, "unfilteredTests": {"type": "object", "properties": {"dts": {"type": "array", "items": {}}}, "required": ["dts"]}, "filteredTests": {"type": "object", "properties": {"dts": {"type": "array", "items": {}}}, "required": ["dts"]}, "roundTime": {"type": "number"}}, "required": ["testRunIds", "unfilteredTests", "filteredTests", "roundTime"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 151707, "info" : {"name" : "GDAX no trade", "description" : "Theme mostly for self use. Hides trading panels on gdax for maximum screen use.", "additionalInfo" : null, "format" : "uso", "category" : "gdax", "createdAt" : "2017-11-21T15:26:54.000Z", "updatedAt" : "2017-12-01T10:19:18.000Z", "license" : "CC0-1.0", "author" : {"id" : 554579, "name" : "Ruvero"}}, "stats" : {"installs" : {"total" : 36, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "151707_after.jpeg", "archived" : true}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain(\"gdax.com\") {\r\n.Trade_scene_3Yk5F aside.Sidebar_sidebar_3X-DF {\r\n display: none !important;\r\n}\r\n\r\n.ChartPanel_chart-panel_2l4tM {\r\n height: 100% !important;\r\n}\r\n\r\n.UserPanel_user-panel_W_gry.UserPanel_view-only_2om96, .UserPanel_user-panel_W_gry {\r\n display: none !important;\r\n}\r\n\r\n.ChartPanel_chart-panel_2l4tM .ChartPanel_charts_1AFGo .ChartPanel_price-chart_wRlfl {\r\n height: 400px !important;\r\n}\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"EmsApi\\": {"type": "string"}}, "required": ["EmsApi\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"EmsApi\\Test\\": {"type": "string"}}, "required": ["EmsApi\\Test\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-json": {"type": "string"}, "ext-curl": {"type": "string"}}, "required": ["php", "ext-json", "ext-curl"]}, "require-dev": {"type": "object", "properties": {"friendsofphp/php-cs-fixer": {"type": "string"}, "phpstan/phpstan": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["friendsofphp/php-cs-fixer", "phpstan/phpstan", "phpunit/phpunit"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "fix-style": {"type": "string"}, "analyse": {"type": "string"}}, "required": ["test", "fix-style", "analyse"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "homepage", "autoload", "autoload-dev", "require", "require-dev", "scripts", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ems-api/php-client", "version" : "1.0.1", "description" : "Email Marketing Software library for PHP", "homepage" : "https://github.com/ems-api/php-client", "autoload" : {"psr-4" : {"EmsApi\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"EmsApi\\Test\\" : "test/"}}, "require" : {"php" : ">=7.2.5", "ext-json" : "*", "ext-curl" : "*"}, "require-dev" : {"friendsofphp/php-cs-fixer" : "^2.17", "phpstan/phpstan" : "^0.12.60", "phpunit/phpunit" : "^9.5"}, "scripts" : {"test" : "./vendor/bin/phpunit", "fix-style" : "./vendor/bin/php-cs-fixer fix .", "analyse" : "./vendor/bin/phpstan analyse src test example -c phpstan.neon --level max --memory-limit=-1"}, "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"EmsApi\\": {"type": "string"}}, "required": ["EmsApi\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"EmsApi\\Test\\": {"type": "string"}}, "required": ["EmsApi\\Test\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-json": {"type": "string"}, "ext-curl": {"type": "string"}}, "required": ["php", "ext-json", "ext-curl"]}, "require-dev": {"type": "object", "properties": {"friendsofphp/php-cs-fixer": {"type": "string"}, "phpstan/phpstan": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["friendsofphp/php-cs-fixer", "phpstan/phpstan", "phpunit/phpunit"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "fix-style": {"type": "string"}, "analyse": {"type": "string"}}, "required": ["test", "fix-style", "analyse"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "homepage", "autoload", "autoload-dev", "require", "require-dev", "scripts", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"warehouse": {"type": "string"}, "defaultSchema": {"type": "string"}, "assertionSchema": {"type": "string"}, "defaultDatabase": {"type": "string"}}, "required": ["warehouse", "defaultSchema", "assertionSchema", "defaultDatabase"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"warehouse" : "bigquery", "defaultSchema" : "fivetran_log_package", "assertionSchema" : "fivetran_log_package", "defaultDatabase" : "dataform-corp-dev"} | json_instruct | {"type": "object", "properties": {"warehouse": {"type": "string"}, "defaultSchema": {"type": "string"}, "assertionSchema": {"type": "string"}, "defaultDatabase": {"type": "string"}}, "required": ["warehouse", "defaultSchema", "assertionSchema", "defaultDatabase"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "S\u00e9rign\u00e9", "dpt" : "Vend\u00e9e", "inscrits" : 753, "abs" : 108, "votants" : 645, "blancs" : 21, "nuls" : 10, "exp" : 614, "res" : [{"panneau" : "11", "voix" : 156}, {"panneau" : "2", "voix" : 135}, {"panneau" : "3", "voix" : 125}, {"panneau" : "9", "voix" : 108}, {"panneau" : "1", "voix" : 38}, {"panneau" : "4", "voix" : 28}, {"panneau" : "5", "voix" : 12}, {"panneau" : "8", "voix" : 5}, {"panneau" : "6", "voix" : 4}, {"panneau" : "10", "voix" : 2}, {"panneau" : "7", "voix" : 1}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"kvision": {"type": "string"}, "kotlin": {"type": "string"}, "serialization": {"type": "string"}, "coroutines": {"type": "string"}, "template-javalin": {"type": "object", "properties": {}, "required": []}, "template-jooby": {"type": "object", "properties": {"jooby": {"type": "string"}}, "required": ["jooby"]}, "template-ktor": {"type": "object", "properties": {"ktor": {"type": "string"}}, "required": ["ktor"]}, "template-micronaut": {"type": "object", "properties": {"micronaut": {"type": "string"}}, "required": ["micronaut"]}, "template-spring-boot": {"type": "object", "properties": {"spring-boot": {"type": "string"}, "spring-data-r2dbc": {"type": "string"}, "r2dbc-postgresql": {"type": "string"}, "r2dbc-h2": {"type": "string"}}, "required": ["spring-boot", "spring-data-r2dbc", "r2dbc-postgresql", "r2dbc-h2"]}, "template-vertx": {"type": "object", "properties": {"vertx-plugin": {"type": "string"}}, "required": ["vertx-plugin"]}}, "required": ["kvision", "kotlin", "serialization", "coroutines", "template-javalin", "template-jooby", "template-ktor", "template-micronaut", "template-spring-boot", "template-vertx"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"kvision" : "3.17.2", "kotlin" : "1.4.20", "serialization" : "1.0.1", "coroutines" : "1.4.2", "template-javalin" : {}, "template-jooby" : {"jooby" : "2.9.4"}, "template-ktor" : {"ktor" : "1.4.1"}, "template-micronaut" : {"micronaut" : "2.2.0"}, "template-spring-boot" : {"spring-boot" : "2.4.0", "spring-data-r2dbc" : "1.2.1", "r2dbc-postgresql" : "0.8.6.RELEASE", "r2dbc-h2" : "0.8.4.RELEASE"}, "template-vertx" : {"vertx-plugin" : "1.1.3"}} | json_instruct | {"type": "object", "properties": {"kvision": {"type": "string"}, "kotlin": {"type": "string"}, "serialization": {"type": "string"}, "coroutines": {"type": "string"}, "template-javalin": {"type": "object", "properties": {}, "required": []}, "template-jooby": {"type": "object", "properties": {"jooby": {"type": "string"}}, "required": ["jooby"]}, "template-ktor": {"type": "object", "properties": {"ktor": {"type": "string"}}, "required": ["ktor"]}, "template-micronaut": {"type": "object", "properties": {"micronaut": {"type": "string"}}, "required": ["micronaut"]}, "template-spring-boot": {"type": "object", "properties": {"spring-boot": {"type": "string"}, "spring-data-r2dbc": {"type": "string"}, "r2dbc-postgresql": {"type": "string"}, "r2dbc-h2": {"type": "string"}}, "required": ["spring-boot", "spring-data-r2dbc", "r2dbc-postgresql", "r2dbc-h2"]}, "template-vertx": {"type": "object", "properties": {"vertx-plugin": {"type": "string"}}, "required": ["vertx-plugin"]}}, "required": ["kvision", "kotlin", "serialization", "coroutines", "template-javalin", "template-jooby", "template-ktor", "template-micronaut", "template-spring-boot", "template-vertx"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "kriswallsmith/buzz": {"type": "string"}, "nyholm/psr7": {"type": "string"}}, "required": ["php", "kriswallsmith/buzz", "nyholm/psr7"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Basecamp\\": {"type": "string"}}, "required": ["Basecamp\\"]}}, "required": ["psr-0"]}}, "required": ["name", "description", "keywords", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "freeform/basecamp-api", "description" : "PHP wrapper for Basecamp 2 API, forked from arturf", "keywords" : ["37Signals", "Basecamp", "PHP", "API"], "license" : "MIT", "authors" : [{"name" : "Artur Fursa", "homepage" : "http://www.binn.ru"}], "require" : {"php" : ">=7.4.0", "kriswallsmith/buzz" : "0.16.*", "nyholm/psr7" : "^1.0"}, "autoload" : {"psr-0" : {"Basecamp\\" : ""}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "kriswallsmith/buzz": {"type": "string"}, "nyholm/psr7": {"type": "string"}}, "required": ["php", "kriswallsmith/buzz", "nyholm/psr7"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Basecamp\\": {"type": "string"}}, "required": ["Basecamp\\"]}}, "required": ["psr-0"]}}, "required": ["name", "description", "keywords", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1982, 7], [1983, 9], [1984, 10], [1985, 12], [1986, 27], [1987, 14], [1988, 9], [1989, 9], [1990, 11], [1991, 8], [1992, 8], [1993, 10], [1994, 10], [1995, 8], [1996, 11], [1997, 10], [1999, 5], [2000, 10], [2001, 10], [2002, 7], [2003, 8], [2004, 10], [2005, 11], [2007, 12], [2008, 15], [2009, 14], [2010, 19], [2011, 15], [2012, 36], [2013, 73], [2014, 110]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 3402130007, "parent" : 3402130, "name" : "BATURETNO", "latitude" : null, "longitude" : null, "postal" : [55798, 55197], "children" : []} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"544381485591982083": {"type": "object", "properties": {"544381824525291521": {"type": "array", "items": {}}, "544382092528721920": {"type": "array", "items": {}}, "544382261097820160": {"type": "array", "items": {}}, "544382534264451072": {"type": "array", "items": {}}, "544382677449580544": {"type": "array", "items": {}}, "544382713302904832": {"type": "array", "items": {}}, "544384788527083521": {"type": "array", "items": {}}, "544385083574996992": {"type": "object", "properties": {"544386758662565888": {"type": "array", "items": {}}}, "required": ["544386758662565888"]}, "544385104663949313": {"type": "array", "items": {}}, "544385543342014464": {"type": "array", "items": {}}, "544386112672645120": {"type": "array", "items": {}}}, "required": ["544381824525291521", "544382092528721920", "544382261097820160", "544382534264451072", "544382677449580544", "544382713302904832", "544384788527083521", "544385083574996992", "544385104663949313", "544385543342014464", "544386112672645120"]}}, "required": ["544381485591982083"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"544381485591982083" : {"544381824525291521" : [], "544382092528721920" : [], "544382261097820160" : [], "544382534264451072" : [], "544382677449580544" : [], "544382713302904832" : [], "544384788527083521" : [], "544385083574996992" : {"544386758662565888" : []}, "544385104663949313" : [], "544385543342014464" : [], "544386112672645120" : []}} | json_instruct | {"type": "object", "properties": {"544381485591982083": {"type": "object", "properties": {"544381824525291521": {"type": "array", "items": {}}, "544382092528721920": {"type": "array", "items": {}}, "544382261097820160": {"type": "array", "items": {}}, "544382534264451072": {"type": "array", "items": {}}, "544382677449580544": {"type": "array", "items": {}}, "544382713302904832": {"type": "array", "items": {}}, "544384788527083521": {"type": "array", "items": {}}, "544385083574996992": {"type": "object", "properties": {"544386758662565888": {"type": "array", "items": {}}}, "required": ["544386758662565888"]}, "544385104663949313": {"type": "array", "items": {}}, "544385543342014464": {"type": "array", "items": {}}, "544386112672645120": {"type": "array", "items": {}}}, "required": ["544381824525291521", "544382092528721920", "544382261097820160", "544382534264451072", "544382677449580544", "544382713302904832", "544384788527083521", "544385083574996992", "544385104663949313", "544385543342014464", "544386112672645120"]}}, "required": ["544381485591982083"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["520626103001", "\u8881\u573a\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["520626103002", "\u67ab\u6eaa\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["520626103003", "\u5148\u8054\u793e\u533a\u5c45\u59d4\u4f1a", "220", "0"], ["520626103201", "\u65b0\u576a\u6751\u59d4\u4f1a", "220", "0"], ["520626103202", "\u4fdd\u5b89\u6751\u59d4\u4f1a", "220", "0"], ["520626103203", "\u7ec6\u6c99\u6751\u59d4\u4f1a", "220", "0"], ["520626103204", "\u5e84\u4e25\u6751\u59d4\u4f1a", "220", "0"], ["520626103205", "\u6c34\u541e\u725b\u6751\u59d4\u4f1a", "220", "0"], ["520626103206", "\u5be8\u4e0a\u6751\u59d4\u4f1a", "220", "0"], ["520626103207", "\u5174\u754c\u6751\u59d4\u4f1a", "220", "0"], ["520626103208", "\u576a\u6e7e\u6751\u59d4\u4f1a", "220", "0"], ["520626103209", "\u53cc\u575d\u6751\u59d4\u4f1a", "220", "0"], ["520626103210", "\u4e0a\u575d\u6751\u59d4\u4f1a", "220", "0"], ["520626103212", "\u957f\u5f81\u6751\u59d4\u4f1a", "220", "0"], ["520626103213", "\u9f99\u575d\u6751\u59d4\u4f1a", "220", "0"], ["520626103214", "\u9f99\u6cc9\u6751\u59d4\u4f1a", "220", "0"], ["520626103215", "\u4e1d\u6bdb\u575d\u6751\u59d4\u4f1a", "220", "0"], ["520626103217", "\u8f6f\u5773\u6751\u59d4\u4f1a", "220", "0"], ["520626103218", "\u67ab\u94fa\u6751\u59d4\u4f1a", "220", "0"], ["520626103219", "\u6d1e\u6e7e\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}}, "required": ["c_ref", "totals", "daily"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"c_ref" : "Antwerp", "totals" : {"Cases" : 69720, "Deaths" : 0}, "daily" : {"Cases" : 352, "Deaths" : 0}}, {"c_ref" : "Brussels", "totals" : {"Cases" : 77458, "Deaths" : 0}, "daily" : {"Cases" : 202, "Deaths" : 0}}, {"c_ref" : "East Flanders", "totals" : {"Cases" : 55899, "Deaths" : 0}, "daily" : {"Cases" : 349, "Deaths" : 0}}, {"c_ref" : "Flemish Brabant", "totals" : {"Cases" : 45070, "Deaths" : 0}, "daily" : {"Cases" : 252, "Deaths" : 0}}, {"c_ref" : "Hainaut", "totals" : {"Cases" : 95030, "Deaths" : 0}, "daily" : {"Cases" : 297, "Deaths" : 0}}, {"c_ref" : "Liege", "totals" : {"Cases" : 92690, "Deaths" : 0}, "daily" : {"Cases" : 175, "Deaths" : 0}}, {"c_ref" : "Limburg", "totals" : {"Cases" : 25143, "Deaths" : 0}, "daily" : {"Cases" : 172, "Deaths" : 0}}, {"c_ref" : "Luxembourg", "totals" : {"Cases" : 16760, "Deaths" : 0}, "daily" : {"Cases" : 105, "Deaths" : 0}}, {"c_ref" : "Namur", "totals" : {"Cases" : 32877, "Deaths" : 0}, "daily" : {"Cases" : 131, "Deaths" : 0}}, {"c_ref" : "Unknown", "totals" : {"Cases" : 9724, "Deaths" : 17254}, "daily" : {"Cases" : 35, "Deaths" : 112}}, {"c_ref" : "Walloon Brabant", "totals" : {"Cases" : 23519, "Deaths" : 0}, "daily" : {"Cases" : 79, "Deaths" : 0}}, {"c_ref" : "West Flanders", "totals" : {"Cases" : 46052, "Deaths" : 0}, "daily" : {"Cases" : 354, "Deaths" : 0}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}}, "required": ["c_ref", "totals", "daily"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ObjectID": {"type": "object", "properties": {"$oid": {"type": "string"}}, "required": ["$oid"]}, "customerID": {"type": "string"}, "FirstName": {"type": "string"}, "LastName": {"type": "string"}, "Email": {"type": "string"}, "Postal": {"type": "string"}, "Phone": {"type": "string"}, "Updated": {"type": "string"}}, "required": ["ObjectID", "customerID", "FirstName", "LastName", "Email", "Postal", "Phone", "Updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ObjectID" : {"$oid" : "5cc0db8a7d878596cbdb51f7"}, "customerID" : "d2b00cad-fd3e-4aca-8cac-fc0b5acfa0b4", "FirstName" : "Ella", "LastName" : "Salas", "Email" : "ellasalas@emoltra.com", "Postal" : "89525-5903", "Phone" : "(965) 572-2501", "Updated" : "2016-02-27T08:31:18 +08:00"} | json_instruct | {"type": "object", "properties": {"ObjectID": {"type": "object", "properties": {"$oid": {"type": "string"}}, "required": ["$oid"]}, "customerID": {"type": "string"}, "FirstName": {"type": "string"}, "LastName": {"type": "string"}, "Email": {"type": "string"}, "Postal": {"type": "string"}, "Phone": {"type": "string"}, "Updated": {"type": "string"}}, "required": ["ObjectID", "customerID", "FirstName", "LastName", "Email", "Postal", "Phone", "Updated"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "incomplete": {"type": "boolean"}, "members": {"type": "boolean"}, "tradeable": {"type": "boolean"}, "tradeable_on_ge": {"type": "boolean"}, "stackable": {"type": "boolean"}, "stacked": {"type": "null"}, "noted": {"type": "boolean"}, "noteable": {"type": "boolean"}, "linked_id_item": {"type": "integer"}, "linked_id_noted": {"type": "null"}, "linked_id_placeholder": {"type": "null"}, "placeholder": {"type": "boolean"}, "equipable": {"type": "boolean"}, "equipable_by_player": {"type": "boolean"}, "equipable_weapon": {"type": "boolean"}, "cost": {"type": "integer"}, "lowalch": {"type": "integer"}, "highalch": {"type": "integer"}, "weight": {"type": "number"}, "buy_limit": {"type": "null"}, "quest_item": {"type": "boolean"}, "release_date": {"type": "string"}, "duplicate": {"type": "boolean"}, "examine": {"type": "string"}, "icon": {"type": "string"}, "wiki_name": {"type": "string"}, "wiki_url": {"type": "string"}, "wiki_exchange": {"type": "null"}, "equipment": {"type": "null"}, "weapon": {"type": "null"}}, "required": ["id", "name", "incomplete", "members", "tradeable", "tradeable_on_ge", "stackable", "stacked", "noted", "noteable", "linked_id_item", "linked_id_noted", "linked_id_placeholder", "placeholder", "equipable", "equipable_by_player", "equipable_weapon", "cost", "lowalch", "highalch", "weight", "buy_limit", "quest_item", "release_date", "duplicate", "examine", "icon", "wiki_name", "wiki_url", "wiki_exchange", "equipment", "weapon"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1220, "name" : "Iron dagger(p)", "incomplete" : false, "members" : true, "tradeable" : true, "tradeable_on_ge" : false, "stackable" : false, "stacked" : null, "noted" : true, "noteable" : true, "linked_id_item" : 1219, "linked_id_noted" : null, "linked_id_placeholder" : null, "placeholder" : false, "equipable" : false, "equipable_by_player" : false, "equipable_weapon" : false, "cost" : 35, "lowalch" : 14, "highalch" : 21, "weight" : 0.453, "buy_limit" : null, "quest_item" : false, "release_date" : "2002-02-27", "duplicate" : true, "examine" : "The blade is covered with poison.", "icon" : "iVBORw0KGgoAAAANSUhEUgAAACQAAAAgCAYAAAB6kdqOAAAC+UlEQVR4Xs3Wz2sTQRQH8M2xhx56KIgg9OjBQw9CQXry5MHexJvevKgoVlTUKlWsCtIqpYoaqq1GG7QYGmxDbUn9/fsH4h8h/hUj3x2+k7evL2u2WUsHHrvZnc188t7MbKJo47eCs8O6/99bwT2YOOKmxg/Hce/GIVccOxgHEbWZITdfOuOqD08bKP0j2oZ7EFEAMTRmbvqUm508kRgYn3FPRxKVCVlwpZtHV6FwBIRB0NPicTdz+1jcF0cLhP4S/XV5wn1aHF0biiCcMzsEVaZOxiD2JYgDE4TnviyNu+8rd9yPl8UYhPu9PT1x6NFV82nnryYIg1qg8t3BAMI5nh8c7oyDqMXyuQQI5wTp0VUrJMqAgTi58VmDAAeC5ZUYCVqeHc4PxCzhmgViJvHsgf37TFD92YUAQmQCcV5oEAbXIDmh8eyegYEQ/X19AfSqcjEB+vzievsgXAeIKGYSfZgdC4N4PXcpXxACAAmSE1pmR2PQ9/385QD6Vr8VMJlBEsXlq0E6OxJD0IeFqyZIj96k+T0Eg6WBOKHTskPQx9q1tYL8HoQM/QuEPjI7xKC0EoT+EiQ3RT26av7LLBBCgphFmR2c4zkJAjxXEFEIDIAdF/0elbrd82p3AOEINJ7T5coNJLOEowQNne0MqHdvNoVsWaClJ+cDCLs0MS2BsHIsEN/gALFkV0Y8qrbgUb9+bo6v6/mD14bMUIvZQWuA9DzCdQ3a1dvhxka7XPmxR+kMsVx4beQGIgrXMQBL1r81cnt3dIRSIWQmJQi7tAQRpUc3mgdZZdOg3ds9hrs4JrQFQv+31ZEAwh6UYR9KgmTZCEKfnduiVRgLhOy0DcIqawZiaf783tIUxLnGcuUG0mXDvfuTXW6l7pc4BtflIgjfQRCWvARhD8q8D1llw/X4fsWvpjSQnD+5gKyy8VejD+7JvyUSxNcGy9UmCK2xjNNCzx+GBmFTlCBGBlAUcVtPCw2UIedPLqBWm0a2gmU0+q5T00gr9DMbuv0FILUnvXn/StsAAAAASUVORK5CYII=", "wiki_name" : "Iron dagger (Poison)", "wiki_url" : "https://oldschool.runescape.wiki/w/Iron_dagger#Poison", "wiki_exchange" : null, "equipment" : null, "weapon" : null} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "incomplete": {"type": "boolean"}, "members": {"type": "boolean"}, "tradeable": {"type": "boolean"}, "tradeable_on_ge": {"type": "boolean"}, "stackable": {"type": "boolean"}, "stacked": {"type": "null"}, "noted": {"type": "boolean"}, "noteable": {"type": "boolean"}, "linked_id_item": {"type": "integer"}, "linked_id_noted": {"type": "null"}, "linked_id_placeholder": {"type": "null"}, "placeholder": {"type": "boolean"}, "equipable": {"type": "boolean"}, "equipable_by_player": {"type": "boolean"}, "equipable_weapon": {"type": "boolean"}, "cost": {"type": "integer"}, "lowalch": {"type": "integer"}, "highalch": {"type": "integer"}, "weight": {"type": "number"}, "buy_limit": {"type": "null"}, "quest_item": {"type": "boolean"}, "release_date": {"type": "string"}, "duplicate": {"type": "boolean"}, "examine": {"type": "string"}, "icon": {"type": "string"}, "wiki_name": {"type": "string"}, "wiki_url": {"type": "string"}, "wiki_exchange": {"type": "null"}, "equipment": {"type": "null"}, "weapon": {"type": "null"}}, "required": ["id", "name", "incomplete", "members", "tradeable", "tradeable_on_ge", "stackable", "stacked", "noted", "noteable", "linked_id_item", "linked_id_noted", "linked_id_placeholder", "placeholder", "equipable", "equipable_by_player", "equipable_weapon", "cost", "lowalch", "highalch", "weight", "buy_limit", "quest_item", "release_date", "duplicate", "examine", "icon", "wiki_name", "wiki_url", "wiki_exchange", "equipment", "weapon"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Id": {"type": "string"}, "IsStatic": {"type": "boolean"}, "useGravity": {"type": "boolean"}, "randomRotation": {"type": "boolean"}, "Position": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "z": {"type": "integer"}}, "required": ["x", "y", "z"]}, "Rotation": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "z": {"type": "integer"}}, "required": ["x", "y", "z"]}, "IsGroupPosition": {"type": "boolean"}, "GroupPositions": {"type": "array", "items": {}}, "Root": {"type": "string"}, "Items": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}}, "required": ["_id", "_tpl"]}}}, "required": ["Id", "IsStatic", "useGravity", "randomRotation", "Position", "Rotation", "IsGroupPosition", "GroupPositions", "Root", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Id" : "Lootable_00044", "IsStatic" : true, "useGravity" : true, "randomRotation" : false, "Position" : {"x" : 0, "y" : 0, "z" : 0}, "Rotation" : {"x" : 0, "y" : 0, "z" : 0}, "IsGroupPosition" : false, "GroupPositions" : [], "Root" : "5eb3dd0e86f774633006b53b", "Items" : [{"_id" : "5eb3dd0e86f774633006b53b", "_tpl" : "5909d5ef86f77467974efbd8"}, {"_id" : "5eb3dd0e86f774633006b53c", "_tpl" : "5aafa857e5b5b00018480968", "parentId" : "5eb3dd0e86f774633006b53b", "slotId" : "main", "location" : {"x" : 0, "y" : 0, "r" : 0}}, {"_id" : "5eb3dd0e86f774633006b53d", "_tpl" : "5aaf8a0be5b5b00015693243", "parentId" : "5eb3dd0e86f774633006b53c", "slotId" : "mod_magazine"}, {"_id" : "5eb3dd0e86f774633006b544", "_tpl" : "58dd3ad986f77403051cba8f", "parentId" : "5eb3dd0e86f774633006b53d", "slotId" : "cartridges", "upd" : {"StackObjectsCount" : 17}}, {"_id" : "5eb3dd0e86f774633006b53e", "_tpl" : "5aaf8e43e5b5b00015693246", "parentId" : "5eb3dd0e86f774633006b53c", "slotId" : "mod_stock"}, {"_id" : "5eb3dd0e86f774633006b541", "_tpl" : "5ab24ef9e5b5b00fe93c9209", "parentId" : "5eb3dd0e86f774633006b53e", "slotId" : "mod_mount"}, {"_id" : "5eb3dd0e86f774633006b53f", "_tpl" : "5aaf9d53e5b5b00015042a52", "parentId" : "5eb3dd0e86f774633006b53c", "slotId" : "mod_barrel"}, {"_id" : "5eb3dd0e86f774633006b542", "_tpl" : "5aafa1c2e5b5b00015042a56", "parentId" : "5eb3dd0e86f774633006b53f", "slotId" : "mod_muzzle"}, {"_id" : "5eb3dd0e86f774633006b543", "_tpl" : "5aafa49ae5b5b00015042a58", "parentId" : "5eb3dd0e86f774633006b542", "slotId" : "mod_sight_front"}, {"_id" : "5eb3dd0e86f774633006b540", "_tpl" : "5abcbb20d8ce87001773e258", "parentId" : "5eb3dd0e86f774633006b53c", "slotId" : "mod_sight_rear"}]} | json_instruct | {"type": "object", "properties": {"Id": {"type": "string"}, "IsStatic": {"type": "boolean"}, "useGravity": {"type": "boolean"}, "randomRotation": {"type": "boolean"}, "Position": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "z": {"type": "integer"}}, "required": ["x", "y", "z"]}, "Rotation": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "z": {"type": "integer"}}, "required": ["x", "y", "z"]}, "IsGroupPosition": {"type": "boolean"}, "GroupPositions": {"type": "array", "items": {}}, "Root": {"type": "string"}, "Items": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}}, "required": ["_id", "_tpl"]}}}, "required": ["Id", "IsStatic", "useGravity", "randomRotation", "Position", "Rotation", "IsGroupPosition", "GroupPositions", "Root", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"manufacturer" : "Sony", "market_name" : "Xperia SP", "codename" : "M35t", "model" : "M35t"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "sakaadada", "h" : [{"d" : [{"f" : "\u751f\u75c5\u7684\u539f\u56e0\u3001\u7de3\u6545\u3002", "e" : ["\ufff9`Oya~`a~`n~ `ko~ `saka~`adada~ `no~ `'alomanay~ `a~ `tamdaw~ `to~ `kacitefo'an~.\ufffa\ufffb\u6b63\u56e0\u70ba\u6709\u90a3\u6a23\u7684\u539f\u56e0\uff0c\u51fa\u7b4d\u5b63\u7bc0\u5c31\u6709\u8a31\u591a\u4eba\u5f97\u75c5\u3002"]}]}], "stem" : "adada"} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ignore" : ["README.md", "LICENSE", "db.json", "public/"]} | json_instruct | {"type": "object", "properties": {"ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["ignore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "siteUrl": {"type": "string"}, "comment": {"type": "object", "properties": {"disqusShortName": {"type": "string"}, "utterances": {"type": "string"}}, "required": ["disqusShortName", "utterances"]}, "sponsor": {"type": "object", "properties": {"buyMeACoffeeId": {"type": "string"}}, "required": ["buyMeACoffeeId"]}}, "required": ["title", "author", "siteUrl", "comment", "sponsor"]}}, "required": ["siteMetadata"]}, "markdownRemark": {"type": "null"}}, "required": ["site", "markdownRemark"]}, "pageContext": {"type": "object", "properties": {"isCreatedByStatefulCreatePages": {"type": "boolean"}, "slug": {"type": "string"}, "previous": {"type": "null"}, "next": {"type": "object", "properties": {"fields": {"type": "object", "properties": {"slug": {"type": "string"}}, "required": ["slug"]}, "frontmatter": {"type": "object", "properties": {"title": {"type": "string"}, "category": {"type": "string"}}, "required": ["title", "category"]}}, "required": ["fields", "frontmatter"]}}, "required": ["isCreatedByStatefulCreatePages", "slug", "previous", "next"]}}, "required": ["data", "pageContext"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"site" : {"siteMetadata" : {"title" : "Jess2.io", "author" : "Jess2", "siteUrl" : "https://jess2.io", "comment" : {"disqusShortName" : "", "utterances" : ""}, "sponsor" : {"buyMeACoffeeId" : "Jess2"}}}, "markdownRemark" : null}, "pageContext" : {"isCreatedByStatefulCreatePages" : false, "slug" : "/development/third/", "previous" : null, "next" : {"fields" : {"slug" : "/development/second/"}, "frontmatter" : {"title" : "Second Post", "category" : "development"}}}} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "siteUrl": {"type": "string"}, "comment": {"type": "object", "properties": {"disqusShortName": {"type": "string"}, "utterances": {"type": "string"}}, "required": ["disqusShortName", "utterances"]}, "sponsor": {"type": "object", "properties": {"buyMeACoffeeId": {"type": "string"}}, "required": ["buyMeACoffeeId"]}}, "required": ["title", "author", "siteUrl", "comment", "sponsor"]}}, "required": ["siteMetadata"]}, "markdownRemark": {"type": "null"}}, "required": ["site", "markdownRemark"]}, "pageContext": {"type": "object", "properties": {"isCreatedByStatefulCreatePages": {"type": "boolean"}, "slug": {"type": "string"}, "previous": {"type": "null"}, "next": {"type": "object", "properties": {"fields": {"type": "object", "properties": {"slug": {"type": "string"}}, "required": ["slug"]}, "frontmatter": {"type": "object", "properties": {"title": {"type": "string"}, "category": {"type": "string"}}, "required": ["title", "category"]}}, "required": ["fields", "frontmatter"]}}, "required": ["isCreatedByStatefulCreatePages", "slug", "previous", "next"]}}, "required": ["data", "pageContext"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"instance": {"type": "object", "properties": {"scriptGenerator": {"type": "string"}, "scriptGenerator:": {"type": "string"}, "loadScripts": {"type": "string"}, "addLoadScript:": {"type": "string"}, "addLoadScriptFirst:": {"type": "string"}}, "required": ["scriptGenerator", "scriptGenerator:", "loadScripts", "addLoadScript:", "addLoadScriptFirst:"]}, "class": {"type": "object", "properties": {}, "required": []}}, "required": ["instance", "class"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"instance" : {"scriptGenerator" : "lr 2/22/2010 17:27", "scriptGenerator:" : "lr 2/21/2010 22:42", "loadScripts" : "lr 2/22/2010 17:25", "addLoadScript:" : "lr 2/22/2010 17:26", "addLoadScriptFirst:" : "lr 2/22/2010 17:26"}, "class" : {}} | json_instruct | {"type": "object", "properties": {"instance": {"type": "object", "properties": {"scriptGenerator": {"type": "string"}, "scriptGenerator:": {"type": "string"}, "loadScripts": {"type": "string"}, "addLoadScript:": {"type": "string"}, "addLoadScriptFirst:": {"type": "string"}}, "required": ["scriptGenerator", "scriptGenerator:", "loadScripts", "addLoadScript:", "addLoadScriptFirst:"]}, "class": {"type": "object", "properties": {}, "required": []}}, "required": ["instance", "class"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"time_fct_id": {"type": "integer"}, "time_fct": {"type": "string"}, "affiliate_facet_id": {"type": "integer"}, "affiliate_facet": {"type": "string"}, "occurrence": {"type": "integer"}, "affiliates": {"type": "array", "items": {"type": "object", "properties": {"facet_id": {"type": "integer"}, "occurrence": {"type": "integer"}, "value": {"type": "string"}}, "required": ["facet_id", "occurrence", "value"]}}}, "required": ["time_fct_id", "time_fct", "affiliate_facet_id", "affiliate_facet", "occurrence", "affiliates"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"time_fct_id" : 17, "time_fct" : "time_62090", "affiliate_facet_id" : 611, "affiliate_facet" : "H\u00f6hne, Erich", "occurrence" : 306, "affiliates" : [{"facet_id" : 611, "occurrence" : 323, "value" : "Badischer Sportbund Nord e.V."}]} | json_instruct | {"type": "object", "properties": {"time_fct_id": {"type": "integer"}, "time_fct": {"type": "string"}, "affiliate_facet_id": {"type": "integer"}, "affiliate_facet": {"type": "string"}, "occurrence": {"type": "integer"}, "affiliates": {"type": "array", "items": {"type": "object", "properties": {"facet_id": {"type": "integer"}, "occurrence": {"type": "integer"}, "value": {"type": "string"}}, "required": ["facet_id", "occurrence", "value"]}}}, "required": ["time_fct_id", "time_fct", "affiliate_facet_id", "affiliate_facet", "occurrence", "affiliates"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"logs": {"type": "array", "items": {"type": "object", "properties": {"outputFile": {"type": "string"}, "map": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "from": {"type": "object", "properties": {"startLines": {"type": "string"}, "startColumns": {"type": "string"}, "startOffsets": {"type": "string"}, "endColumns": {"type": "string"}, "endOffsets": {"type": "string"}}, "required": ["startLines", "startColumns", "startOffsets", "endColumns", "endOffsets"]}}, "required": ["source", "from"]}}}, "required": ["outputFile", "map"]}}}, "required": ["logs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"logs" : [{"outputFile" : "C:\\MyTrainingNew2\\DJI Drone\\Tutorial\\Android-VideoStreamDecodingSample-master\\android-videostreamdecodingsample\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-w640dp-v13\\values-w640dp-v13.xml", "map" : [{"source" : "C:\\Users\\Cris\\.gradle\\caches\\transforms-1\\files-1.1\\dji-sdk-4.7.aar\\b1a60d59ad95623b8231103b77f65ac9\\res\\values-w640dp-v13\\values-w640dp-v13.xml", "from" : {"startLines" : "2,3,4,5,6", "startColumns" : "4,4,4,4,4", "startOffsets" : "55,120,182,243,305", "endColumns" : "64,61,60,61,57", "endOffsets" : "115,177,238,300,358"}}]}]} | json_instruct | {"type": "object", "properties": {"logs": {"type": "array", "items": {"type": "object", "properties": {"outputFile": {"type": "string"}, "map": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "from": {"type": "object", "properties": {"startLines": {"type": "string"}, "startColumns": {"type": "string"}, "startOffsets": {"type": "string"}, "endColumns": {"type": "string"}, "endOffsets": {"type": "string"}}, "required": ["startLines", "startColumns", "startOffsets", "endColumns", "endOffsets"]}}, "required": ["source", "from"]}}}, "required": ["outputFile", "map"]}}}, "required": ["logs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "technology-innovation-project", "symbol" : "tip", "name" : "Technology Innovation Project", "platforms" : {"ethereum" : "0x07de533cbc72395c32eb8981ddccd2cc6a6e1c4e"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "TIP is a key economic element within the platform, and is used in various businesses such as cryptocurrency payments, coupons, mileage, earning, and discounts.\r\n\r\nBy applying the transparency, security, and safety of blockchain technology to a 1: 1 connection between consumers and companies, it inevitably reduces brokerage costs and leads the standardization of blockchain finance.\r\n\r\nBy integrating various fragmented business data (points, coupons, mileage, earning, discounts, etc.), it is possible to create an infrastructure that can be used anywhere and advance into the real economy.\r\n\r\nA new economic ecosystem that has never been seen is realized through TIP."}, "country_origin" : "", "genesis_date" : null, "contract_address" : "0x07de533cbc72395c32eb8981ddccd2cc6a6e1c4e", "url" : "http://tiptoken.io/", "explorers" : ["https://etherscan.io/token/0x07dE533cBC72395C32eB8981DDccD2CC6a6E1c4E", "https://ethplorer.io/address/0x07dE533cBC72395C32eB8981DDccD2CC6a6E1c4E"], "twitter" : "technologyinn12", "telegram" : "tiptoken"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "23843131", "name" : "Livingstone Close", "nodes" : [{"type" : "node", "id" : 258368561, "lat" : 52.4226731, "lon" : -0.7880518}, {"type" : "node", "id" : 258368564, "lat" : 52.4227516, "lon" : -0.7885496}, {"type" : "node", "id" : 570694067, "lat" : 52.4226186, "lon" : -0.7878549}], "volunteer_postcode" : "NN14 6TU", "closest_distance" : 259} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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 iblcn on Metamath](http://us.metamath.org/mpegif/iblcn.html)"}], "names" : ["iblcn"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_wph", "#T_wa", "#T_vx", "#T_wcel", "#T_cA", "#T_wi", "#T_cB", "#T_wcel", "#T_cc", "#T_wph", "#T_wi", "#T_vx", "#T_cmpt--1", "#T_cA", "#T_cmpt--2", "#T_cB", "#T_wcel", "#T_cibl", "#T_wb", "#T_vx", "#T_cmpt--1", "#T_cA", "#T_cmpt--2", "#T_cre", "#T_cfv", "#T_cB", "#T_wcel", "#T_cibl", "#T_wa", "#T_vx", "#T_cmpt--1", "#T_cA", "#T_cmpt--2", "#T_cim", "#T_cfv", "#T_cB", "#T_wcel", "#T_cibl", "#T_cA", "#T_vx", "#T_wph", "#T_vx"], "metaLanguage" : "METAMATH", "remarks" : " Integrability of a complex function. (Contributed by Mario Carneiro, 6-Aug-2014.) ", "statement" : "iblcn.1 $e |- ( ( ph /\\ x e. A ) -> B e. CC ) $.\niblcn $p |- ( ph -> ( ( x e. A |-> B ) e. L^1 <-> ( ( x e. A |-> ( Re ` B ) ) e. L^1 /\\ ( x e. A |-> ( Im ` B ) ) e. L^1 ) ) ) $.\n$d A 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"animations": {"type": "array", "items": {"type": "object", "properties": {"loop": {"type": "boolean"}, "offsets": {"type": "array", "items": {"type": "integer"}}, "anim": {"type": "string"}, "fps": {"type": "integer"}, "name": {"type": "string"}, "indices": {"type": "array", "items": {}}}, "required": ["loop", "offsets", "anim", "fps", "name", "indices"]}}, "no_antialiasing": {"type": "boolean"}, "image": {"type": "string"}, "position": {"type": "array", "items": {"type": "integer"}}, "healthicon": {"type": "string"}, "flip_x": {"type": "boolean"}, "healthbar_colors": {"type": "array", "items": {"type": "integer"}}, "camera_position": {"type": "array", "items": {"type": "integer"}}, "sing_duration": {"type": "number"}, "scale": {"type": "integer"}}, "required": ["animations", "no_antialiasing", "image", "position", "healthicon", "flip_x", "healthbar_colors", "camera_position", "sing_duration", "scale"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"animations" : [{"loop" : false, "offsets" : [-28, -57], "anim" : "idle", "fps" : 24, "name" : "Saku Idle", "indices" : []}, {"loop" : false, "offsets" : [-64, -58], "anim" : "singLEFT", "fps" : 24, "name" : "Saku Left", "indices" : []}, {"loop" : false, "offsets" : [50, -75], "anim" : "singDOWN", "fps" : 24, "name" : "Saku Down", "indices" : []}, {"loop" : false, "offsets" : [-1, -25], "anim" : "singUP", "fps" : 24, "name" : "Saku Up", "indices" : []}, {"offsets" : [140, -60], "indices" : [], "fps" : 24, "anim" : "singRIGHT", "loop" : false, "name" : "Saku Right"}], "no_antialiasing" : true, "image" : "characters/Sakuminus", "position" : [-60, 265], "healthicon" : "sakuroma-minusalt", "flip_x" : true, "healthbar_colors" : [255, 0, 80], "camera_position" : [0, 0], "sing_duration" : 6.1, "scale" : 1} | json_instruct | {"type": "object", "properties": {"animations": {"type": "array", "items": {"type": "object", "properties": {"loop": {"type": "boolean"}, "offsets": {"type": "array", "items": {"type": "integer"}}, "anim": {"type": "string"}, "fps": {"type": "integer"}, "name": {"type": "string"}, "indices": {"type": "array", "items": {}}}, "required": ["loop", "offsets", "anim", "fps", "name", "indices"]}}, "no_antialiasing": {"type": "boolean"}, "image": {"type": "string"}, "position": {"type": "array", "items": {"type": "integer"}}, "healthicon": {"type": "string"}, "flip_x": {"type": "boolean"}, "healthbar_colors": {"type": "array", "items": {"type": "integer"}}, "camera_position": {"type": "array", "items": {"type": "integer"}}, "sing_duration": {"type": "number"}, "scale": {"type": "integer"}}, "required": ["animations", "no_antialiasing", "image", "position", "healthicon", "flip_x", "healthbar_colors", "camera_position", "sing_duration", "scale"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"subreddit" : "environmental_science", "author" : "Tradescienceinc", "count" : 3} | json_instruct | {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "Object.defineProperty(exports, \"__esModule\", {\n value: true\n});\n\nvar GuidGenerator =\n/** @class */\nfunction () {\n function GuidGenerator() {\n this.counter = 0;\n }\n\n GuidGenerator.prototype.reset = function () {\n this.counter = 0;\n };\n\n GuidGenerator.prototype.guid = function (prefix) {\n if (prefix === void 0) {\n prefix = \"\";\n }\n\n var id = ++this.counter;\n return prefix.toString() + id;\n };\n\n return GuidGenerator;\n}();\n\nexports.GuidGenerator = GuidGenerator;", "map" : null, "metadata" : {}, "sourceType" : "script"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"extends": {"type": "string"}, "rules": {"type": "object", "properties": {"lines-around-comment": {"type": "string"}}, "required": ["lines-around-comment"]}}, "required": ["extends", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : "aero", "rules" : {"lines-around-comment" : "off"}} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "rules": {"type": "object", "properties": {"lines-around-comment": {"type": "string"}}, "required": ["lines-around-comment"]}}, "required": ["extends", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["370881108201", "\u9648\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["370881108203", "\u5cb3\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["370881108208", "\u674e\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["370881108212", "\u4e09\u95e8\u5e99\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108213", "\u8881\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108214", "\u9ad8\u5e97\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108217", "\u5b54\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108222", "\u7eb8\u574a\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["370881108226", "\u5218\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["370881108235", "\u8521\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108236", "\u51af\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108237", "\u5317\u9a6c\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108242", "\u8f66\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108245", "\u8f9b\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108246", "\u524d\u738b\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["370881108247", "\u891a\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["370881108248", "\u502a\u5bb6\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108249", "\u524d\u5b5f\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108250", "\u5b5f\u674e\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108251", "\u5386\u5bb6\u5e99\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["370881108252", "\u4e1c\u767d\u77f3\u6865\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108253", "\u4e1c\u7126\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108254", "\u9676\u4e1c\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108255", "\u4e2d\u738b\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108256", "\u540e\u738b\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108257", "\u4e2d\u4e94\u884c\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108258", "\u540e\u5b5f\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108259", "\u738b\u5bb6\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108260", "\u90ed\u5802\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108261", "\u88f4\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108262", "\u90b1\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108263", "\u4ed9\u5e97\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108264", "\u5357\u9a6c\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108265", "\u9b4f\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108266", "\u5cb3\u5be8\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108267", "\u5b54\u9053\u6c9f\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108268", "\u5b59\u9053\u6c9f\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108269", "\u897f\u767d\u77f3\u6865\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108270", "\u6a2a\u6c9f\u6cc9\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108271", "\u9676\u897f\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108272", "\u897f\u7126\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108273", "\u6bd5\u5bb6\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108274", "\u6731\u5bb6\u6751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["370881108275", "\u5b8b\u5357\u5e84\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200872727552000, "key" : "/static/d410aab04bcaf617aa111bcf6d6e1548/44c61/crop-resource-label-toggle.png", "val" : "f96de1c186e7143fceac5a5720e7844b"} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Name": {"type": "string"}, "Registry ID": {"type": "string"}, "Class": {"type": "string"}}, "required": ["Name", "Registry ID", "Class"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "SpecialWitch", "Registry ID" : "specialmobs:specialwitch", "Class" : "fathertoast.specialmobs.entity.witch.Entity_SpecialWitch"} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "Registry ID": {"type": "string"}, "Class": {"type": "string"}}, "required": ["Name", "Registry ID", "Class"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"<10": {"type": "string"}, "10-19": {"type": "string"}, "20-29": {"type": "string"}, "30-39": {"type": "string"}, "40-49": {"type": "string"}, "50-59": {"type": "string"}, "60-69": {"type": "string"}, "70+": {"type": "string"}}, "required": ["<10", "10-19", "20-29", "30-39", "40-49", "50-59", "60-69", "70+"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"<10" : "1", "10-19" : "3", "20-29" : "11", "30-39" : "27", "40-49" : "105", "50-59" : "236", "60-69" : "410", "70+" : "1,249"} | json_instruct | {"type": "object", "properties": {"<10": {"type": "string"}, "10-19": {"type": "string"}, "20-29": {"type": "string"}, "30-39": {"type": "string"}, "40-49": {"type": "string"}, "50-59": {"type": "string"}, "60-69": {"type": "string"}, "70+": {"type": "string"}}, "required": ["<10", "10-19", "20-29", "30-39", "40-49", "50-59", "60-69", "70+"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "code": {"type": "string"}, "country": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "type": {"type": "string"}, "updated": {"type": "string"}, "description": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}, "geo": {"type": "object", "properties": {"accuracy": {"type": "string"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["accuracy", "lat", "lon"]}}, "required": ["name", "city", "state", "code", "country", "phone", "website", "type", "updated", "description", "address", "geo"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Krogh's Restaurant and Brewpub", "city" : "Sparta", "state" : "New Jersey", "code" : "7871", "country" : "United States", "phone" : "1-973-729-8428", "website" : "", "type" : "brewery", "updated" : "2010-07-22 20:00:20", "description" : "", "address" : ["23 White Deer Plaza"], "geo" : {"accuracy" : "GEOMETRIC_CENTER", "lat" : 41.0323, "lon" : -74.6407}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "code": {"type": "string"}, "country": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "type": {"type": "string"}, "updated": {"type": "string"}, "description": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}, "geo": {"type": "object", "properties": {"accuracy": {"type": "string"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["accuracy", "lat", "lon"]}}, "required": ["name", "city", "state", "code", "country", "phone", "website", "type", "updated", "description", "address", "geo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Luke\\Migration\\": {"type": "string"}}, "required": ["Luke\\Migration\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-pdo": {"type": "string"}}, "required": ["php", "ext-pdo"]}}, "required": ["name", "description", "license", "type", "keywords", "autoload", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "lcs13761/migration", "description" : "Migration to mysql database", "license" : "MIT", "type" : "library", "keywords" : ["migration", "mysql", "database", "db"], "autoload" : {"psr-4" : {"Luke\\Migration\\" : "src/"}, "files" : ["src/Config/Database/Config.php"]}, "authors" : [{"name" : "lucas silva", "email" : "lcs13761@gmail.com"}], "require" : {"php" : "^8.0", "ext-pdo" : "*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Luke\\Migration\\": {"type": "string"}}, "required": ["Luke\\Migration\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-pdo": {"type": "string"}}, "required": ["php", "ext-pdo"]}}, "required": ["name", "description", "license", "type", "keywords", "autoload", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "samples": {"type": "array", "items": {"type": "object", "properties": {"displayName": {"type": "string"}, "description": {"type": "string"}, "path": {"type": "string"}}, "required": ["displayName", "description", "path"]}}}, "required": ["name", "displayName", "version", "unity", "description", "keywords", "dependencies", "author", "samples"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "com.ikorin24.u8xmlparser", "displayName" : "U8XmlParser", "version" : "1.3.0", "unity" : "2020.3", "description" : "Provides the fastest xml parser.", "keywords" : ["xml", "parser", "XmlParser", "U8XmlParser"], "dependencies" : {}, "author" : {"name" : "ikorin24", "email" : "sunshinexxab@yahoo.co.jp"}, "samples" : [{"displayName" : "U8XmlParserSample", "description" : "Sample scene for U8XmlParser", "path" : "U8XmlParser/Samples~/U8XmlParserSample"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "samples": {"type": "array", "items": {"type": "object", "properties": {"displayName": {"type": "string"}, "description": {"type": "string"}, "path": {"type": "string"}}, "required": ["displayName", "description", "path"]}}}, "required": ["name", "displayName", "version", "unity", "description", "keywords", "dependencies", "author", "samples"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 85911725, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "d67cc8c03660c4805219946ee5fd5619", "wof:id" : 85911725, "wof:repo" : "whosonfirst-data-admin-jp"}, "bbox" : [139.75152, 35.730907, 139.763428, 35.746859], "geometry" : {"coordinates" : [[[139.75282, 35.746859], [139.753663, 35.746512], [139.75708, 35.746512], [139.758219, 35.746512], [139.758453, 35.746801], [139.759156, 35.746512], [139.762573, 35.746512], [139.762573, 35.745109], [139.762573, 35.742054], [139.762573, 35.742054], [139.762523, 35.741992], [139.762573, 35.741805], [139.763428, 35.738648], [139.762573, 35.737595], [139.762573, 35.735366], [139.762573, 35.733136], [139.762573, 35.730907], [139.759827, 35.730907], [139.756544, 35.730907], [139.755941, 35.733136], [139.752726, 35.733136], [139.752726, 35.733136], [139.751587, 35.733136], [139.751587, 35.737595], [139.751587, 35.739825], [139.751587, 35.742004], [139.75152, 35.742054], [139.751587, 35.742302], [139.751587, 35.746512], [139.752726, 35.746512], [139.75282, 35.746859]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1880, 131], [1881, 135], [1882, 139], [1883, 135], [1884, 159], [1885, 128], [1886, 139], [1887, 111], [1888, 146], [1889, 116], [1890, 152], [1891, 124], [1892, 138], [1893, 113], [1894, 129], [1895, 139], [1896, 118], [1897, 121], [1898, 127], [1899, 120], [1900, 166], [1901, 105], [1902, 112], [1903, 88], [1904, 102], [1905, 137], [1906, 98], [1907, 107], [1908, 116], [1909, 102], [1910, 178], [1911, 135], [1912, 222], [1913, 249], [1914, 267], [1915, 295], [1916, 329], [1917, 323], [1918, 358], [1919, 360], [1920, 373], [1921, 320], [1922, 327], [1923, 321], [1924, 342], [1925, 362], [1926, 353], [1927, 378], [1928, 324], [1929, 331], [1930, 339], [1931, 383], [1932, 386], [1933, 376], [1934, 459], [1935, 469], [1936, 525], [1937, 593], [1938, 626], [1939, 663], [1940, 769], [1941, 865], [1942, 1053], [1943, 1088], [1944, 1127], [1945, 1076], [1946, 1399], [1947, 1694], [1948, 1507], [1949, 1163], [1950, 876], [1951, 744], [1952, 770], [1953, 765], [1954, 831], [1955, 1055], [1956, 1356], [1957, 2183], [1958, 2954], [1959, 3316], [1960, 3046], [1961, 2798], [1962, 2364], [1963, 1998], [1964, 1534], [1965, 1159], [1966, 868], [1967, 772], [1968, 668], [1969, 564], [1970, 522], [1971, 412], [1972, 313], [1973, 241], [1974, 227], [1975, 186], [1976, 180], [1977, 191], [1978, 165], [1979, 155], [1980, 160], [1981, 170], [1982, 171], [1983, 146], [1984, 152], [1985, 147], [1986, 139], [1987, 134], [1988, 162], [1989, 127], [1990, 125], [1991, 133], [1992, 123], [1993, 123], [1994, 115], [1995, 113], [1996, 90], [1997, 91], [1998, 90], [1999, 103], [2000, 96], [2001, 98], [2002, 109], [2003, 115], [2004, 100], [2005, 100], [2006, 90], [2007, 101], [2008, 93], [2009, 84], [2010, 71], [2011, 70], [2012, 78], [2013, 78], [2014, 77]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"world": {"type": "array", "items": {"type": "object", "properties": {"term": {"type": "string"}, "points": {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "value": {"type": "integer"}}, "required": ["date", "value"]}}}, "required": ["term", "points"]}}}, "required": ["world"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"world" : [{"term" : "Zika virus", "points" : [{"date" : "2015-04-30", "value" : 2}, {"date" : "2015-05-31", "value" : 2}, {"date" : "2015-06-30", "value" : 2}, {"date" : "2015-07-31", "value" : 1}, {"date" : "2015-08-31", "value" : 1}, {"date" : "2015-09-30", "value" : 1}, {"date" : "2015-10-31", "value" : 3}, {"date" : "2015-11-30", "value" : 11}, {"date" : "2015-12-31", "value" : 57}, {"date" : "2016-01-31", "value" : 100}, {"date" : "2016-02-29", "value" : 34}, {"date" : "2016-03-31", "value" : 28}, {"date" : "2016-04-30", "value" : 24}, {"date" : "2016-05-31", "value" : 23}, {"date" : "2016-06-30", "value" : 21}, {"date" : "2016-07-31", "value" : 34}, {"date" : "2016-08-31", "value" : 23}, {"date" : "2016-09-30", "value" : 11}, {"date" : "2016-10-31", "value" : 9}, {"date" : "2016-11-30", "value" : 6}, {"date" : "2016-12-31", "value" : 5}, {"date" : "2017-01-31", "value" : 5}]}]} | json_instruct | {"type": "object", "properties": {"world": {"type": "array", "items": {"type": "object", "properties": {"term": {"type": "string"}, "points": {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "value": {"type": "integer"}}, "required": ["date", "value"]}}}, "required": ["term", "points"]}}}, "required": ["world"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"antd-with-locales.js": {"type": "string"}, "antd-with-locales.min.js": {"type": "string"}, "antd.css": {"type": "string"}, "antd.js": {"type": "string"}, "antd.min.css": {"type": "string"}, "antd.min.js": {"type": "string"}}, "required": ["antd-with-locales.js", "antd-with-locales.min.js", "antd.css", "antd.js", "antd.min.css", "antd.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"antd-with-locales.js" : "sha512-AP9lkyogbEVgQcdT8U02bwi0TJfmK7oZv1LyjaxOmIxRFYh9T0zegmXyAIzchlqw4ivpWAxRmO616MGLez02/Q==", "antd-with-locales.min.js" : "sha512-CIzXbU5DFPY+ZYxJuPHiPs6rS3suh8i+dQg6X0ak2VOr4J3aym86zNSg6bN931st2KW26CxdLDO+ClNvONPWRA==", "antd.css" : "sha512-ykyXVgBqj+nHqdwTJ9T161pKCKRxKmEegxhLsp7OTjVw0osVO5m9FCvDuDIODtx5DBbaHOSfvy6vnsRAt5FK1Q==", "antd.js" : "sha512-K26+cWpdFm5e93Lr0tmULKGx5+6iP9YiOzedLp92Tl8j4m8YSWhWrbtze59MPFFTrWfiY9Uzj08JsGvZ+CneJA==", "antd.min.css" : "sha512-KqfozqXinMCs4zWa36KwBZZlsmMVvw40nr3Q3HysYe6zR7FhKZDtZ/ymjipBhy4WntZQGybWg4Ny7bv2ZQ+zuA==", "antd.min.js" : "sha512-hMOZnF+VLBX3U+TptuGXj38oNloHJnbPaUghKyQKiwRY206sFT+WKkzjZxvqANEmOTz6/h2GRQ8Rh3yz1fbPsQ=="} | json_instruct | {"type": "object", "properties": {"antd-with-locales.js": {"type": "string"}, "antd-with-locales.min.js": {"type": "string"}, "antd.css": {"type": "string"}, "antd.js": {"type": "string"}, "antd.min.css": {"type": "string"}, "antd.min.js": {"type": "string"}}, "required": ["antd-with-locales.js", "antd-with-locales.min.js", "antd.css", "antd.js", "antd.min.css", "antd.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["330206006001", "\u82a6\u5317\u793e\u533a", "111", "0"], ["330206006002", "\u82a6\u5357\u793e\u533a", "111", "0"], ["330206006003", "\u7a7f\u5c71\u793e\u533a", "220", "0"], ["330206006004", "\u517b\u5fd7\u793e\u533a", "111", "0"], ["330206006005", "\u4e07\u666f\u5c71\u793e\u533a", "111", "0"], ["330206006200", "\u4e94\u9a6c\u6751\u59d4\u4f1a", "111", "0"], ["330206006201", "\u6c83\u5bb6\u6751\u59d4\u4f1a", "112", "0"], ["330206006202", "\u8f66\u580d\u6751\u59d4\u4f1a", "112", "0"], ["330206006203", "\u7530\u6d0b\u6751\u59d4\u4f1a", "112", "0"], ["330206006204", "\u65b0\u66f9\u6751\u59d4\u4f1a", "112", "0"], ["330206006205", "\u8001\u66f9\u6751\u59d4\u4f1a", "112", "0"], ["330206006206", "\u949f\u7075\u6751\u59d4\u4f1a", "220", "0"], ["330206006207", "\u7ea2\u5149\u6751\u59d4\u4f1a", "220", "0"], ["330206006208", "\u6d2a\u6eaa\u6751\u59d4\u4f1a", "220", "0"], ["330206006209", "\u4e0a\u53f2\u6751\u59d4\u4f1a", "220", "0"], ["330206006210", "\u6d2a\u5c99\u6751\u59d4\u4f1a", "220", "0"], ["330206006211", "\u6c34\u82b9\u6751\u59d4\u4f1a", "220", "0"], ["330206006212", "\u82a6\u6c5f\u6751\u59d4\u4f1a", "220", "0"], ["330206006213", "\u6c99\u6eaa\u6751\u59d4\u4f1a", "220", "0"], ["330206006214", "\u540e\u6240\u6751\u59d4\u4f1a", "220", "0"], ["330206006215", "\u4e0a\u5468\u6751\u59d4\u4f1a", "220", "0"], ["330206006216", "\u7a7f\u5c71\u6751\u59d4\u4f1a", "220", "0"], ["330206006217", "\u5927\u6e7e\u6751\u59d4\u4f1a", "123", "0"], ["330206006218", "\u4e1c\u5c71\u95e8\u6751\u59d4\u4f1a", "220", "0"], ["330206006219", "\u540c\u76df\u6751\u59d4\u4f1a", "220", "0"], ["330206006220", "\u5cad\u4e0b\u6751\u59d4\u4f1a", "220", "0"], ["330206006221", "\u6cb3\u5934\u6751\u59d4\u4f1a", "220", "0"], ["330206006222", "\u4e45\u52e4\u6751\u59d4\u4f1a", "220", "0"], ["330206006223", "\u9ad8\u6751\u59d4\u4f1a", "220", "0"], ["330206006224", "\u9648\u80dc\u6751\u59d4\u4f1a", "220", "0"], ["330206006225", "\u540e\u90d1\u6751\u59d4\u4f1a", "220", "0"], ["330206006226", "\u524d\u90d1\u6751\u59d4\u4f1a", "220", "0"], ["330206006227", "\u4e1c\u516d\u623f\u6751\u59d4\u4f1a", "220", "0"], ["330206006228", "\u5927\u6e9f\u6751\u59d4\u4f1a", "220", "0"], ["330206006229", "\u7518\u6eaa\u6751\u59d4\u4f1a", "220", "0"], ["330206006230", "\u4e0b\u9f99\u6cc9\u6751\u59d4\u4f1a", "220", "0"], ["330206006231", "\u4e0a\u9f99\u6cc9\u6751\u59d4\u4f1a", "220", "0"], ["330206006232", "\u738b\u5bb6\u9e93\u6751\u59d4\u4f1a", "220", "0"], ["330206006233", "\u56db\u5408\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$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"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "role"]}}, "version": {"type": "string"}, "time": {"type": "string"}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "pear-pear.horde.org/Horde_Exception": {"type": "string"}, "pear-pear.horde.org/Horde_Http": {"type": "string"}, "pear-pear.horde.org/Horde_Translation": {"type": "string"}, "pear-pear.horde.org/Horde_Support": {"type": "string"}, "pear-pear.horde.org/Horde_Util": {"type": "string"}, "ext-json": {"type": "string"}, "ext-SimpleXML": {"type": "string"}}, "required": ["php", "pear-pear.horde.org/Horde_Exception", "pear-pear.horde.org/Horde_Http", "pear-pear.horde.org/Horde_Translation", "pear-pear.horde.org/Horde_Support", "pear-pear.horde.org/Horde_Util", "ext-json", "ext-SimpleXML"]}}, "required": ["name", "description", "type", "homepage", "license", "authors", "version", "time", "repositories", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "horde/horde-service-facebook", "description" : "Horde Facebook client", "type" : "library", "homepage" : "http://pear.horde.org", "license" : "BSD-2-Clause", "authors" : [{"name" : "Michael J Rubinsky", "email" : "mrubinsk@horde.org", "role" : "lead"}], "version" : "2.0.9", "time" : "2016-04-05", "repositories" : [{"type" : "pear", "url" : "http://pear.horde.org"}], "require" : {"php" : ">=5.3.0,<=6.0.0alpha1", "pear-pear.horde.org/Horde_Exception" : ">=2.0.0@stable,<=3.0.0alpha1@stable", "pear-pear.horde.org/Horde_Http" : ">=2.0.0@stable,<=3.0.0alpha1@stable", "pear-pear.horde.org/Horde_Translation" : ">=2.2.0@stable,<=3.0.0alpha1@stable", "pear-pear.horde.org/Horde_Support" : ">=2.0.0@stable,<=3.0.0alpha1@stable", "pear-pear.horde.org/Horde_Util" : ">=2.0.0@stable,<=3.0.0alpha1@stable", "ext-json" : "*", "ext-SimpleXML" : "*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "role"]}}, "version": {"type": "string"}, "time": {"type": "string"}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "pear-pear.horde.org/Horde_Exception": {"type": "string"}, "pear-pear.horde.org/Horde_Http": {"type": "string"}, "pear-pear.horde.org/Horde_Translation": {"type": "string"}, "pear-pear.horde.org/Horde_Support": {"type": "string"}, "pear-pear.horde.org/Horde_Util": {"type": "string"}, "ext-json": {"type": "string"}, "ext-SimpleXML": {"type": "string"}}, "required": ["php", "pear-pear.horde.org/Horde_Exception", "pear-pear.horde.org/Horde_Http", "pear-pear.horde.org/Horde_Translation", "pear-pear.horde.org/Horde_Support", "pear-pear.horde.org/Horde_Util", "ext-json", "ext-SimpleXML"]}}, "required": ["name", "description", "type", "homepage", "license", "authors", "version", "time", "repositories", "require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 72150, "cartId" : "f96afb8f-67a9-41de-9556-dad57003846d", "preferredProducts" : [825, 2425], "productReviews" : [{"productId" : 969, "reviewText" : "The box this comes in is 3 meter by 6 yard and weights 12 pound.", "reviewDate" : "2018-02-18T14:07:51.3177598+02:00"}, {"productId" : 2908, "reviewText" : "It only works when I'm Niue.", "reviewDate" : "2018-08-19T09:20:37.8658342+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"mongoose": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["mongoose", "underscore"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "aiport-pile-page", "version" : "0.0.1", "description" : "", "main" : "page.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/surprisetalk/aiport-pile-page.git"}, "keywords" : ["aiport", "pile", "page"], "author" : "taylor sarrafian", "license" : "ISC", "bugs" : {"url" : "https://github.com/surprisetalk/aiport-pile-page/issues"}, "homepage" : "https://github.com/surprisetalk/aiport-pile-page#readme", "dependencies" : {"mongoose" : "^4.5.3", "underscore" : "^1.8.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"mongoose": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["mongoose", "underscore"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"qcloud-weapp-client-sdk": {"type": "string"}}, "required": ["qcloud-weapp-client-sdk"]}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "qcloud-weapp-client-fangyan", "description" : "QCloud Wechat App FangYan", "main" : "app.js", "authors" : ["Tencent Clound"], "license" : "MIT", "keywords" : ["qcloud", "wechat", "weapp", "demo", "sdk"], "homepage" : "", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"qcloud-weapp-client-sdk" : "*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"qcloud-weapp-client-sdk": {"type": "string"}}, "required": ["qcloud-weapp-client-sdk"]}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["function proxiableUUID() view returns (bytes32)"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "cy:open": {"type": "string"}}, "required": ["test", "cy:open"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"cypress": {"type": "string"}}, "required": ["cypress"]}}, "required": ["name", "version", "description", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "documenting-custom-commands", "version" : "1.0.0", "description" : "Project for live 20 of Talking About Testing YouTube channel", "scripts" : {"test" : "cypress run --reporter nyan", "cy:open" : "cypress open"}, "keywords" : ["cypress.io", "cypress custom commands", "cypress custom commands docs"], "author" : "Walmyr Filho <wlsf82@gmail.com> (https://walmyr.dev)", "license" : "MIT", "devDependencies" : {"cypress" : "^7.4.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "cy:open": {"type": "string"}}, "required": ["test", "cy:open"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"cypress": {"type": "string"}}, "required": ["cypress"]}}, "required": ["name", "version", "description", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"IssuedDate": {"type": "string"}, "TotalAmount": {"type": "string"}, "LineItem": {"type": "array", "items": {"type": "object", "properties": {"ItemDescription": {"type": "string"}, "ItemTotal": {"type": "string"}, "ItemUnitCount": {"type": "string"}, "ItemUnitValue": {"type": "string"}}, "required": ["ItemDescription", "ItemTotal", "ItemUnitCount", "ItemUnitValue"]}}, "InvoiceNumber": {"type": "string"}}, "required": ["IssuedDate", "TotalAmount", "LineItem", "InvoiceNumber"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IssuedDate" : "07/31/94", "TotalAmount" : "9,465.75", "LineItem" : [{"ItemDescription" : "Out Of Pocket", "ItemTotal" : "0.00", "ItemUnitCount" : "", "ItemUnitValue" : ""}, {"ItemDescription" : "Creative Supervision", "ItemTotal" : "9*465.75", "ItemUnitCount" : "", "ItemUnitValue" : ""}], "InvoiceNumber" : ""} | json_instruct | {"type": "object", "properties": {"IssuedDate": {"type": "string"}, "TotalAmount": {"type": "string"}, "LineItem": {"type": "array", "items": {"type": "object", "properties": {"ItemDescription": {"type": "string"}, "ItemTotal": {"type": "string"}, "ItemUnitCount": {"type": "string"}, "ItemUnitValue": {"type": "string"}}, "required": ["ItemDescription", "ItemTotal", "ItemUnitCount", "ItemUnitValue"]}}, "InvoiceNumber": {"type": "string"}}, "required": ["IssuedDate", "TotalAmount", "LineItem", "InvoiceNumber"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"linksControlsLabel": {"type": "string"}}, "required": ["linksControlsLabel"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"linksControlsLabel" : "Links & buttons"} | json_instruct | {"type": "object", "properties": {"linksControlsLabel": {"type": "string"}}, "required": ["linksControlsLabel"], "$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" : "/home/aleksei/google schoolarship/advance/lesson 1/FragmentExample1/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", "source" : "/home/aleksei/.android/build-cache/6f1b1795399163443acf98e316dff95709638033/output/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png"}, {"merged" : "/home/aleksei/google schoolarship/advance/lesson 1/FragmentExample1/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", "source" : "/home/aleksei/.android/build-cache/6f1b1795399163443acf98e316dff95709638033/output/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png"}, {"merged" : "/home/aleksei/google schoolarship/advance/lesson 1/FragmentExample1/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png", "source" : "/home/aleksei/.android/build-cache/6f1b1795399163443acf98e316dff95709638033/output/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "type": {"type": "string"}, "level": {"type": "null"}}, "required": ["text", "type", "level"]}}}, "required": ["number", "title", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"number" : "52.236-19", "title" : "Organization and Direction of the Work.", "children" : [{"text" : "As prescribed in 36.519, insert the following clause in solicitations and contracts when a cost-reimbursement construction contract is contemplated:", "type" : "paragraph", "level" : null}, {"text" : "Organization and Direction of the Work (Apr 1984)", "type" : "paragraph", "level" : null}, {"text" : "(a) When this contract is executed, the Contractor shall submit to the Contracting Officer a chart showing the general executive and administrative organization, the personnel to be employed in connection with the work under this contract, and their respective duties. The Contractor shall keep the data furnished current by supplementing it as additional information becomes available.", "type" : "paragraph", "level" : null}, {"text" : "(b) Work performance under this contract shall be under the full-time resident direction of (1) the Contractor, if the Contractor is an individual; (2) one or more principal partners, if the Contractor is a partnership; or (3) one or more senior officers, if Contractor is a corporation, association, or similar legal entity. However, if the Contracting Officer approves, the Contractor may be represented in the direction of the work by a specific person or persons holding positions other than those identified in this paragraph.", "type" : "paragraph", "level" : null}, {"text" : "(End of clause)", "type" : "paragraph", "level" : null}]} | json_instruct | {"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "type": {"type": "string"}, "level": {"type": "null"}}, "required": ["text", "type", "level"]}}}, "required": ["number", "title", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "1.0.2.2": {"type": "object", "properties": {"url": {"type": "string"}, "file-type": {"type": "string"}, "bin": {"type": "array", "items": {}}, "shortcuts": {"type": "array", "items": {"type": "object", "properties": {"shortcut-name": {"type": "string"}, "file-name": {"type": "string"}}, "required": ["shortcut-name", "file-name"]}}, "persist": {"type": "string"}}, "required": ["url", "file-type", "bin", "shortcuts", "persist"]}, "auto-update": {"type": "object", "properties": {"checkver": {"type": "string"}}, "required": ["checkver"]}}, "required": ["display-name", "package-name", "latest-version", "1.0.2.2", "auto-update"]}}, "required": ["display-name", "package-name", "is-portable", "portable"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"display-name" : "", "package-name" : "islc", "is-portable" : true, "portable" : {"display-name" : "", "package-name" : "islc", "latest-version" : "1.0.2.2", "1.0.2.2" : {"url" : "https://www.wagnardsoft.com/ISLC/ISLC%20v1.0.2.2.exe#/dl.7z", "file-type" : ".7z", "bin" : [], "shortcuts" : [{"shortcut-name" : "Intelligent Standby List Cleaner (ISLC)", "file-name" : "Intelligent standby list cleaner ISLC.exe"}], "persist" : "Intelligent standby list cleaner ISLC.exe.Config"}, "auto-update" : {"checkver" : ""}}} | json_instruct | {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "1.0.2.2": {"type": "object", "properties": {"url": {"type": "string"}, "file-type": {"type": "string"}, "bin": {"type": "array", "items": {}}, "shortcuts": {"type": "array", "items": {"type": "object", "properties": {"shortcut-name": {"type": "string"}, "file-name": {"type": "string"}}, "required": ["shortcut-name", "file-name"]}}, "persist": {"type": "string"}}, "required": ["url", "file-type", "bin", "shortcuts", "persist"]}, "auto-update": {"type": "object", "properties": {"checkver": {"type": "string"}}, "required": ["checkver"]}}, "required": ["display-name", "package-name", "latest-version", "1.0.2.2", "auto-update"]}}, "required": ["display-name", "package-name", "is-portable", "portable"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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" : ["Combine ingredients in blender and blend on high until just smooth, about 20 seconds. Divide mixture between two cocktail glasses and serve."], "ingredients" : ["2 ounces light rum", "2 ounces gold rum", "1/2 ounce fresh lemon juice", "1/2 ounce fresh lime juice", "2 ounces simple syrup", "1/4 medium-ripe avocado, peeled and pitted", "1/2 ounce half-and-half", "1 1/2 cups ice"], "language" : "en-US", "source" : "www.epicurious.com", "tags" : ["Milk/Cream", "Rum", "Alcoholic", "Citrus", "Avocado", "Drink"], "title" : "Avocado Daiquiri", "url" : "http://www.epicurious.com/recipes/food/views/avocado-daiquiri-235568"} | 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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"examine": {"type": "string"}, "bonuses": {"type": "array", "items": {"type": "integer"}}, "realPrice": {"type": "integer"}}, "required": ["examine", "bonuses", "realPrice"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"examine" : "Simplicity is the best weapon.", "bonuses" : [0, 0, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0], "realPrice" : 31591} | json_instruct | {"type": "object", "properties": {"examine": {"type": "string"}, "bonuses": {"type": "array", "items": {"type": "integer"}}, "realPrice": {"type": "integer"}}, "required": ["examine", "bonuses", "realPrice"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"oboe-browser.js": {"type": "string"}, "oboe-browser.min.js": {"type": "string"}}, "required": ["oboe-browser.js", "oboe-browser.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"oboe-browser.js" : "sha256-4D+1G0MqNu8PVx1lvo9m6LFdHUoGCjs/GfXZ7A1bl0s=", "oboe-browser.min.js" : "sha256-Tu9ujhI025uTebqT8vkcQMovrZWRIZkqa9rbrSySk7g="} | json_instruct | {"type": "object", "properties": {"oboe-browser.js": {"type": "string"}, "oboe-browser.min.js": {"type": "string"}}, "required": ["oboe-browser.js", "oboe-browser.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"$schema": {"type": "string"}, "clientOrderId": {"type": "string"}}, "required": ["$schema", "clientOrderId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "https://schemas.cexpay.io/processing/v3/order/clientdata.create-request.json", "clientOrderId" : "some_unique_client_identifier"} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "clientOrderId": {"type": "string"}}, "required": ["$schema", "clientOrderId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"mods": {"type": "array", "items": {}}, "play": {"type": "integer"}, "itemId": {"type": "string"}, "parent": {"type": "string"}, "subPlay": {"type": "integer"}, "itemName": {"type": "string"}, "playerRating": {"type": "number"}, "itemDurability": {"type": "integer"}, "itemHealthAfter": {"type": "integer"}, "itemHealthBefore": {"type": "integer"}, "playerItemRatingAfter": {"type": "integer"}, "playerItemRatingBefore": {"type": "number"}}, "required": ["mods", "play", "itemId", "parent", "subPlay", "itemName", "playerRating", "itemDurability", "itemHealthAfter", "itemHealthBefore", "playerItemRatingAfter", "playerItemRatingBefore"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d3b8e877-4db3-40df-97ce-d596d466b764", "playerTags" : ["16aff709-e855-47c8-8818-b9ba66e90fe8"], "teamTags" : ["36569151-a2fb-43c1-9df7-2df512424c82"], "gameTags" : ["03577b73-c54d-49bc-a4d5-2fa13e3cecb3"], "metadata" : {"mods" : [], "play" : 125, "itemId" : "98b33443-6949-4038-b5c1-a39cc9bfc91d", "parent" : "1ec2da94-cdbc-4d4c-9f8f-e3ca38fad6aa", "subPlay" : 0, "itemName" : "Bat", "playerRating" : 2.9910812788197028, "itemDurability" : 1, "itemHealthAfter" : 0, "itemHealthBefore" : 1, "playerItemRatingAfter" : 0, "playerItemRatingBefore" : 0.025890408097770323}, "created" : "2021-04-15T02:10:38.008Z", "season" : 15, "tournament" : -1, "type" : 185, "day" : 56, "phase" : 4, "category" : 1, "description" : "CONSUMERS ATTACK\nMULLEN PETERSON DEFENDS\n\nBAT BREAKS", "nuts" : 0} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"mods": {"type": "array", "items": {}}, "play": {"type": "integer"}, "itemId": {"type": "string"}, "parent": {"type": "string"}, "subPlay": {"type": "integer"}, "itemName": {"type": "string"}, "playerRating": {"type": "number"}, "itemDurability": {"type": "integer"}, "itemHealthAfter": {"type": "integer"}, "itemHealthBefore": {"type": "integer"}, "playerItemRatingAfter": {"type": "integer"}, "playerItemRatingBefore": {"type": "number"}}, "required": ["mods", "play", "itemId", "parent", "subPlay", "itemName", "playerRating", "itemDurability", "itemHealthAfter", "itemHealthBefore", "playerItemRatingAfter", "playerItemRatingBefore"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["atom.storage", "atom.undo", "kefir.react.html", "kefir.react.native"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"artists": {"type": "array", "items": {"type": "object", "properties": {"attribute-list": {"type": "array", "items": {"type": "string"}}, "mbid": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["attribute-list", "mbid", "name", "type"]}}, "mbid": {"type": "string"}, "tags": {"type": "object", "properties": {"form": {"type": "string"}, "makam": {"type": "string"}, "usul": {"type": "string"}}, "required": ["form", "makam", "usul"]}, "title": {"type": "string"}, "works": {"type": "array", "items": {"type": "object", "properties": {"artists": {"type": "array", "items": {"type": "object", "properties": {"mbid": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["mbid", "name", "type"]}}, "mbid": {"type": "string"}, "score": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}, "title": {"type": "string"}}, "required": ["artists", "mbid", "score", "title"]}}}, "required": ["artists", "mbid", "tags", "title", "works"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"artists" : [{"attribute-list" : ["nai"], "mbid" : "4acf1b6d-910a-4540-9a8f-aadcef86eb0c", "name" : "Niyazi Say\u0131n", "type" : "instrument"}, {"attribute-list" : ["tanbur"], "mbid" : "eb150720-40d5-4da9-8c8b-b149601c73e5", "name" : "Necdet Ya\u015far", "type" : "instrument"}], "mbid" : "1e14ece7-f5cd-4a58-aa15-b82253b1b858", "tags" : {"form" : "pe\u015frev", "makam" : "saba", "usul" : "devr-i kebir"}, "title" : "Saba Pesrev", "works" : [{"artists" : [{"mbid" : "54f879f1-8114-48b7-b892-0d5594c4783f", "name" : "Tanburi Buyuk Osman Bey", "type" : "composer"}], "mbid" : "4b6540da-6806-4521-aa86-389615d475e7", "score" : {"name" : "saba--pesrev--devrikebir----tanburi_buyuk_osman_bey", "type" : "symbTr_v2"}, "title" : "Saba Pesrev"}]} | json_instruct | {"type": "object", "properties": {"artists": {"type": "array", "items": {"type": "object", "properties": {"attribute-list": {"type": "array", "items": {"type": "string"}}, "mbid": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["attribute-list", "mbid", "name", "type"]}}, "mbid": {"type": "string"}, "tags": {"type": "object", "properties": {"form": {"type": "string"}, "makam": {"type": "string"}, "usul": {"type": "string"}}, "required": ["form", "makam", "usul"]}, "title": {"type": "string"}, "works": {"type": "array", "items": {"type": "object", "properties": {"artists": {"type": "array", "items": {"type": "object", "properties": {"mbid": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["mbid", "name", "type"]}}, "mbid": {"type": "string"}, "score": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}, "title": {"type": "string"}}, "required": ["artists", "mbid", "score", "title"]}}}, "required": ["artists", "mbid", "tags", "title", "works"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "repository", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "404-api", "description" : "A simple whatsapp direct messaging api", "repository" : "https://github.com/RDTUTORIAL/404-api", "keywords" : ["node", "express", "static", "whatsapp", "api"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "repository", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"TIMESTAMP UTC": {"type": "string"}, "CLASSIFICATION": {"type": "string"}}, "required": ["TIMESTAMP UTC", "CLASSIFICATION"]}}, "required": ["type", "geometry", "properties"]}}, "type": {"type": "string"}}, "required": ["features", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [29.221690463346622, 41.4467448211141]}, "properties" : {"TIMESTAMP UTC" : "2020-07-18T08:59:00", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [28.78555500517929, 41.01556782201257]}, "properties" : {"TIMESTAMP UTC" : "2020-07-18T08:59:00", "CLASSIFICATION" : "Flying plane"}}], "type" : "FeatureCollection"} | json_instruct | {"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"TIMESTAMP UTC": {"type": "string"}, "CLASSIFICATION": {"type": "string"}}, "required": ["TIMESTAMP UTC", "CLASSIFICATION"]}}, "required": ["type", "geometry", "properties"]}}, "type": {"type": "string"}}, "required": ["features", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0xce2b6caeea06c71365060b5df81910858432fb8062d756ea0d171067279d5891", "parentHash" : "0x373d798cb5710f4b1ce3d15044ff2444d6e1ba90a9db7897eb1eaa409a277b37", "number" : 103479, "timestamp" : 1439854069, "nonce" : "0x23d98dace7ee16f1", "difficulty" : 4170526444955, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x7e438f91d967E175a700EfBD9A471f4724449dcd", "extraData" : "0x", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "displayName", "version", "unity", "description", "keywords", "category", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "com.utj.uguilayoutdetector", "displayName" : "UGUILayoutDetector", "version" : "0.1.0", "unity" : "2018.4", "description" : "Detect UILayout bottle neck ", "keywords" : ["Profiler", "UGUI"], "category" : "profiler", "dependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "displayName", "version", "unity", "description", "keywords", "category", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"cpuInfo": {"type": "string"}, "lang": {"type": "string"}, "os": {"type": "string"}, "compiler": {"type": "string"}, "compilerVersion": {"type": "string"}, "test": {"type": "string"}, "code": {"type": "string"}, "input": {"type": "string"}, "timeMS": {"type": "number"}, "timeStdDevMS": {"type": "number"}, "memBytes": {"type": "integer"}, "cpuTimeMS": {"type": "number"}, "cpuTimeUserMS": {"type": "number"}, "cpuTimeKernelMS": {"type": "number"}, "githubRunId": {"type": "string"}, "buildLog": {"type": "object", "properties": {"compilerVersion": {"type": "string"}, "start": {"type": "string"}, "finished": {"type": "string"}, "durationMs": {"type": "integer"}}, "required": ["compilerVersion", "start", "finished", "durationMs"]}, "testLog": {"type": "object", "properties": {"runtimeVersion": {"type": "null"}, "start": {"type": "string"}, "finished": {"type": "string"}, "durationMs": {"type": "integer"}}, "required": ["runtimeVersion", "start", "finished", "durationMs"]}}, "required": ["cpuInfo", "lang", "os", "compiler", "compilerVersion", "test", "code", "input", "timeMS", "timeStdDevMS", "memBytes", "cpuTimeMS", "cpuTimeUserMS", "cpuTimeKernelMS", "githubRunId", "buildLog", "testLog"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cpuInfo" : "[x86_64][2 cores] Intel(R) Xeon(R) Platinum 8272CL CPU @ 2.60GHz", "lang" : "swift", "os" : "linux", "compiler" : "swift", "compilerVersion" : "latest", "test" : "fasta", "code" : "3.swift", "input" : "250000", "timeMS" : 78.4402, "timeStdDevMS" : 8.389399358913202, "memBytes" : 15044608, "cpuTimeMS" : 59.9999, "cpuTimeUserMS" : 56.6666, "cpuTimeKernelMS" : 3.3333, "githubRunId" : "1531343699", "buildLog" : {"compilerVersion" : "Swift version 5.5.1 (swift-5.5.1-RELEASE)\nTarget: x86_64-unknown-linux-gnu", "start" : "2021-12-02T16:10:22.7864351+00:00", "finished" : "2021-12-02T16:10:38.429812+00:00", "durationMs" : 15643}, "testLog" : {"runtimeVersion" : null, "start" : "2021-12-02T16:39:19.2673943+00:00", "finished" : "2021-12-02T16:39:19.2907943+00:00", "durationMs" : 23}} | json_instruct | {"type": "object", "properties": {"cpuInfo": {"type": "string"}, "lang": {"type": "string"}, "os": {"type": "string"}, "compiler": {"type": "string"}, "compilerVersion": {"type": "string"}, "test": {"type": "string"}, "code": {"type": "string"}, "input": {"type": "string"}, "timeMS": {"type": "number"}, "timeStdDevMS": {"type": "number"}, "memBytes": {"type": "integer"}, "cpuTimeMS": {"type": "number"}, "cpuTimeUserMS": {"type": "number"}, "cpuTimeKernelMS": {"type": "number"}, "githubRunId": {"type": "string"}, "buildLog": {"type": "object", "properties": {"compilerVersion": {"type": "string"}, "start": {"type": "string"}, "finished": {"type": "string"}, "durationMs": {"type": "integer"}}, "required": ["compilerVersion", "start", "finished", "durationMs"]}, "testLog": {"type": "object", "properties": {"runtimeVersion": {"type": "null"}, "start": {"type": "string"}, "finished": {"type": "string"}, "durationMs": {"type": "integer"}}, "required": ["runtimeVersion", "start", "finished", "durationMs"]}}, "required": ["cpuInfo", "lang", "os", "compiler", "compilerVersion", "test", "code", "input", "timeMS", "timeStdDevMS", "memBytes", "cpuTimeMS", "cpuTimeUserMS", "cpuTimeKernelMS", "githubRunId", "buildLog", "testLog"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"epoch": {"type": "integer"}, "loss_trn": {"type": "number"}, "loss_val": {"type": "number"}, "acc_val": {"type": "number"}, "lwlrap_val": {"type": "number"}, "_step": {"type": "integer"}, "_runtime": {"type": "integer"}, "_timestamp": {"type": "integer"}}, "required": ["epoch", "loss_trn", "loss_val", "acc_val", "lwlrap_val", "_step", "_runtime", "_timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"epoch" : 35, "loss_trn" : 0.00659830883080245, "loss_val" : 0.06605887379297995, "acc_val" : 0.757201646090535, "lwlrap_val" : 0.8384149956703184, "_step" : 34, "_runtime" : 11954, "_timestamp" : 1613449078} | json_instruct | {"type": "object", "properties": {"epoch": {"type": "integer"}, "loss_trn": {"type": "number"}, "loss_val": {"type": "number"}, "acc_val": {"type": "number"}, "lwlrap_val": {"type": "number"}, "_step": {"type": "integer"}, "_runtime": {"type": "integer"}, "_timestamp": {"type": "integer"}}, "required": ["epoch", "loss_trn", "loss_val", "acc_val", "lwlrap_val", "_step", "_runtime", "_timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [0.5593082553987463, 0.06437179859120076, 0.4941387314975294, 0.020129185815686304, 0.5143094579654526, 0.01237875948702456, 0.5738259229948308, 0.013468632179492452, 0.6754309559310429, 0, 0.5248173030618308, 0.09721097522207482, 0.8302464438319911, 0.09066461471852795, 0.26948587875413016, 0.1293369536559588, 1, 0.17644477594152216, 0, 0.21765450257059227, 0.1285050657104527, 0.20573994529212603, 0.6312043710087498, 0.4297236683943383, 0.8186073354578378, 0.42834531046614155, 0.6793739993314852, 0.7378672213752445, 0.7556603430418802, 0.7322651424088613, 0.7570978129211584, 1, 0.7804037185642819, 0.9982075138572399] | json_instruct | {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : "Toi Derricotte", "classification" : "Free Verse", "keywords" : ["Family", "Ancestors", "Death", "Animals", "Living", "Relationships", "Nature"], "period" : "", "reference" : "http://www.poetryfoundation.org/poem/171609", "region" : "", "text" : ["I love the way the black ants use their dead.", "They carry them off like warriors on their steel", "backs. They spend hours struggling, lifting,", "dragging (it is not grisly as it would be for us,", "to carry them back to be eaten),", "so that every part will be of service. I think of", "my husband at his father\u2019s grave\u2014", "the grass had closed", "over the headstone, and the name had disappeared. He took out", "his pocket knife and cut the grass away, he swept it", "with his handkerchief to make it clear. \u201cIs this the way", "we\u2019ll be forgotten?\u201d And he bent down over the grave and wept."], "title" : "Not Forgotten", "year" : ""} | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$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"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-iconv": {"type": "string"}, "ext-mbstring": {"type": "string"}, "behat/transliterator": {"type": "string"}, "symfony/console": {"type": "string"}}, "required": ["php", "ext-iconv", "ext-mbstring", "behat/transliterator", "symfony/console"]}, "require-dev": {"type": "object", "properties": {"outsanity/phpcs": {"type": "string"}, "phpstan/phpstan": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["outsanity/phpcs", "phpstan/phpstan", "phpunit/phpunit"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}}, "required": ["sort-packages"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Outsanity\\Detox\\": {"type": "string"}}, "required": ["Outsanity\\Detox\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Outsanity\\Detox\\Tests\\": {"type": "string"}}, "required": ["Outsanity\\Detox\\Tests\\"]}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {"phpcbf": {"type": "string"}, "phpcs": {"type": "string"}, "phpstan": {"type": "string"}, "test": {"type": "string"}}, "required": ["phpcbf", "phpcs", "phpstan", "test"]}}, "required": ["name", "description", "type", "require", "require-dev", "license", "authors", "minimum-stability", "config", "autoload", "autoload-dev", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dharple/detox-php", "description" : "Library and binary for translating problematic filenames into tame ones.", "type" : "library", "require" : {"php" : ">=7.2.5", "ext-iconv" : "*", "ext-mbstring" : "*", "behat/transliterator" : "^1.3", "symfony/console" : "^5.0"}, "require-dev" : {"outsanity/phpcs" : ">=0.4.0", "phpstan/phpstan" : "^0.12.34", "phpunit/phpunit" : "^8.5"}, "license" : "BSD-2-Clause", "authors" : [{"name" : "Doug Harple", "email" : "detox.dharple@gmail.com"}], "minimum-stability" : "stable", "config" : {"sort-packages" : true}, "autoload" : {"psr-4" : {"Outsanity\\Detox\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Outsanity\\Detox\\Tests\\" : "tests/"}}, "scripts" : {"phpcbf" : "phpcbf", "phpcs" : "phpcs", "phpstan" : "phpstan analyse", "test" : "phpunit"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-iconv": {"type": "string"}, "ext-mbstring": {"type": "string"}, "behat/transliterator": {"type": "string"}, "symfony/console": {"type": "string"}}, "required": ["php", "ext-iconv", "ext-mbstring", "behat/transliterator", "symfony/console"]}, "require-dev": {"type": "object", "properties": {"outsanity/phpcs": {"type": "string"}, "phpstan/phpstan": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["outsanity/phpcs", "phpstan/phpstan", "phpunit/phpunit"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}}, "required": ["sort-packages"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Outsanity\\Detox\\": {"type": "string"}}, "required": ["Outsanity\\Detox\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Outsanity\\Detox\\Tests\\": {"type": "string"}}, "required": ["Outsanity\\Detox\\Tests\\"]}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {"phpcbf": {"type": "string"}, "phpcs": {"type": "string"}, "phpstan": {"type": "string"}, "test": {"type": "string"}}, "required": ["phpcbf", "phpcs", "phpstan", "test"]}}, "required": ["name", "description", "type", "require", "require-dev", "license", "authors", "minimum-stability", "config", "autoload", "autoload-dev", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"billing_payment_ovhaccount": {"type": "string"}}, "required": ["billing_payment_ovhaccount"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"billing_payment_ovhaccount" : "Compte pr\u00e9pay\u00e9"} | json_instruct | {"type": "object", "properties": {"billing_payment_ovhaccount": {"type": "string"}}, "required": ["billing_payment_ovhaccount"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"sk-SK": {"type": "object", "properties": {"alert_about": {"type": "string"}, "language_key": {"type": "string"}, "language_name": {"type": "string"}, "menu_about": {"type": "string"}, "menu_checksum_calculate": {"type": "string"}, "menu_checksum_compare": {"type": "string"}, "menu_checksum_verify": {"type": "string"}, "menu_clipboard": {"type": "string"}, "menu_help": {"type": "string"}, "menu_quit": {"type": "string"}, "prompt_checksum": {"type": "string"}, "prompt_shortcut": {"type": "string"}, "prompt_shortcut_one": {"type": "string"}, "prompt_shortcut_two": {"type": "string"}, "title_checksum_fail": {"type": "string"}, "title_checksum_pass": {"type": "string"}}, "required": ["alert_about", "language_key", "language_name", "menu_about", "menu_checksum_calculate", "menu_checksum_compare", "menu_checksum_verify", "menu_clipboard", "menu_help", "menu_quit", "prompt_checksum", "prompt_shortcut", "prompt_shortcut_one", "prompt_shortcut_two", "title_checksum_fail", "title_checksum_pass"]}}, "required": ["sk-SK"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sk-SK" : {"alert_about" : "Vypo\u010d\u00edta a porovn\u00e1va kontroln\u00e9 s\u00fa\u010dty skratiek. U\u017eito\u010dn\u00e9 pri overovan\u00ed platnosti skratiek stiahnut\u00fdch z webu.", "language_key" : "sk-SK", "language_name" : "Slovak", "menu_about" : "O...", "menu_checksum_calculate" : "Vypo\u010d\u00edta\u0165 kontroln\u00fd s\u00fa\u010det...", "menu_checksum_compare" : "Porovna\u0165 dve skratky...", "menu_checksum_verify" : "Overi\u0165 kontroln\u00fd s\u00fa\u010det...", "menu_clipboard" : "Kop\u00edrova\u0165 do schr\u00e1nky", "menu_help" : "pomoc...", "menu_quit" : "Ukon\u010dite", "prompt_checksum" : "Zadajte SHA-256 kontroln\u00fd s\u00fa\u010det porovna\u0165 proti odkazu:", "prompt_shortcut" : "Vyberte skratku:", "prompt_shortcut_one" : "Vyberte prv\u00fd odkaz:", "prompt_shortcut_two" : "Vyberte druh\u00fd odkaz:", "title_checksum_fail" : "Zlyha\u0165: kontroln\u00e9 s\u00fa\u010dty s\u00fa r\u00f4zne", "title_checksum_pass" : "Pass: kontroln\u00e9 s\u00fa\u010dty s\u00fa identick\u00e9"}} | json_instruct | {"type": "object", "properties": {"sk-SK": {"type": "object", "properties": {"alert_about": {"type": "string"}, "language_key": {"type": "string"}, "language_name": {"type": "string"}, "menu_about": {"type": "string"}, "menu_checksum_calculate": {"type": "string"}, "menu_checksum_compare": {"type": "string"}, "menu_checksum_verify": {"type": "string"}, "menu_clipboard": {"type": "string"}, "menu_help": {"type": "string"}, "menu_quit": {"type": "string"}, "prompt_checksum": {"type": "string"}, "prompt_shortcut": {"type": "string"}, "prompt_shortcut_one": {"type": "string"}, "prompt_shortcut_two": {"type": "string"}, "title_checksum_fail": {"type": "string"}, "title_checksum_pass": {"type": "string"}}, "required": ["alert_about", "language_key", "language_name", "menu_about", "menu_checksum_calculate", "menu_checksum_compare", "menu_checksum_verify", "menu_clipboard", "menu_help", "menu_quit", "prompt_checksum", "prompt_shortcut", "prompt_shortcut_one", "prompt_shortcut_two", "title_checksum_fail", "title_checksum_pass"]}}, "required": ["sk-SK"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"900672950": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672951": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672952": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672953": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672954": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672955": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672956": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672957": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672958": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672959": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900672950", "900672951", "900672952", "900672953", "900672954", "900672955", "900672956", "900672957", "900672958", "900672959"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900672950" : {"nama" : "TPS 01", "dapil" : [6201, 16205, 2621101]}, "900672951" : {"nama" : "TPS 02", "dapil" : [6201, 16205, 2621101]}, "900672952" : {"nama" : "TPS 03", "dapil" : [6201, 16205, 2621101]}, "900672953" : {"nama" : "TPS 04", "dapil" : [6201, 16205, 2621101]}, "900672954" : {"nama" : "TPS 05", "dapil" : [6201, 16205, 2621101]}, "900672955" : {"nama" : "TPS 06", "dapil" : [6201, 16205, 2621101]}, "900672956" : {"nama" : "TPS 07", "dapil" : [6201, 16205, 2621101]}, "900672957" : {"nama" : "TPS 08", "dapil" : [6201, 16205, 2621101]}, "900672958" : {"nama" : "TPS 09", "dapil" : [6201, 16205, 2621101]}, "900672959" : {"nama" : "TPS 10", "dapil" : [6201, 16205, 2621101]}} | json_instruct | {"type": "object", "properties": {"900672950": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672951": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672952": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672953": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672954": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672955": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672956": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672957": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672958": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900672959": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900672950", "900672951", "900672952", "900672953", "900672954", "900672955", "900672956", "900672957", "900672958", "900672959"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"notie.css": {"type": "string"}, "notie.min.css": {"type": "string"}, "notie.min.js": {"type": "string"}}, "required": ["notie.css", "notie.min.css", "notie.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"notie.css" : "sha512-EJ5mvA5Ndg0YDRM9GH4tRuxPGpF/9g+ikxTlz961ynTwrjoAje9bJ1KBOO2LYta1b9IXdZGiMfgrD6RLIRGlvg==", "notie.min.css" : "sha512-n+Ch8p78YIV60cbNuG0rnzhazL32gWd5aN7pxwJ+m/AisTZuzBTYXXiNQerjvEnUxi67T/ZENmAvAg6KVsCW+A==", "notie.min.js" : "sha512-8IWq9R92tAl/tUwxdHo+2Y5O8+Gf/7g3KAWE5G2mtl/ltHYm64pwZaEk3rXsTKKpPKxAaEQRFaNxewkNG5SoQw=="} | json_instruct | {"type": "object", "properties": {"notie.css": {"type": "string"}, "notie.min.css": {"type": "string"}, "notie.min.js": {"type": "string"}}, "required": ["notie.css", "notie.min.css", "notie.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"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" : [710.404, 179.227, 1, 733.019, 219.182, 1, 703.506, 214.862, 1, 664.473, 188.206, 1, 647.202, 155.114, 1, 758.681, 224.86, 1, 774.218, 268.958, 1, 788.301, 304.951, 1, 708.79, 312.443, 1, 717.653, 385.586, 1, 737.192, 459.955, 1, 746.541, 315.782, 1, 741.241, 384.473, 1, 770.658, 446.456, 1, 704.463, 179.161, 1, 716.166, 176.383, 1, 726.62, 193.77, 0, 729.813, 185.199, 1], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["name1@domain1.com", "name2@domain2.com"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"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"]}, "homepage": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "es2015": {"type": "string"}, "esm5": {"type": "string"}, "esm2015": {"type": "string"}, "fesm5": {"type": "string"}, "fesm2015": {"type": "string"}, "typings": {"type": "string"}, "metadata": {"type": "string"}, "sideEffects": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"tslib": {"type": "string"}}, "required": ["tslib"]}}, "required": ["name", "version", "keywords", "repository", "bugs", "homepage", "license", "main", "module", "es2015", "esm5", "esm2015", "fesm5", "fesm2015", "typings", "metadata", "sideEffects", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@rxweb/reactive-dynamic-forms", "version" : "0.0.6", "keywords" : ["angular reactive dynamic forms", "dynamic forms"], "repository" : {"type" : "git", "url" : "https://github.com/rxweb/rxweb/tree/master/packages/reactive-dynamic-forms#readme"}, "bugs" : {"url" : "https://github.com/rxweb/rxweb/issues"}, "homepage" : "https://rxweb.io", "license" : "MIT", "main" : "bundles/rxweb-reactive-dynamic-forms.umd.js", "module" : "fesm5/rxweb-reactive-dynamic-forms.js", "es2015" : "fesm2015/rxweb-reactive-dynamic-forms.js", "esm5" : "esm5/rxweb-reactive-dynamic-forms.js", "esm2015" : "esm2015/rxweb-reactive-dynamic-forms.js", "fesm5" : "fesm5/rxweb-reactive-dynamic-forms.js", "fesm2015" : "fesm2015/rxweb-reactive-dynamic-forms.js", "typings" : "rxweb-reactive-dynamic-forms.d.ts", "metadata" : "rxweb-reactive-dynamic-forms.metadata.json", "sideEffects" : false, "dependencies" : {"tslib" : "^2.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"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"]}, "homepage": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "es2015": {"type": "string"}, "esm5": {"type": "string"}, "esm2015": {"type": "string"}, "fesm5": {"type": "string"}, "fesm2015": {"type": "string"}, "typings": {"type": "string"}, "metadata": {"type": "string"}, "sideEffects": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"tslib": {"type": "string"}}, "required": ["tslib"]}}, "required": ["name", "version", "keywords", "repository", "bugs", "homepage", "license", "main", "module", "es2015", "esm5", "esm2015", "fesm5", "fesm2015", "typings", "metadata", "sideEffects", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1371.042829613316, 1457.9660327813308], [1351.983916394901, 1468.5543179026724], [1322.336718055144, 1472.7896319512092], [1301.1601478124605, 1472.7896319512092], [1267.2776354241669, 1474.9072889754775], [1233.3951230358732, 1477.0249459997458]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"yield": {"type": "null"}, "nutritionEstimates": {"type": "array", "items": {}}, "totalTime": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"hostedSmallUrl": {"type": "string"}, "hostedMediumUrl": {"type": "string"}, "hostedLargeUrl": {"type": "string"}, "imageUrlsBySize": {"type": "object", "properties": {"90": {"type": "string"}, "360": {"type": "string"}}, "required": ["90", "360"]}}, "required": ["hostedSmallUrl", "hostedMediumUrl", "hostedLargeUrl", "imageUrlsBySize"]}}, "name": {"type": "string"}, "source": {"type": "object", "properties": {"sourceDisplayName": {"type": "string"}, "sourceSiteUrl": {"type": "string"}, "sourceRecipeUrl": {"type": "string"}}, "required": ["sourceDisplayName", "sourceSiteUrl", "sourceRecipeUrl"]}, "id": {"type": "string"}, "ingredientLines": {"type": "array", "items": {"type": "string"}}, "attribution": {"type": "object", "properties": {"html": {"type": "string"}, "url": {"type": "string"}, "text": {"type": "string"}, "logo": {"type": "string"}}, "required": ["html", "url", "text", "logo"]}, "numberOfServings": {"type": "integer"}, "totalTimeInSeconds": {"type": "integer"}, "attributes": {"type": "object", "properties": {"course": {"type": "array", "items": {"type": "string"}}, "cuisine": {"type": "array", "items": {"type": "string"}}}, "required": ["course", "cuisine"]}, "flavors": {"type": "object", "properties": {}, "required": []}, "rating": {"type": "integer"}}, "required": ["yield", "nutritionEstimates", "totalTime", "images", "name", "source", "id", "ingredientLines", "attribution", "numberOfServings", "totalTimeInSeconds", "attributes", "flavors", "rating"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"yield" : null, "nutritionEstimates" : [], "totalTime" : "1 hr 15 min", "images" : [{"hostedSmallUrl" : "https://lh3.googleusercontent.com/Fesb6M3_imVJn4OfswpngBqxUDqhg-SiPmw_99DoTPlXCr9u7JN4IAp4egw_9SgaomiU-jxkfr8cbWylnktoAKo=s90", "hostedMediumUrl" : "https://lh3.googleusercontent.com/Fesb6M3_imVJn4OfswpngBqxUDqhg-SiPmw_99DoTPlXCr9u7JN4IAp4egw_9SgaomiU-jxkfr8cbWylnktoAKo=s180", "hostedLargeUrl" : "https://lh3.googleusercontent.com/Fesb6M3_imVJn4OfswpngBqxUDqhg-SiPmw_99DoTPlXCr9u7JN4IAp4egw_9SgaomiU-jxkfr8cbWylnktoAKo=s360", "imageUrlsBySize" : {"90" : "https://lh3.googleusercontent.com/dpx8QV6xUYsU6wrMecU4tCj-RvO9ckhdkgchnXBPQ-9FNbQNfVZ2HfykaTVDBxMAGGBpk3Fg9IReG2RqvTXE=s90-c", "360" : "https://lh3.googleusercontent.com/dpx8QV6xUYsU6wrMecU4tCj-RvO9ckhdkgchnXBPQ-9FNbQNfVZ2HfykaTVDBxMAGGBpk3Fg9IReG2RqvTXE=s360-c"}}], "name" : "Tender Chinese Braised Pork Belly", "source" : {"sourceDisplayName" : "Yummy", "sourceSiteUrl" : "yummy.ph", "sourceRecipeUrl" : "http://www.yummy.ph/recipe/tender-chinese-braised-pork-belly-recipe"}, "id" : "Tender-Chinese-Braised-Pork-Belly-1863829", "ingredientLines" : ["1/2 kilo whole pork belly,, sliced into 2-inch-thick pieces", "3 tablespoons vegetable oil", "1/4 cup japanese soy sauce", "1/4 cup dark soy sauce", "1/2 cup chinese rice cooking wine", "1/3 cup brown sugar", "1 piece (1inch) ginger,, peeled and grated"], "attribution" : {"html" : "<a href='http://www.yummly.co/recipe/Tender-Chinese-Braised-Pork-Belly-1863829'>Tender Chinese Braised Pork Belly recipe</a> information powered by <img alt='Yummly' src='https://static.yummly.co/api-logo.png'/>", "url" : "http://www.yummly.co/recipe/Tender-Chinese-Braised-Pork-Belly-1863829", "text" : "Tender Chinese Braised Pork Belly recipes: information powered by Yummly", "logo" : "https://static.yummly.co/api-logo.png"}, "numberOfServings" : 4, "totalTimeInSeconds" : 4500, "attributes" : {"course" : ["Main Dishes"], "cuisine" : ["Chinese"]}, "flavors" : {}, "rating" : 3} | json_instruct | {"type": "object", "properties": {"yield": {"type": "null"}, "nutritionEstimates": {"type": "array", "items": {}}, "totalTime": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"hostedSmallUrl": {"type": "string"}, "hostedMediumUrl": {"type": "string"}, "hostedLargeUrl": {"type": "string"}, "imageUrlsBySize": {"type": "object", "properties": {"90": {"type": "string"}, "360": {"type": "string"}}, "required": ["90", "360"]}}, "required": ["hostedSmallUrl", "hostedMediumUrl", "hostedLargeUrl", "imageUrlsBySize"]}}, "name": {"type": "string"}, "source": {"type": "object", "properties": {"sourceDisplayName": {"type": "string"}, "sourceSiteUrl": {"type": "string"}, "sourceRecipeUrl": {"type": "string"}}, "required": ["sourceDisplayName", "sourceSiteUrl", "sourceRecipeUrl"]}, "id": {"type": "string"}, "ingredientLines": {"type": "array", "items": {"type": "string"}}, "attribution": {"type": "object", "properties": {"html": {"type": "string"}, "url": {"type": "string"}, "text": {"type": "string"}, "logo": {"type": "string"}}, "required": ["html", "url", "text", "logo"]}, "numberOfServings": {"type": "integer"}, "totalTimeInSeconds": {"type": "integer"}, "attributes": {"type": "object", "properties": {"course": {"type": "array", "items": {"type": "string"}}, "cuisine": {"type": "array", "items": {"type": "string"}}}, "required": ["course", "cuisine"]}, "flavors": {"type": "object", "properties": {}, "required": []}, "rating": {"type": "integer"}}, "required": ["yield", "nutritionEstimates", "totalTime", "images", "name", "source", "id", "ingredientLines", "attribution", "numberOfServings", "totalTimeInSeconds", "attributes", "flavors", "rating"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {}, "required": []}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{}, {"max_columns" : 15}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {}, "required": []}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"coffee-script": {"type": "string"}}, "required": ["coffee-script"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "hubot-dploy.io", "version" : "0.5.1", "description" : "A module to integrate hubot with dploy.io", "main" : "index.coffee", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git@github.com:fusionspim/hubot-dploy.io.git"}, "keywords" : ["hubot", "dploy.io"], "author" : "Gabriel Baker <me@g403.co> (http://g403.co/)", "license" : "MIT", "bugs" : {"url" : "https://github.com/fusionspim/hubot-dploy.io/issues"}, "homepage" : "https://github.com/fusionspim/hubot-dploy.io", "devDependencies" : {"coffee-script" : "^1.9.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"coffee-script": {"type": "string"}}, "required": ["coffee-script"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["ipfs-msgproto-integrity", "msgproto-chat-example", "stream-corrupt"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "date": {"type": "string"}, "distribution": {"type": "string"}, "prefix": {"type": "string"}, "sub_sets": {"type": "array", "items": {}}, "load": {"type": "boolean"}, "cards": {"type": "array", "items": {"type": "object", "properties": {"card_name": {"type": "string"}, "set_number": {"type": "string"}, "rarities": {"type": "array", "items": {"type": "string"}}, "count": {"type": "object", "properties": {"Ultra Rare": {"type": "integer"}}, "required": ["Ultra Rare"]}}, "required": ["card_name", "set_number", "rarities", "count"]}}}, "required": ["name", "type", "date", "distribution", "prefix", "sub_sets", "load", "cards"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Starter Deck 2006: Special Edition", "type" : "Special Edition Promo Cards", "date" : "2006-03-21", "distribution" : "special_edition_promo_cards", "prefix" : "YSD", "sub_sets" : [], "load" : false, "cards" : [{"card_name" : "Elemental HERO Sparkman", "set_number" : "YSD-ENS01", "rarities" : ["Ultra Rare"], "count" : {"Ultra Rare" : 1}}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "date": {"type": "string"}, "distribution": {"type": "string"}, "prefix": {"type": "string"}, "sub_sets": {"type": "array", "items": {}}, "load": {"type": "boolean"}, "cards": {"type": "array", "items": {"type": "object", "properties": {"card_name": {"type": "string"}, "set_number": {"type": "string"}, "rarities": {"type": "array", "items": {"type": "string"}}, "count": {"type": "object", "properties": {"Ultra Rare": {"type": "integer"}}, "required": ["Ultra Rare"]}}, "required": ["card_name", "set_number", "rarities", "count"]}}}, "required": ["name", "type", "date", "distribution", "prefix", "sub_sets", "load", "cards"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"nom": {"type": "array", "items": {"type": "string"}}, "abrege": {"type": "array", "items": {"type": "string"}}, "thematique": {"type": "array", "items": {"type": "string"}}, "diags": {"type": "array", "items": {"type": "string"}}, "positions_diags": {"type": "array", "items": {"type": "string"}}, "date_saisie": {"type": "array", "items": {"type": "string"}}, "commentaire": {"type": "array", "items": {"type": "string"}}, "auteur": {"type": "array", "items": {"type": "string"}}, "timestamp": {"type": "array", "items": {"type": "integer"}}}, "required": ["nom", "abrege", "thematique", "diags", "positions_diags", "date_saisie", "commentaire", "auteur", "timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : ["GLANDES ENDOCRINES : Autre (glandes endocrines)"], "abrege" : ["CANCERO_EXH_APP_ORG_13"], "thematique" : ["Canc\u00e9rologie M\u00e9thode Exhaustive"], "diags" : ["C750", "C751", "C752", "C753", "C754", "C755", "C758", "C759", "D093", "D442", "D443", "D444", "D4440", "D4448", "D445", "D446", "D447", "D448", "D449"], "positions_diags" : ["toutes"], "date_saisie" : ["2017-06-18T22:00:00Z"], "commentaire" : ["la m\u00e9thode exhaustive ne se r\u00e9sume pas \u00e0 la liste de diagnostics"], "auteur" : ["DIM si\u00e8ge AP-HP"], "timestamp" : [1497823200]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "array", "items": {"type": "string"}}, "abrege": {"type": "array", "items": {"type": "string"}}, "thematique": {"type": "array", "items": {"type": "string"}}, "diags": {"type": "array", "items": {"type": "string"}}, "positions_diags": {"type": "array", "items": {"type": "string"}}, "date_saisie": {"type": "array", "items": {"type": "string"}}, "commentaire": {"type": "array", "items": {"type": "string"}}, "auteur": {"type": "array", "items": {"type": "string"}}, "timestamp": {"type": "array", "items": {"type": "integer"}}}, "required": ["nom", "abrege", "thematique", "diags", "positions_diags", "date_saisie", "commentaire", "auteur", "timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"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" : "0x7018da236041ec81058a4face0945852dd11c758", "tool" : "osiris", "start" : 1564610090.4013183, "end" : 1564610152.3221083, "duration" : 61.92078995704651, "analysis" : [{"errors" : [], "file" : "/unique_chucks/20/0x7018da236041ec81058a4face0945852dd11c758.sol", "name" : "GarudaToken"}, {"errors" : [], "file" : "/unique_chucks/20/0x7018da236041ec81058a4face0945852dd11c758.sol", "name" : "SafeMath"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 32013, "cartId" : "870f4bdf-03dc-4f30-8726-2d84a887e690", "preferredProducts" : [1201, 802, 3261, 225, 563, 87, 3586, 4022, 1611], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}, "repository": {"type": "string"}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"compile": {"type": "string"}, "start": {"type": "string"}, "format": {"type": "string"}}, "required": ["compile", "start", "format"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"ascii-table": {"type": "string"}}, "required": ["ascii-table"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/express", "prettier", "ts-node", "typescript"]}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "repository", "homepage", "scripts", "author", "license", "dependencies", "devDependencies", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "express-routes-catalogue", "version" : "1.1.0", "description" : "This package list out all the routes in the express.js application ", "main" : "./dist/index.js", "repository" : "vijay4495/express-routes-catalogue", "homepage" : "https://github.com/vijay4495/express-routes-catalogue", "scripts" : {"compile" : "tsc", "start" : "node dist/index.js", "format" : "prettier --write \"src/**/*.ts\""}, "author" : "Vijay", "license" : "MIT", "dependencies" : {"ascii-table" : "0.0.9"}, "devDependencies" : {"@types/express" : "^4.17.0", "prettier" : "^1.18.2", "ts-node" : "^8.3.0", "typescript" : "^3.5.2"}, "keywords" : ["express", "routes", "express-routes-list", "logs", "paths", "routes-paths", "end-points", "api", "end-point", "list"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"compile": {"type": "string"}, "start": {"type": "string"}, "format": {"type": "string"}}, "required": ["compile", "start", "format"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"ascii-table": {"type": "string"}}, "required": ["ascii-table"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/express", "prettier", "ts-node", "typescript"]}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "repository", "homepage", "scripts", "author", "license", "dependencies", "devDependencies", "keywords"], "$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"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "permissions": {"type": "array", "items": {"type": "string"}}, "options_ui": {"type": "object", "properties": {"page": {"type": "string"}, "chrome_style": {"type": "boolean"}}, "required": ["page", "chrome_style"]}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_title": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_title", "default_popup"]}, "commands": {"type": "object", "properties": {"dash-search": {"type": "object", "properties": {"suggested_key": {"type": "object", "properties": {"default": {"type": "string"}, "mac": {"type": "string"}}, "required": ["default", "mac"]}, "description": {"type": "string"}}, "required": ["suggested_key", "description"]}}, "required": ["dash-search"]}}, "required": ["name", "description", "version", "manifest_version", "permissions", "options_ui", "background", "content_scripts", "browser_action", "commands"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "chromedash", "description" : "This extension performs a search of the highlighted text in the browser within the dash application", "version" : "1.0", "manifest_version" : 2, "permissions" : ["<all_urls>", "tabs", "activeTab", "storage"], "options_ui" : {"page" : "options.html", "chrome_style" : true}, "background" : {"scripts" : ["background.js"]}, "content_scripts" : [{"matches" : ["<all_urls>"], "js" : ["content_script.js"]}], "browser_action" : {"default_icon" : "tile.png", "default_title" : "Set Languages", "default_popup" : "options.html"}, "commands" : {"dash-search" : {"suggested_key" : {"default" : "Ctrl+Shift+D", "mac" : "Command+Shift+A"}, "description" : "Initiate Dash Search"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "permissions": {"type": "array", "items": {"type": "string"}}, "options_ui": {"type": "object", "properties": {"page": {"type": "string"}, "chrome_style": {"type": "boolean"}}, "required": ["page", "chrome_style"]}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_title": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_title", "default_popup"]}, "commands": {"type": "object", "properties": {"dash-search": {"type": "object", "properties": {"suggested_key": {"type": "object", "properties": {"default": {"type": "string"}, "mac": {"type": "string"}}, "required": ["default", "mac"]}, "description": {"type": "string"}}, "required": ["suggested_key", "description"]}}, "required": ["dash-search"]}}, "required": ["name", "description", "version", "manifest_version", "permissions", "options_ui", "background", "content_scripts", "browser_action", "commands"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "MELISSA", "frequency" : 12039, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationId" : 9934107, "stationGroupId" : 9934107, "name" : "\u4e0a\u4e09\u4f9d\u5869\u539f\u6e29\u6cc9\u53e3", "lineId" : 99341, "zipCode" : "321-2802", "pref" : "\u6803\u6728\u770c", "city" : "\u65e5\u5149\u5e02", "town" : "\u4e0a\u4e09\u4f9d", "longitude" : 139.727168, "latitude" : 37.014461, "status" : 0} | json_instruct | {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "20", "provinceId" : "35", "regencyId" : "11", "name" : "Binakal"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "item_condition": {"type": "object", "properties": {"type": {"type": "string"}, "conditions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}}, "required": ["type", "conditions"]}, "hidden": {"type": "boolean"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "item_condition", "hidden", "name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "origins:prevent_item_use", "item_condition" : {"type" : "origins:and", "conditions" : [{"type" : "origins:food"}]}, "hidden" : false, "name" : "Not Hungry", "description" : "You cant Eat Any Food."} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "item_condition": {"type": "object", "properties": {"type": {"type": "string"}, "conditions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}}, "required": ["type", "conditions"]}, "hidden": {"type": "boolean"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "item_condition", "hidden", "name", "description"], "$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.