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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"generate": {"type": "string"}, "test:acceptandtransfer": {"type": "string"}, "test:kickout": {"type": "string"}, "test:leave": {"type": "string"}, "test:recursive": {"type": "string"}}, "required": ["generate", "test:acceptandtransfer", "test:kickout", "test:leave", "test:recursive"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@fabcotech/dappy-cli": {"type": "string"}, "@fabcotech/rchain-toolkit": {"type": "string"}, "dotenv": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/plugin-proposal-class-properties": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "babel-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@fabcotech/dappy-cli", "@fabcotech/rchain-toolkit", "dotenv", "@babel/core", "@babel/plugin-proposal-class-properties", "@babel/preset-env", "@babel/preset-react", "babel-loader", "webpack", "webpack-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "rchain-multisig", "version" : "0.1.2", "description" : "Multisig wallet on RChain", "main" : "src/index.js", "scripts" : {"generate" : "node generateJavascripts", "test:acceptandtransfer" : "node test/multisigAcceptAndTransfer.js", "test:kickout" : "node test/multisigKickout.js", "test:leave" : "node test/multisigLeave.js", "test:recursive" : "node test/multisigRecursive.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/fabcotech/rchain-multisig.git"}, "author" : "FABCO", "license" : "MIT", "bugs" : {"url" : "https://github.com/fabcotech/rchain-multisig/issues"}, "homepage" : "https://github.com/fabcotech/rchain-multisig#readme", "dependencies" : {"@fabcotech/dappy-cli" : "17.1.0", "@fabcotech/rchain-toolkit" : "3.0.0", "dotenv" : "6.2.0", "@babel/core" : "^7.2.2", "@babel/plugin-proposal-class-properties" : "^7.8.3", "@babel/preset-env" : "^7.3.1", "@babel/preset-react" : "^7.0.0", "babel-loader" : "^8.0.5", "webpack" : "^5.57.1", "webpack-cli" : "^4.8.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"generate": {"type": "string"}, "test:acceptandtransfer": {"type": "string"}, "test:kickout": {"type": "string"}, "test:leave": {"type": "string"}, "test:recursive": {"type": "string"}}, "required": ["generate", "test:acceptandtransfer", "test:kickout", "test:leave", "test:recursive"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@fabcotech/dappy-cli": {"type": "string"}, "@fabcotech/rchain-toolkit": {"type": "string"}, "dotenv": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/plugin-proposal-class-properties": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "babel-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@fabcotech/dappy-cli", "@fabcotech/rchain-toolkit", "dotenv", "@babel/core", "@babel/plugin-proposal-class-properties", "@babel/preset-env", "@babel/preset-react", "babel-loader", "webpack", "webpack-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "request": {"type": "object", "properties": {"url": {"type": "string"}, "method": {"type": "string"}}, "required": ["url", "method"]}, "response": {"type": "object", "properties": {"status": {"type": "integer"}, "body": {"type": "string"}, "headers": {"type": "object", "properties": {"Cache-Control": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "Ratelimit-Multiplier": {"type": "string"}, "Ratelimit-Remaining": {"type": "string"}, "Request-Id": {"type": "string"}, "Vary": {"type": "string"}, "Via": {"type": "string"}, "X-Content-Type-Options": {"type": "string"}, "X-Runtime": {"type": "string"}}, "required": ["Cache-Control", "Content-Type", "Date", "Ratelimit-Multiplier", "Ratelimit-Remaining", "Request-Id", "Vary", "Via", "X-Content-Type-Options", "X-Runtime"]}}, "required": ["status", "body", "headers"]}, "uuid": {"type": "string"}, "persistent": {"type": "boolean"}, "scenarioName": {"type": "string"}, "requiredScenarioState": {"type": "string"}, "newScenarioState": {"type": "string"}, "insertionIndex": {"type": "integer"}}, "required": ["id", "name", "request", "response", "uuid", "persistent", "scenarioName", "requiredScenarioState", "newScenarioState", "insertionIndex"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "8562737b-be92-489a-bd49-5223ca001856", "name" : "apps_functional-test-app", "request" : {"url" : "/apps/functional-test-app", "method" : "GET"}, "response" : {"status" : 404, "body" : "{\"resource\":\"app\",\"id\":\"not_found\",\"message\":\"Couldn't find that app.\"}", "headers" : {"Cache-Control" : "private, no-cache", "Content-Type" : "application/json", "Date" : "Sat, 31 Mar 2018 13:43:01 GMT", "Ratelimit-Multiplier" : "1", "Ratelimit-Remaining" : "4499", "Request-Id" : "4676742f-6f3b-42fb-b649-df758f2621fc,22ae5a26-7a18-8546-3f3a-25e543098366,8de74575-8133-064d-c197-3ab6c20b43e4", "Vary" : "Accept-Encoding", "Via" : "1.1 spaces-router (ed5ea9c8fd88), 1.1 spaces-router (ed5ea9c8fd88)", "X-Content-Type-Options" : "nosniff", "X-Runtime" : "0.045745621"}}, "uuid" : "8562737b-be92-489a-bd49-5223ca001856", "persistent" : true, "scenarioName" : "scenario-apps-functional-test-app", "requiredScenarioState" : "Started", "newScenarioState" : "scenario-apps-functional-test-app-2", "insertionIndex" : 1}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "request": {"type": "object", "properties": {"url": {"type": "string"}, "method": {"type": "string"}}, "required": ["url", "method"]}, "response": {"type": "object", "properties": {"status": {"type": "integer"}, "body": {"type": "string"}, "headers": {"type": "object", "properties": {"Cache-Control": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "Ratelimit-Multiplier": {"type": "string"}, "Ratelimit-Remaining": {"type": "string"}, "Request-Id": {"type": "string"}, "Vary": {"type": "string"}, "Via": {"type": "string"}, "X-Content-Type-Options": {"type": "string"}, "X-Runtime": {"type": "string"}}, "required": ["Cache-Control", "Content-Type", "Date", "Ratelimit-Multiplier", "Ratelimit-Remaining", "Request-Id", "Vary", "Via", "X-Content-Type-Options", "X-Runtime"]}}, "required": ["status", "body", "headers"]}, "uuid": {"type": "string"}, "persistent": {"type": "boolean"}, "scenarioName": {"type": "string"}, "requiredScenarioState": {"type": "string"}, "newScenarioState": {"type": "string"}, "insertionIndex": {"type": "integer"}}, "required": ["id", "name", "request", "response", "uuid", "persistent", "scenarioName", "requiredScenarioState", "newScenarioState", "insertionIndex"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "render_readme": {"type": "boolean"}}, "required": ["name", "render_readme"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Entities Button Group", "render_readme" : true}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "render_readme": {"type": "boolean"}}, "required": ["name", "render_readme"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"buildpacks": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "environments": {"type": "object", "properties": {"test": {"type": "object", "properties": {"addons": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test-setup": {"type": "string"}, "test": {"type": "string"}}, "required": ["test-setup", "test"]}}, "required": ["addons", "scripts"]}}, "required": ["test"]}}, "required": ["buildpacks", "environments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"buildpacks" : [{"url" : "heroku/python"}], "environments" : {"test" : {"addons" : ["heroku-postgresql:in-dyno"], "scripts" : {"test-setup" : "cd tests && ln -s ../sampleapp sampleapp && cd ../ && make db-upgrade", "test" : "make tests"}}}}
json_instruct
{"type": "object", "properties": {"buildpacks": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "environments": {"type": "object", "properties": {"test": {"type": "object", "properties": {"addons": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test-setup": {"type": "string"}, "test": {"type": "string"}}, "required": ["test-setup", "test"]}}, "required": ["addons", "scripts"]}}, "required": ["test"]}}, "required": ["buildpacks", "environments"], "$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"}, "type": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "n98/magerun": {"type": "string"}}, "required": ["phpunit/phpunit", "n98/magerun"]}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "extra": {"type": "object", "properties": {"magento-root-dir": {"type": "string"}}, "required": ["magento-root-dir"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}}, "required": ["name", "type", "license", "homepage", "description", "minimum-stability", "require", "repositories", "extra", "authors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "webdawe/webdawe-analytics-magento-module", "type" : "magento-module", "license" : "BSD3", "homepage" : "https://github.com/webdawe/webdawe-analytics-magento-module", "description" : "Magento 1 Module for parse analytics tracking scripts with order attributes.", "minimum-stability" : "dev", "require" : {"phpunit/phpunit" : "3.7.9", "n98/magerun" : "*"}, "repositories" : [{"type" : "composer", "url" : "http://packages.firegento.com"}], "extra" : {"magento-root-dir" : "./"}, "authors" : [{"name" : "Anil Paul", "email" : "webdeveloper363@gmail.com"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "n98/magerun": {"type": "string"}}, "required": ["phpunit/phpunit", "n98/magerun"]}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "extra": {"type": "object", "properties": {"magento-root-dir": {"type": "string"}}, "required": ["magento-root-dir"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}}, "required": ["name", "type", "license", "homepage", "description", "minimum-stability", "require", "repositories", "extra", "authors"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"require": {"type": "object", "properties": {"hlavacm/wp-tracy": {"type": "string"}}, "required": ["hlavacm/wp-tracy"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"require" : {"hlavacm/wp-tracy" : "^2.0"}}
json_instruct
{"type": "object", "properties": {"require": {"type": "object", "properties": {"hlavacm/wp-tracy": {"type": "string"}}, "required": ["hlavacm/wp-tracy"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "440307013002", "text" : "\u5c97\u5934\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "440307013007", "text" : "\u9a6c\u5b89\u5802\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "440307013008", "text" : "\u4e94\u548c\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "440307013011", "text" : "\u56db\u5b63\u82b1\u57ce\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "440307013012", "text" : "\u7b2c\u4e94\u56ed\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "440307013013", "text" : "\u5742\u7530\u793e\u533a\u5742\u7530\u56f4\u5c45\u59d4\u4f1a"}, {"id" : "440307013014", "text" : "\u4e07\u79d1\u57ce\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "440307013015", "text" : "\u6768\u7f8e\u793e\u533a\u6768\u7f8e\u5c45\u59d4\u4f1a"}, {"id" : "440307013016", "text" : "\u6768\u7f8e\u793e\u533a\u5609\u4e3d\u56ed\u5c45\u59d4\u4f1a"}, {"id" : "440307013017", "text" : "\u6768\u7f8e\u793e\u533a\u5742\u7530\u5e7f\u573a\u5c45\u59d4\u4f1a"}, {"id" : "440307013018", "text" : "\u5927\u53d1\u57d4\u793e\u533a\u5927\u53d1\u57d4\u5c45\u59d4\u4f1a"}, {"id" : "440307013019", "text" : "\u5927\u53d1\u57d4\u793e\u533a\u91cc\u77f3\u6392\u5c45\u59d4\u4f1a"}, {"id" : "440307013020", "text" : "\u5357\u5751\u793e\u533a\u5357\u5751\u5c45\u59d4\u4f1a"}, {"id" : "440307013021", "text" : "\u5357\u5751\u793e\u533a\u661f\u5149\u5c45\u59d4\u4f1a"}, {"id" : "440307013022", "text" : "\u8c61\u89d2\u5858\u793e\u533a"}, {"id" : "440307013023", "text" : "\u65b0\u96ea\u793e\u533a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"localities" : ["Marienville, PA"], "state" : "PA", "postal_code" : "16239", "locality" : "Marienville, PA", "lat" : 41.496972, "region" : {"fips" : "42", "abbr" : "PA", "name" : "Pennsylvania"}, "city" : "Marienville", "type" : "STANDARD", "lng" : -79.137779, "counties" : [{"fips" : "031", "name" : "Clarion County"}, {"fips" : "053", "name" : "Forest County"}]}
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id_2623": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_2623"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_2623" : {"title" : "Under the Greenwood Tree", "language" : "English", "totaltime" : "6:44:53", "url_librivox" : "http://librivox.org/under-the-greenwood-tree-by-thomas-hardy/", "url_iarchive" : "http://archive.org/details/under_greenwood_tree_rl_librivox", "readers" : ["2487"], "authors" : "92", "genres" : "Romance"}}
json_instruct
{"type": "object", "properties": {"id_2623": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_2623"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"liveId": {"type": "string"}, "title": {"type": "string"}, "subTitle": {"type": "string"}, "picPath": {"type": "string"}, "startTime": {"type": "integer"}, "memberId": {"type": "integer"}, "liveType": {"type": "integer"}, "picLoopTime": {"type": "integer"}, "lrcPath": {"type": "string"}, "streamPath": {"type": "string"}, "screenMode": {"type": "integer"}, "roomId": {"type": "string"}, "bwqaVersion": {"type": "integer"}}, "required": ["liveId", "title", "subTitle", "picPath", "startTime", "memberId", "liveType", "picLoopTime", "lrcPath", "streamPath", "screenMode", "roomId", "bwqaVersion"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"liveId" : "5ac35a5a0cf29f0b41638b89", "title" : "\u6768\u946b\u7684\u76f4\u64ad\u95f4", "subTitle" : "emmmm\u2026\u6211\u6765\u5566", "picPath" : "/mediasource/live/1520674194515ny31F289b5.jpg", "startTime" : 1522752090958, "memberId" : 652650, "liveType" : 1, "picLoopTime" : 0, "lrcPath" : "/mediasource/live/lrc/5ac35a5a0cf29f0b41638b89.lrc", "streamPath" : "http://2519.liveplay.myqcloud.com/live/2519_3541983.flv", "screenMode" : 0, "roomId" : "22076881", "bwqaVersion" : 0}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"liveId": {"type": "string"}, "title": {"type": "string"}, "subTitle": {"type": "string"}, "picPath": {"type": "string"}, "startTime": {"type": "integer"}, "memberId": {"type": "integer"}, "liveType": {"type": "integer"}, "picLoopTime": {"type": "integer"}, "lrcPath": {"type": "string"}, "streamPath": {"type": "string"}, "screenMode": {"type": "integer"}, "roomId": {"type": "string"}, "bwqaVersion": {"type": "integer"}}, "required": ["liveId", "title", "subTitle", "picPath", "startTime", "memberId", "liveType", "picLoopTime", "lrcPath", "streamPath", "screenMode", "roomId", "bwqaVersion"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"average_occupancy" : [2.74021922137542, 2.8195652408059804, 2.9151373535580327, 2.8277293138838733, 2.7948021344231364, 2.7270916728518553, 2.6376838402659546, 2.706489111036978, 2.811228156718524, 2.866292035304199, 2.878560101612562, 2.7997109540011986, 2.7900275044387657, 2.8473056356909887, 2.739450479791569, 2.752360913841686, 2.745231734369105, 2.7566642082423805, 2.708516510948596, 2.7894013516921343, 2.827803285476633, 2.826544155589605, 2.8473299360949134, 2.74541082470411, 2.813017916977044, 2.7904652672890022, 2.7258181773693066, 2.636952605103298, 2.425471252527515, 2.385859472106531, 2.340505144604337, 2.238518024274654, 2.1161445555916845, 2.0067179392158683, 1.9958846080303005, 1.8995472114279703, 14.041373838843915, 2.051433859740924, 1.9929958748105956, 1.9792130984320708, 2.0585721893241185, 2.1494979820965456, 2.3722734022469303, 2.4107302724594772, 2.5088385064435137, 2.4733225650835218, 2.461797524043982, 2.5422496821244365, 2.5660603324840663, 2.6197696396367323, 2.681946026153482, 2.828104593913797, 2.8525537402695136, 2.877848160505587, 2.9014560495562898, 2.884248289299612, 2.951600884034815, 2.8277558284704134, 2.868113047352638, 2.8950071054375552, 2.889268426941622, 2.780177290661502, 2.789820872411431, 2.7368850651787158, 2.7349212014272215, 2.701355479514483, 2.7497865630480596, 2.6801266184256165, 2.597796519757891, 2.709948597932302, 2.811660349873161, 2.9056997571542973, 3.037378557622366, 2.9387198601357944, 2.8642344959102988]}
json_instruct
{"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1914, 5], [1917, 8], [1921, 6], [1923, 5], [1924, 7]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "null"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}}, "required": ["wmo"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "78360", "name" : {"en" : "Cabo Cruz, Granma"}, "country" : "CU", "region" : null, "identifiers" : {"wmo" : "78360"}, "location" : {"latitude" : 19.85, "longitude" : -77.2333, "elevation" : 10}, "timezone" : "America/Havana"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "null"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}}, "required": ["wmo"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "string"}, "content": {"type": "string"}, "imageType": {"type": "string"}, "date": {"type": "string"}, "dateText": {"type": "string"}, "timestamp": {"type": "string"}, "instagramUsername": {"type": "string"}, "featuredMedia": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "sizes": {"type": "object", "properties": {"medium": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "full": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "__typename": {"type": "string"}}, "required": ["medium", "full", "__typename"]}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "sizes", "__typename"]}, "__typename": {"type": "string"}}, "required": ["id", "title", "primoId", "slug", "shortcode", "imageUrl", "content", "imageType", "date", "dateText", "timestamp", "instagramUsername", "featuredMedia", "__typename"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : {"id" : 22889, "title" : "Mr Jenkins", "primoId" : "ADLIB110041833", "slug" : "adlib110041833", "shortcode" : "", "imageUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525068718710.jpg", "content" : "interiors, portraits, Adult Males", "imageType" : "portrait", "date" : "2018-04-30 06:11:57", "dateText" : "1870-1875", "timestamp" : "", "instagramUsername" : "", "featuredMedia" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525068718710.jpg", "sizes" : {"medium" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525068718710-222x300.jpg", "width" : 222, "height" : 300, "__typename" : "MediaSize"}, "full" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525068718710.jpg", "width" : 778, "height" : 1050, "__typename" : "MediaSize"}, "__typename" : "MediaSizes"}, "__typename" : "Media"}, "__typename" : "NewSelfWalesPortrait"}}
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "string"}, "content": {"type": "string"}, "imageType": {"type": "string"}, "date": {"type": "string"}, "dateText": {"type": "string"}, "timestamp": {"type": "string"}, "instagramUsername": {"type": "string"}, "featuredMedia": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "sizes": {"type": "object", "properties": {"medium": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "full": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "__typename": {"type": "string"}}, "required": ["medium", "full", "__typename"]}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "sizes", "__typename"]}, "__typename": {"type": "string"}}, "required": ["id", "title", "primoId", "slug", "shortcode", "imageUrl", "content", "imageType", "date", "dateText", "timestamp", "instagramUsername", "featuredMedia", "__typename"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"$": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "#": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "%": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["$", "#", "%"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "count"]}}, "required": ["type", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "minecraft:crafting_shaped", "pattern" : ["$$$", "% #"], "key" : {"$" : {"item" : "foodtech:supreme_ingot"}, "#" : {"item" : "foodtech:vege_leggings"}, "%" : {"item" : "foodtech:meat_leggings"}}, "result" : {"item" : "foodtech:supreme_leggings", "count" : 1}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"$": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "#": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "%": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["$", "#", "%"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "count"]}}, "required": ["type", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"output": {"type": "string"}, "input": {"type": "string"}, "level": {"type": "integer"}, "name": {"type": "string"}, "has_images": {"type": "boolean"}, "description": {"type": "string"}, "id": {"type": "string"}, "category": {"type": "string"}, "statistics": {"type": "object", "properties": {"level": {"type": "string"}, "submissions": {"type": "integer"}, "solved": {"type": "integer"}, "ratio": {"type": "string"}}, "required": ["level", "submissions", "solved", "ratio"]}}, "required": ["output", "input", "level", "name", "has_images", "description", "id", "category", "statistics"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"output" : "undefined", "input" : "undefined", "level" : 2, "name" : "Lexical", "has_images" : false, "description" : "undefined", "id" : "2826", "category" : "Principiante", "statistics" : {"level" : "2 / 10", "submissions" : 1022, "solved" : 627, "ratio" : "61.35%"}}
json_instruct
{"type": "object", "properties": {"output": {"type": "string"}, "input": {"type": "string"}, "level": {"type": "integer"}, "name": {"type": "string"}, "has_images": {"type": "boolean"}, "description": {"type": "string"}, "id": {"type": "string"}, "category": {"type": "string"}, "statistics": {"type": "object", "properties": {"level": {"type": "string"}, "submissions": {"type": "integer"}, "solved": {"type": "integer"}, "ratio": {"type": "string"}}, "required": ["level", "submissions", "solved", "ratio"]}}, "required": ["output", "input", "level", "name", "has_images", "description", "id", "category", "statistics"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"label": {"type": "string"}, "position": {"type": "integer"}}, "required": ["label", "position"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"label" : "Type Definitions", "position" : 3}
json_instruct
{"type": "object", "properties": {"label": {"type": "string"}, "position": {"type": "integer"}}, "required": ["label", "position"], "$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"}, "paypalEmail": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["id", "name", "paypalEmail", "homepage"]}}, "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"]}, "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", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 21171, "info" : {"name" : "PrivateSniper's Style :: About Us v1.0", "description" : "v1.0\r\nRemoves the Adverts Frames", "additionalInfo" : null, "format" : "uso", "category" : "aboutus", "createdAt" : "2009-09-22T17:23:39.000Z", "updatedAt" : "2009-09-22T17:23:39.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 14310, "name" : "PrivateSniper", "paypalEmail" : "davidcraig1986@gmail.com", "homepage" : "http://pvtsniper.wordpress.com"}}, "stats" : {"installs" : {"total" : 166, "weekly" : 0}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"aboutus.org\") {\r\n.adverts, #adsDisplay, #adsNarrow {display:none!important}\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"}, "paypalEmail": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["id", "name", "paypalEmail", "homepage"]}}, "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"]}, "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", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : " How to use special right triangles to determine the area of a parallelogram\n\n\n\n\n", "url" : "https://www.youtube.com/watch?v=52nY5IK3_aw"}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "test_cases": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "requests": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}, "apiVersion": {"type": "object", "properties": {"minorVersion": {"type": "integer"}, "majorVersion": {"type": "integer"}, "type": {"type": "string"}}, "required": ["minorVersion", "majorVersion", "type"]}, "operationPath": {"type": "string"}, "path": {"type": "string"}, "method": {"type": "string"}, "url": {"type": "string"}, "tests": {"type": "object", "properties": {"assertions": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}, "exec": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "description", "exec"]}}}, "required": ["assertions"]}, "ignoreCallbacks": {"type": "boolean"}}, "required": ["id", "description", "apiVersion", "operationPath", "path", "method", "url", "tests", "ignoreCallbacks"]}}}, "required": ["id", "name", "requests"]}}}, "required": ["name", "test_cases"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "multi", "test_cases" : [{"id" : 1, "name" : "transaction_request_service", "requests" : [{"id" : 5, "description" : "transaction service health", "apiVersion" : {"minorVersion" : 3, "majorVersion" : 9, "type" : "central_admin"}, "operationPath" : "/health", "path" : "/health", "method" : "get", "url" : "{$inputs.HOST_TRANSACTION_REQUESTS_SERVICE}", "tests" : {"assertions" : [{"id" : 1, "description" : "Response status to be 200", "exec" : ["expect(response.status).to.equal(200)"]}]}, "ignoreCallbacks" : true}]}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "test_cases": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "requests": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}, "apiVersion": {"type": "object", "properties": {"minorVersion": {"type": "integer"}, "majorVersion": {"type": "integer"}, "type": {"type": "string"}}, "required": ["minorVersion", "majorVersion", "type"]}, "operationPath": {"type": "string"}, "path": {"type": "string"}, "method": {"type": "string"}, "url": {"type": "string"}, "tests": {"type": "object", "properties": {"assertions": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}, "exec": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "description", "exec"]}}}, "required": ["assertions"]}, "ignoreCallbacks": {"type": "boolean"}}, "required": ["id", "description", "apiVersion", "operationPath", "path", "method", "url", "tests", "ignoreCallbacks"]}}}, "required": ["id", "name", "requests"]}}}, "required": ["name", "test_cases"], "$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"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/assetic-bundle": {"type": "string"}, "twig/twig": {"type": "string"}}, "required": ["php", "symfony/assetic-bundle", "twig/twig"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Troopers\\AsseticInjectorBundle": {"type": "string"}}, "required": ["Troopers\\AsseticInjectorBundle"]}}, "required": ["psr-0"]}, "target-dir": {"type": "string"}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "require", "autoload", "target-dir", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "troopers/assetic-injector-bundle", "type" : "symfony-bundle", "description" : "This bundle allow you to define global javascripts and stylesheets", "keywords" : ["assetic", "injector"], "homepage" : "http://troopers.agency", "license" : "MIT", "authors" : [{"name" : "Paul Andrieux", "email" : "paul@troopers.email"}, {"name" : "Leny Bernard", "email" : "leny@troopers.email"}], "require" : {"php" : ">=5.3.2", "symfony/assetic-bundle" : "~2.7", "twig/twig" : "~2.0"}, "autoload" : {"psr-0" : {"Troopers\\AsseticInjectorBundle" : ""}}, "target-dir" : "Troopers/AsseticInjectorBundle", "extra" : {"branch-alias" : {"dev-master" : "1.0.x-dev"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/assetic-bundle": {"type": "string"}, "twig/twig": {"type": "string"}}, "required": ["php", "symfony/assetic-bundle", "twig/twig"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Troopers\\AsseticInjectorBundle": {"type": "string"}}, "required": ["Troopers\\AsseticInjectorBundle"]}}, "required": ["psr-0"]}, "target-dir": {"type": "string"}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}}, "required": ["name", "type", "description", "keywords", "homepage", "license", "authors", "require", "autoload", "target-dir", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}, "value": {"type": "number"}}, "required": ["name", "path", "value"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "Capital goods", "path" : "Capital goods", "value" : 32219584.13106}, {"name" : "Consumer goods", "path" : "Consumer goods", "value" : 24059717.017969996}, {"name" : "Intermediate goods", "path" : "Intermediate goods", "value" : 16694896.070549997}, {"name" : "Mach and Elec", "path" : "Mach and Elec", "value" : 28341335.79713}, {"name" : "Metals", "path" : "Metals", "value" : 7251873.46534}, {"name" : "Miscellaneous", "path" : "Miscellaneous", "value" : 2528608.15522}, {"name" : "Plastic or Rubber", "path" : "Plastic or Rubber", "value" : 3657131.38721}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}, "value": {"type": "number"}}, "required": ["name", "path", "value"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:ja": {"type": "string"}}, "required": ["name:ja"]}}, "required": ["localname", "official_name", "alltags"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}, "population": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}}, "required": ["name", "iso2", "admin_level", "osm_id", "countrylevel_id", "osm_data", "center_lat", "center_lon", "area_m2", "timezone", "population", "wikidata_id", "wikipedia_id"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[-80.87, 8.887], [-80.753, 8.629], [-80.685, 8.138], [-80.869, 8.054], [-80.954, 7.754], [-80.72, 7.54], [-80.613, 7.234], [-80.89, 7.211], [-80.98, 7.612], [-81.532, 7.716], [-81.683, 8.022], [-81.533, 8.251], [-81.52, 8.288], [-81.532, 8.355], [-81.212, 8.583], [-81.217, 8.79], [-80.87, 8.887]]]}, "properties" : {"name" : "Veraguas", "iso2" : "PA-9", "admin_level" : 4, "osm_id" : 5740666, "countrylevel_id" : "iso2:PA-9", "osm_data" : {"localname" : "Veraguas", "official_name" : "", "alltags" : {"name:ja" : "\u30d9\u30e9\u30b0\u30a2\u30b9\u770c"}}, "center_lat" : 8.08, "center_lon" : -81.14, "area_m2" : 10740929651, "timezone" : "America/Panama", "population" : 226991, "wikidata_id" : "Q593137", "wikipedia_id" : "en:Veraguas Province"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:ja": {"type": "string"}}, "required": ["name:ja"]}}, "required": ["localname", "official_name", "alltags"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}, "population": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}}, "required": ["name", "iso2", "admin_level", "osm_id", "countrylevel_id", "osm_data", "center_lat", "center_lon", "area_m2", "timezone", "population", "wikidata_id", "wikipedia_id"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "county": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "town", "county", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "5b6211c3-27ea-4256-9d49-511bfa611053", "name" : "OTT Northern Hub", "code" : "N", "address" : {"addressLine1" : "The Warriner School", "addressLine2" : "Banbury Road", "town" : "Bloxham", "county" : "Banbury, Oxfordshire", "postcode" : "OX15 4LJ"}, "organisation" : {"id" : "74499090-bd95-469a-b55a-35eed0e51a0d", "code" : "1DE", "name" : "Oxfordshire Teacher Training"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "county": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "town", "county", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"time": {"type": "string"}, "quote_first": {"type": "string"}, "quote_time_case": {"type": "string"}, "quote_last": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}}, "required": ["time", "quote_first", "quote_time_case", "quote_last", "title", "author"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"time" : "19:10", "quote_first" : "He had already got to the point where, by rocking more strongly, he maintained his equilibrium with difficulty, and very soon he would finally have to make a final decision, for ", "quote_time_case" : "in five minutes it would be a quarter past seven", "quote_last" : ". Then there was a ring at the door of the apartment. \u201cThat\u2019s someone from the office,\u201d he told himself, and he almost froze, while his small limbs only danced around all the faster. For one moment everything remained still. \u201cThey aren\u2019t opening,\u201d Gregor said to himself, caught up in some absurd hope.", "title" : "Metamorphosis", "author" : "Franz Kafka"}, {"time" : "19:10", "quote_first" : "The party was to begin at seven. The invitations gave the hour as six-thirty because the family knew everyone would come a little late, so as not to be the first to arrive. At ", "quote_time_case" : "seven-ten", "quote_last" : " not a soul had come; somewhat acrimoniously, the family discussed the advantages and disadvantages of tardiness", "title" : "The Elderly Lady", "author" : "Jorge Luis Borges"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"time": {"type": "string"}, "quote_first": {"type": "string"}, "quote_time_case": {"type": "string"}, "quote_last": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}}, "required": ["time", "quote_first", "quote_time_case", "quote_last", "title", "author"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-x596-gwgr-jh6m", "modified" : "2022-05-01T06:46:27Z", "published" : "2022-05-01T06:46:27Z", "aliases" : ["CVE-2006-1155"], "details" : "Cross-site scripting (XSS) vulnerability in manas tungare Site Membership Script before 8 March, 2006 allows remote attackers to inject arbitrary web script or HTML via the Error parameter in (1) login.asp and (2) default.asp.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2006-1155"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/25109"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/19156"}, {"type" : "WEB", "url" : "http://www.manastungare.com/projects/site-membership/"}, {"type" : "WEB", "url" : "http://www.osvdb.org/23753"}, {"type" : "WEB", "url" : "http://www.osvdb.org/23754"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/17045"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2006/0884"}], "database_specific" : {"cwe_ids" : [], "severity" : "MODERATE", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"cdf_smooth": {"type": "object", "properties": {"x": {"type": "array", "items": {"type": "number"}}, "c": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["x", "c"]}}, "required": ["cdf_smooth"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cdf_smooth" : {"x" : [-1.960796389592573, 9.383516970098249, 15.767715536461754, 19.5525367233315, 22.61988947000599, 25.484979585683256, 28.291518350413828, 31.194936888210723, 34.163523683776205, 37.22747996898424, 40.57049835616436, 44.11764575342472, 48.417344573234985, 53.28021716727415, 59.753647160371344, 69.61006633525686, 117.40390410958908], "c" : [[2.097687899166636e-06, 0.0002483343572783039, 4.347542659757642e-18, 0.0050425], [2.2308536084552137e-05, 0.0003197248438552374, 0.006444241584514533, 0.040063999999999995], [-1.590769441653181e-05, 0.000746991216121233, 0.013254368725333263, 0.10004149999999999], [-4.2858100642710185e-05, 0.0005663678795354178, 0.018225198056542637, 0.160045], [-6.0564955281312285e-06, 0.00017198514136441362, 0.02048998722321514, 0.22003999999999999], [-3.60914892985043e-05, 0.00011992792494454101, 0.02132634446413395, 0.280015], [1.3606701553597228e-05, -0.00018394856643479964, 0.021146668052048644, 0.340015], [-1.7959577657262344e-07, -6.543071784784595e-05, 0.02042261561511988, 0.400195], [-3.1807935552729676e-05, -6.703015480046726e-05, 0.02002939401764702, 0.46024], [3.669358839394873e-05, -0.0003594045269693106, 0.018722816794207845, 0.520065], [-5.289660210670125e-05, 8.59749510845849e-06, 0.017550062436344934, 0.58001], [3.950689465970446e-05, -0.0005542986383516471, 0.015614380046407852, 0.64001], [-2.0387911037058947e-05, -4.469539332354446e-05, 0.013038886115340624, 0.70004], [7.658639146153268e-06, -0.00034212683481901003, 0.011157818903341018, 0.760045], [3.1024133380420756e-06, -0.00019339384175395667, 0.007691163293689857, 0.8200149999999999], [7.20034781610311e-07, -0.00010165778281346087, 0.004783010803722437, 0.880005]]}}
json_instruct
{"type": "object", "properties": {"cdf_smooth": {"type": "object", "properties": {"x": {"type": "array", "items": {"type": "number"}}, "c": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["x", "c"]}}, "required": ["cdf_smooth"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "emissions": {"type": "number"}}, "required": ["type", "emissions"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"type" : "Liquid Fuel", "emissions" : 130.8}, {"type" : "Solid Fuel", "emissions" : 190.8}, {"type" : "Gas Fuel", "emissions" : 55}, {"type" : "Gas Flaring", "emissions" : 3.4}, {"type" : "Cement", "emissions" : 11}, {"type" : "Bunker", "emissions" : 9.7}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "emissions": {"type": "number"}}, "required": ["type", "emissions"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "offices": {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}, "area": {"type": "string"}, "coordinates": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "phone": {"type": "string"}}, "required": ["address", "area", "coordinates", "phone"]}}, "technologies": {"type": "array", "items": {}}, "url": {"type": "string"}}, "required": ["name", "offices", "technologies", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Perigen", "offices" : [{"address" : "4 Negev Street, Airport City, 70100 Israel", "area" : "Airport City", "coordinates" : {"lat" : 31.98578189959402, "lng" : 34.91231918334961}, "phone" : ""}], "technologies" : [], "url" : "http://perigen.com/"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "offices": {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}, "area": {"type": "string"}, "coordinates": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "phone": {"type": "string"}}, "required": ["address", "area", "coordinates", "phone"]}}, "technologies": {"type": "array", "items": {}}, "url": {"type": "string"}}, "required": ["name", "offices", "technologies", "url"], "$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"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "bunyan": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "morgan": {"type": "string"}, "request": {"type": "string"}, "twilio": {"type": "string"}, "url": {"type": "string"}}, "required": ["body-parser", "bunyan", "ejs", "express", "morgan", "request", "twilio", "url"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["name", "version", "description", "main", "author", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "contact-app", "version" : "0.0.1", "description" : "This project aims to develop a web app that can send an OTP (via SMS) to a list of contacts, one at a time.", "main" : "OTPserver.js", "author" : "Sejal", "dependencies" : {"body-parser" : "latest", "bunyan" : "latest", "ejs" : "latest", "express" : "latest", "morgan" : "latest", "request" : "latest", "twilio" : "latest", "url" : "latest"}, "scripts" : {"start" : "node app/otpserver.js"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "bunyan": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "morgan": {"type": "string"}, "request": {"type": "string"}, "twilio": {"type": "string"}, "url": {"type": "string"}}, "required": ["body-parser", "bunyan", "ejs", "express", "morgan", "request", "twilio", "url"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["name", "version", "description", "main", "author", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"F3": {"type": "integer"}}, "required": ["F3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"F3" : 1300}
json_instruct
{"type": "object", "properties": {"F3": {"type": "integer"}}, "required": ["F3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"em": {"type": "array", "items": {}}, "bites": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "other": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "fever": {"type": "array", "items": {}}}, "required": ["em", "bites", "other", "fever"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"em" : [], "bites" : [{"location" : {"latitude" : 51.09, "longitude" : 4.33}}, {"location" : {"latitude" : 51.57, "longitude" : 4.55}}, {"location" : {"latitude" : 51.8, "longitude" : 5.87}}, {"location" : {"latitude" : 51.25, "longitude" : 5.71}}, {"location" : {"latitude" : 52.93, "longitude" : 6.57}}, {"location" : {"latitude" : 52.21, "longitude" : 5.94}}, {"location" : {"latitude" : 52.39, "longitude" : 5.28}}, {"location" : {"latitude" : 51.38, "longitude" : 4.42}}], "other" : [{"location" : {"latitude" : 51.73, "longitude" : 3.75}}], "fever" : []}
json_instruct
{"type": "object", "properties": {"em": {"type": "array", "items": {}}, "bites": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "other": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "fever": {"type": "array", "items": {}}}, "required": ["em", "bites", "other", "fever"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "run": {"type": "string"}, "heroku-postbuild": {"type": "string"}}, "required": ["start", "run", "heroku-postbuild"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "crypto": {"type": "string"}, "express": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mongoose": {"type": "string"}, "multer": {"type": "string"}, "nodemailer": {"type": "string"}, "nodemailer-sendgrid-transport": {"type": "string"}, "sharp": {"type": "string"}, "validator": {"type": "string"}}, "required": ["bcryptjs", "crypto", "express", "jsonwebtoken", "mongoose", "multer", "nodemailer", "nodemailer-sendgrid-transport", "sharp", "validator"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "DevConnect", "version" : "1.0.0", "description" : "", "main" : "app.js", "scripts" : {"start" : "node app.js", "run" : "nodemon app.js", "heroku-postbuild" : "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"}, "keywords" : [], "author" : "", "license" : "ISC", "dependencies" : {"bcryptjs" : "^2.4.3", "crypto" : "^1.0.1", "express" : "^4.17.1", "jsonwebtoken" : "^8.5.1", "mongoose" : "^5.10.0", "multer" : "^1.4.2", "nodemailer" : "^6.4.12", "nodemailer-sendgrid-transport" : "^0.2.0", "sharp" : "^0.26.1", "validator" : "^13.1.1"}, "devDependencies" : {"nodemon" : "^2.0.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "run": {"type": "string"}, "heroku-postbuild": {"type": "string"}}, "required": ["start", "run", "heroku-postbuild"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bcryptjs": {"type": "string"}, "crypto": {"type": "string"}, "express": {"type": "string"}, "jsonwebtoken": {"type": "string"}, "mongoose": {"type": "string"}, "multer": {"type": "string"}, "nodemailer": {"type": "string"}, "nodemailer-sendgrid-transport": {"type": "string"}, "sharp": {"type": "string"}, "validator": {"type": "string"}}, "required": ["bcryptjs", "crypto", "express", "jsonwebtoken", "mongoose", "multer", "nodemailer", "nodemailer-sendgrid-transport", "sharp", "validator"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-frr9-jpgq-8xqf", "modified" : "2022-05-02T03:47:48Z", "published" : "2022-05-02T03:47:48Z", "aliases" : ["CVE-2009-3709"], "details" : "Stack-based buffer overflow in the Meta Content Optimizer in Konae Technologies Alleycode HTML Editor 2.21 allows user-assisted remote attackers to execute arbitrary code via a long value in a TITLE tag.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2009-3709"}, {"type" : "WEB", "url" : "http://osvdb.org/58649"}, {"type" : "WEB", "url" : "http://packetstormsecurity.org/0910-exploits/alleycode-overflow.txt"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/36940"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/archive/1/506987/100/0/threaded"}], "database_specific" : {"cwe_ids" : ["CWE-119"], "severity" : "HIGH", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "520330117200", "text" : "\u5929\u6c34\u6c60\u6751\u59d4\u4f1a"}, {"id" : "520330117201", "text" : "\u72ee\u5b50\u6751\u59d4\u4f1a"}, {"id" : "520330117202", "text" : "\u5927\u575d\u6cb3\u6751\u59d4\u4f1a"}, {"id" : "520330117203", "text" : "\u67ff\u89d2\u5143\u6751\u59d4\u4f1a"}, {"id" : "520330117204", "text" : "\u6749\u6797\u6751\u59d4\u4f1a"}, {"id" : "520330117205", "text" : "\u987a\u6c5f\u6751\u59d4\u4f1a"}, {"id" : "520330117206", "text" : "\u4e09\u5c94\u6751\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"time": {"type": "string"}, "quote_first": {"type": "string"}, "quote_time_case": {"type": "string"}, "quote_last": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}}, "required": ["time", "quote_first", "quote_time_case", "quote_last", "title", "author"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"time" : "00:59", "quote_first" : "\u2018What time is it now?\u2019 she said. \u2018", "quote_time_case" : "About one o\u2019clock", "quote_last" : "\u2019. \u2018In the morning?\u2019 Herera\u2019s friend leered at her. \u2018No, there\u2019s a total eclipse of the sun\u2019.", "title" : "Freedom", "author" : "Jonathan Frantzen"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"time": {"type": "string"}, "quote_first": {"type": "string"}, "quote_time_case": {"type": "string"}, "quote_last": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}}, "required": ["time", "quote_first", "quote_time_case", "quote_last", "title", "author"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "MultiPolygon", "coordinates" : [[[[-90.475621, 41.957497], [-90.475597, 41.957544], [-90.475558, 41.957636], [-90.475525, 41.957784], [-90.475518, 41.957906], [-90.475513, 41.957995], [-90.475508, 41.959185], [-90.475508, 41.959391], [-90.475497, 41.959539], [-90.475485, 41.959611], [-90.475478, 41.959725], [-90.475458, 41.960069], [-90.475452, 41.960184], [-90.475448, 41.960539], [-90.475438, 41.961605], [-90.475435, 41.961961], [-90.475439, 41.962354], [-90.475454, 41.963536], [-90.475459, 41.96393], [-90.475483, 41.966215], [-90.475499, 41.967631], [-90.470059, 41.967694], [-90.467774, 41.967721], [-90.467568, 41.967725], [-90.46695, 41.967737], [-90.466744, 41.967741], [-90.465501, 41.967763], [-90.461774, 41.967831], [-90.461155, 41.967843], [-90.461134, 41.967221], [-90.461122, 41.966848], [-90.461086, 41.965731], [-90.461075, 41.965359], [-90.461063, 41.964982], [-90.461027, 41.963853], [-90.461015, 41.963477], [-90.461, 41.962861], [-90.460956, 41.961016], [-90.460942, 41.960401], [-90.460939, 41.960214], [-90.460938, 41.960185], [-90.460339, 41.960181], [-90.460337, 41.960083], [-90.460352, 41.959933], [-90.460367, 41.959739], [-90.46037, 41.959636], [-90.460361, 41.959468], [-90.460349, 41.959323], [-90.460913, 41.959321], [-90.460913, 41.958903], [-90.460915, 41.958307], [-90.460897, 41.957204], [-90.460895, 41.957035], [-90.46089, 41.956638], [-90.461935, 41.956632], [-90.465073, 41.956615], [-90.466119, 41.95661], [-90.468215, 41.956596], [-90.474505, 41.956558], [-90.475657, 41.956552], [-90.475621, 41.957497]]]], "properties" : {"id" : "usa-ia-charlotte-city", "type" : "city", "name" : "Charlotte", "code" : "1912855"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"element-6066-11e4-a52e-4f735466cecf": {"type": "string"}}, "required": ["element-6066-11e4-a52e-4f735466cecf"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"element-6066-11e4-a52e-4f735466cecf" : "1c9e0d70-2af9-4bfc-902e-4a81e3f3c0a1"}
json_instruct
{"type": "object", "properties": {"element-6066-11e4-a52e-4f735466cecf": {"type": "string"}}, "required": ["element-6066-11e4-a52e-4f735466cecf"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"names": {"type": "object", "properties": {"en": {"type": "string"}, "de": {"type": "string"}}, "required": ["en", "de"]}, "increased_stat": {"type": "string"}, "decreased_stat": {"type": "string"}, "favorite_flavor": {"type": "string"}, "disliked_flavor": {"type": "string"}}, "required": ["names", "increased_stat", "decreased_stat", "favorite_flavor", "disliked_flavor"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"names" : {"en" : "Rash", "de" : "Hitzig"}, "increased_stat" : "sp_atk", "decreased_stat" : "sp_def", "favorite_flavor" : "Dry", "disliked_flavor" : "Bitter"}
json_instruct
{"type": "object", "properties": {"names": {"type": "object", "properties": {"en": {"type": "string"}, "de": {"type": "string"}}, "required": ["en", "de"]}, "increased_stat": {"type": "string"}, "decreased_stat": {"type": "string"}, "favorite_flavor": {"type": "string"}, "disliked_flavor": {"type": "string"}}, "required": ["names", "increased_stat", "decreased_stat", "favorite_flavor", "disliked_flavor"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 4277, "citation_title" : "Criminal Deterrence: Revisiting the Issue with a Birth Cohort", "citation_author" : ["Helen Tauchen", "Ann Dryden Witte", "Harriet Griesinger"], "citation_publication_date" : "1993-02-01", "issue_date" : "1993-02-01", "revision_date" : "None", "topics" : ["Other", "Law and Economics"], "program" : ["Productivity, Innovation, and Entrepreneurship", "Labor Studies"], "projects" : null, "working_groups" : null, "abstract" : "\n\nIn this paper, we estimate the general deterrent effect of criminal justice resources on criminal behavior. Our panel data, which combine individual-level information on arrests and personal characteristics with aggregate measures of criminal justice resources, allow us to obtain deterrence measures that more closely reflect theoretical concepts and are of potential policy relevance. We find robust evidence of a general deterrent effect in our estimates of error components probit and Tobit models.\n\n", "acknowledgement" : "\n"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$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": {"build": {"type": "string"}, "dev": {"type": "string"}, "test": {"type": "string"}, "newpost": {"type": "string"}}, "required": ["build", "dev", "test", "newpost"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@11ty/eleventy": {"type": "string"}, "clean-css": {"type": "string"}, "markdown-it-anchor": {"type": "string"}, "terser": {"type": "string"}}, "required": ["@11ty/eleventy", "clean-css", "markdown-it-anchor", "terser"]}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "stripe": {"type": "string"}}, "required": ["dotenv", "stripe"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ogdenstudios.xyz", "version" : "3.0.0", "description" : "Ogden Studios website v3 - built with Eleventy", "main" : "serviceworker.js", "scripts" : {"build" : "npx @11ty/eleventy", "dev" : "npx @11ty/eleventy --serve", "test" : "echo \"Error: no test specified\" && exit 1", "newpost" : "node ./scripts/newPost.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/ogdenstudios/ogdenstudios.xyz.git"}, "author" : "Tyler Scott Williams", "license" : "ISC", "bugs" : {"url" : "https://github.com/ogdenstudios/ogdenstudios.xyz/issues"}, "homepage" : "https://github.com/ogdenstudios/ogdenstudios.xyz#readme", "devDependencies" : {"@11ty/eleventy" : "^0.10.0-beta.2", "clean-css" : "^4.2.1", "markdown-it-anchor" : "^6.0.1", "terser" : "^4.4.3"}, "dependencies" : {"dotenv" : "^8.2.0", "stripe" : "^8.44.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "test": {"type": "string"}, "newpost": {"type": "string"}}, "required": ["build", "dev", "test", "newpost"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@11ty/eleventy": {"type": "string"}, "clean-css": {"type": "string"}, "markdown-it-anchor": {"type": "string"}, "terser": {"type": "string"}}, "required": ["@11ty/eleventy", "clean-css", "markdown-it-anchor", "terser"]}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "stripe": {"type": "string"}}, "required": ["dotenv", "stripe"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "building": {"type": "string"}, "contact:email": {"type": "string"}, "contact:fax": {"type": "string"}, "contact:phone": {"type": "string"}, "contact:website": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "shop": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:housenumber", "addr:postcode", "addr:street", "building", "contact:email", "contact:fax", "contact:phone", "contact:website", "name", "opening_hours", "shop", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "id" : "way/219414453", "properties" : {"addr:city" : "Uedem", "addr:housenumber" : "13", "addr:postcode" : "47589", "addr:street" : "Am Lindchen", "building" : "yes", "contact:email" : "info@bauernmarkt-lindchen.de", "contact:fax" : "+49 2825 5352690", "contact:phone" : "+49 2825 535260", "contact:website" : "http://www.bauernmarkt-lindchen.de/", "name" : "Bauernmarkt Lindchen", "opening_hours" : "Mo-Fr 08:00-18:30; Sa 08:00-16:00", "shop" : "farm", "id" : "way/219414453"}, "geometry" : {"type" : "Point", "coordinates" : [6.2308216, 51.7026498]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "building": {"type": "string"}, "contact:email": {"type": "string"}, "contact:fax": {"type": "string"}, "contact:phone": {"type": "string"}, "contact:website": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "shop": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:housenumber", "addr:postcode", "addr:street", "building", "contact:email", "contact:fax", "contact:phone", "contact:website", "name", "opening_hours", "shop", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "Postcode", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "OperatorsReference", "UsageTypeID", "UsageCost", "AddressInfo", "Connections", "NumberOfPoints", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 170686, "UUID" : "D09B4726-BFFD-4D5A-A4BC-1C1B89B013C8", "DataProviderID" : 1, "OperatorID" : 3, "OperatorsReference" : "PG-80619", "UsageTypeID" : 4, "UsageCost" : "Free", "AddressInfo" : {"ID" : 171045, "Title" : "Sainsbury's Mansfield", "AddressLine1" : "Nottingham Road", "Town" : "Mansfield", "Postcode" : "NG18 1BW", "CountryID" : 1, "Latitude" : 53.134298, "Longitude" : -1.198228, "DistanceUnit" : 0}, "Connections" : [{"ID" : 260671, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "Amps" : 16, "Voltage" : 230, "PowerKW" : 3, "CurrentTypeID" : 10, "Quantity" : 2}], "NumberOfPoints" : 2, "GeneralComments" : "This is an open charge unit installed at the Sainsbury's store in Nottingham Road, Mansfield", "StatusTypeID" : 50, "DateLastStatusUpdate" : "2020-12-05T11:10:00Z", "DataQualityLevel" : 1, "DateCreated" : "2020-12-05T10:33:00Z", "SubmissionStatusTypeID" : 200}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "Postcode", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "NumberOfPoints": {"type": "integer"}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "OperatorID", "OperatorsReference", "UsageTypeID", "UsageCost", "AddressInfo", "Connections", "NumberOfPoints", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 22615, "name" : "NET\u88cf\u6280\u5c02\u9580\u5e97 | CLEAN UP", "description" : "\uff11\u30ab\u30e9\u30e0\u5316", "user" : {"id" : 32583, "name" : "SpongeboboboB", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2009-11-19T06:47:10.000Z", "weekly_install_count" : 0, "total_install_count" : 193, "rating" : null, "after_screenshot_name" : "https://userstyles.org/style_screenshots/22615_after.png?r=1587542683", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2009-11-17T03:14:19.000Z", "category" : "site", "raw_subcategory" : "fc2", "subcategory" : "fc2", "additional_info" : null, "style_tags" : [], "css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n@-moz-document domain(\"neturawaza.blog62.fc2.com\") {\r\n\r\n#header,\r\nH1,\r\nDL.navi,\r\n#ad1\r\n{display:none !important; }\r\n\r\ndiv#box,\r\ndiv#main,\r\ndiv#content{\r\nmargin-left:0px !important; max-width:100% !important; \r\n}\r\n\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/22615/net-clean-up.user.js", "style_settings" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "4c0bb1be6a7b7c88cf93", "c" : {}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"900403845": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403846": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403847": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403848": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403849": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900403845", "900403846", "900403847", "900403848", "900403849"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900403845" : {"nama" : "TPS 1", "dapil" : [3306, 13309, 2332304]}, "900403846" : {"nama" : "TPS 2", "dapil" : [3306, 13309, 2332304]}, "900403847" : {"nama" : "TPS 3", "dapil" : [3306, 13309, 2332304]}, "900403848" : {"nama" : "TPS 4", "dapil" : [3306, 13309, 2332304]}, "900403849" : {"nama" : "TPS 5", "dapil" : [3306, 13309, 2332304]}}
json_instruct
{"type": "object", "properties": {"900403845": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403846": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403847": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403848": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900403849": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900403845", "900403846", "900403847", "900403848", "900403849"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 9446, "children" : [{"id" : 9447, "name" : "University of Wisconsin-Madison -- Design Lab"}, {"id" : 9448, "name" : "University of Wisconsin-Madison -- Digital Studies"}], "name" : "University of Wisconsin-Madison"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$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#"}
[["371072008000", "\u7687\u51a0\u8857\u9053", "4", "1"], ["371072009000", "\u51e4\u6797\u8857\u9053", "4", "1"], ["371072010000", "\u897f\u82d1\u8857\u9053", "4", "1"], ["371072103000", "\u5d2e\u5c71\u9547", "4", "1"], ["371072105000", "\u6cca\u4e8e\u9547", "4", "1"], ["371072106000", "\u6865\u5934\u9547", "4", "1"]]
json_instruct
{"type": "array", "items": {"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": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"source" : "http://lema.rae.es/drae/srv/search?val=liquidar", "word" : "liquidar", "infinitivo" : "liquidar", "participio" : ["liquidado"], "gerundio" : ["liquidando"], "tenses" : {"3" : [["liquido"], ["liquidas", "liquid\u00e1s"], ["liquida"], ["liquidamos"], ["liquid\u00e1is", "liquidan"], ["liquidan"]], "4" : [["liquid\u00e9"], ["liquidaste"], ["liquid\u00f3"], ["liquidamos"], ["liquidasteis", "liquidaron"], ["liquidaron"]], "5" : [["liquidaba"], ["liquidabas"], ["liquidaba"], ["liquid\u00e1bamos"], ["liquidabais", "liquidaban"], ["liquidaban"]], "6" : [["liquidar\u00eda"], ["liquidar\u00edas"], ["liquidar\u00eda"], ["liquidar\u00edamos"], ["liquidar\u00edais", "liquidar\u00edan"], ["liquidar\u00edan"]], "7" : [["liquidar\u00e9"], ["liquidar\u00e1s"], ["liquidar\u00e1"], ["liquidaremos"], ["liquidar\u00e9is", "liquidar\u00e1n"], ["liquidar\u00e1n"]], "8" : [["liquide"], ["liquides"], ["liquide"], ["liquidemos"], ["liquid\u00e9is", "liquiden"], ["liquiden"]], "9" : [["liquidara"], ["liquidaras"], ["liquidara"], ["liquid\u00e1ramos"], ["liquidarais", "liquidaran"], ["liquidaran"]], "10" : [["liquidase"], ["liquidases"], ["liquidase"], ["liquid\u00e1semos"], ["liquidaseis", "liquidasen"], ["liquidasen"]], "11" : [["liquidare"], ["liquidares"], ["liquidare"], ["liquid\u00e1remos"], ["liquidareis", "liquidaren"], ["liquidaren"]], "12" : {"1" : ["liquida"], "2" : ["liquide"], "3" : ["liquidemos"], "4" : ["liquidad"], "5" : ["liquiden"]}}}
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1996, 5], [1999, 5], [2001, 5], [2004, 7], [2005, 7], [2006, 7], [2007, 6], [2009, 10], [2011, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-86.439695, 39.864239], [-86.43015, 39.864646], [-86.43087, 39.92349], [-86.39771, 39.923772], [-86.397589, 39.910131], [-86.399085, 39.909719], [-86.386791, 39.892951], [-86.387339, 39.890947], [-86.38866, 39.891667], [-86.390939, 39.890963], [-86.392587, 39.889079], [-86.390724, 39.886362], [-86.390456, 39.884455], [-86.390733, 39.882457], [-86.392497, 39.88021], [-86.392473, 39.857878], [-86.437248, 39.857447], [-86.438659, 39.85686], [-86.43824, 39.855959], [-86.439517, 39.856066], [-86.439695, 39.864239]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 24848}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"doctorpatter": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["doctorpatter"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"doctorpatter" : {"title" : "DoctorPatter", "channel_id" : 37697370, "link" : "http://twitch.tv/doctorpatter", "desc" : null, "plans" : {"$4.99" : "151037", "$9.99" : "151040", "$24.99" : "151041"}, "id" : "doctorpatter", "first_seen" : "2017-06-28 15:30:21", "badge" : null, "badge_starting" : null, "badge_3m" : null, "badge_6m" : null, "badge_12m" : null, "badge_24m" : null, "badges" : null, "bits_badges" : null, "cheermote1" : null, "cheermote100" : null, "cheermote1000" : null, "cheermote5000" : null, "cheermote10000" : null, "set" : 151037, "emotes" : [{"code" : "doctor15GG", "image_id" : 215100, "set" : 151037}, {"code" : "doctor15OK", "image_id" : 215159, "set" : 151040}]}}}
json_instruct
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"doctorpatter": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["doctorpatter"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "icon": {"type": "string"}, "description": {"type": "string"}, "castTime": {"type": "string"}}, "required": ["id", "name", "icon", "description", "castTime"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 6114, "name" : "Raptor Punch", "icon" : "inv_drink_07", "description" : "Increases your Intellect by 4 and decreases your Stamina by 5 for 5 min.", "castTime" : "3 sec cast"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "icon": {"type": "string"}, "description": {"type": "string"}, "castTime": {"type": "string"}}, "required": ["id", "name", "icon", "description", "castTime"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"cpu": {"type": "object", "properties": {"fqbn": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["fqbn", "name", "type"]}, "secrets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "included_libs": {"type": "array", "items": {}}}, "required": ["cpu", "secrets", "included_libs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cpu" : {"fqbn" : "arduino:samd:mkr1000", "name" : "Arduino MKR1000", "type" : "serial"}, "secrets" : [{"name" : "SECRET_SSID", "value" : ""}, {"name" : "SECRET_PASS", "value" : ""}], "included_libs" : []}
json_instruct
{"type": "object", "properties": {"cpu": {"type": "object", "properties": {"fqbn": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["fqbn", "name", "type"]}, "secrets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "included_libs": {"type": "array", "items": {}}}, "required": ["cpu", "secrets", "included_libs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"liveId": {"type": "string"}, "title": {"type": "string"}, "subTitle": {"type": "string"}, "picPath": {"type": "string"}, "startTime": {"type": "integer"}, "memberId": {"type": "integer"}, "liveType": {"type": "integer"}, "picLoopTime": {"type": "integer"}, "lrcPath": {"type": "string"}, "streamPath": {"type": "string"}, "screenMode": {"type": "integer"}, "roomId": {"type": "string"}, "bwqaVersion": {"type": "integer"}}, "required": ["liveId", "title", "subTitle", "picPath", "startTime", "memberId", "liveType", "picLoopTime", "lrcPath", "streamPath", "screenMode", "roomId", "bwqaVersion"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"liveId" : "5ca803620cf20f4b9b936711", "title" : "\u9122\u7fbd\u8776\u7684\u7535\u53f0", "subTitle" : "\u8fdb\u6765\u7684\u90fd\u662f\u6709\u7f18\u4eba", "picPath" : "/mediasource/live/1552659782107mh5wvJr8Nl.png,/mediasource/live/1554514783351ye5tHcQ160.jpg,/mediasource/live/1554514783863XPpF411m6z.jpg,/mediasource/live/1554514784116b54j9OjCP4.jpg,/mediasource/live/15545147845166f90Zsm8Lk.jpg,/mediasource/live/1554514784825a6bm7i1S7j.jpg,/mediasource/live/1554514785058i3obsGx8fw.jpg,/mediasource/live/15545147853788ckrrNYmR5.jpg,/mediasource/live/1554514785627l1tsopD55W.jpg,/mediasource/live/155451478587742K573s089.jpg", "startTime" : 1554514786202, "memberId" : 874698, "liveType" : 2, "picLoopTime" : 30000, "lrcPath" : "/mediasource/live/lrc/5ca803620cf20f4b9b936711.lrc", "streamPath" : "http://livepull.48.cn/pocket48/idft_yan_yudie_zbufb.flv", "screenMode" : 0, "roomId" : "63787130", "bwqaVersion" : 0}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"liveId": {"type": "string"}, "title": {"type": "string"}, "subTitle": {"type": "string"}, "picPath": {"type": "string"}, "startTime": {"type": "integer"}, "memberId": {"type": "integer"}, "liveType": {"type": "integer"}, "picLoopTime": {"type": "integer"}, "lrcPath": {"type": "string"}, "streamPath": {"type": "string"}, "screenMode": {"type": "integer"}, "roomId": {"type": "string"}, "bwqaVersion": {"type": "integer"}}, "required": ["liveId", "title", "subTitle", "picPath", "startTime", "memberId", "liveType", "picLoopTime", "lrcPath", "streamPath", "screenMode", "roomId", "bwqaVersion"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"timestamp": {"type": "integer"}, "object_list": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "id": {"type": "integer"}}, "required": ["position", "id"]}}, "frame": {"type": "integer"}, "size": {"type": "integer"}}, "required": ["timestamp", "object_list", "frame", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"timestamp" : 204, "object_list" : [{"position" : [1.99, 4.55], "id" : 39}, {"position" : [2.83, 2.52], "id" : 40}], "frame" : 204, "size" : 2}
json_instruct
{"type": "object", "properties": {"timestamp": {"type": "integer"}, "object_list": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "id": {"type": "integer"}}, "required": ["position", "id"]}}, "frame": {"type": "integer"}, "size": {"type": "integer"}}, "required": ["timestamp", "object_list", "frame", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"request": {"type": "object", "properties": {"body": {"type": "string"}, "headers": {"type": "object", "properties": {"content-type": {"type": "string"}}, "required": ["content-type"]}, "method": {"type": "string"}, "options": {"type": "array", "items": {}}, "request_body": {"type": "string"}, "url": {"type": "string"}}, "required": ["body", "headers", "method", "options", "request_body", "url"]}, "response": {"type": "object", "properties": {"binary": {"type": "boolean"}, "body": {"type": "string"}, "headers": {"type": "object", "properties": {"Content-Type": {"type": "string"}, "Content-Length": {"type": "string"}, "Connection": {"type": "string"}, "Date": {"type": "string"}, "x-amzn-RequestId": {"type": "string"}, "Access-Control-Allow-Origin": {"type": "string"}, "x-amz-apigw-id": {"type": "string"}, "X-Amzn-Trace-Id": {"type": "string"}, "X-Cache": {"type": "string"}, "Via": {"type": "string"}, "X-Amz-Cf-Pop": {"type": "string"}, "X-Amz-Cf-Id": {"type": "string"}}, "required": ["Content-Type", "Content-Length", "Connection", "Date", "x-amzn-RequestId", "Access-Control-Allow-Origin", "x-amz-apigw-id", "X-Amzn-Trace-Id", "X-Cache", "Via", "X-Amz-Cf-Pop", "X-Amz-Cf-Id"]}, "status_code": {"type": "integer"}, "type": {"type": "string"}}, "required": ["binary", "body", "headers", "status_code", "type"]}}, "required": ["request", "response"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"request" : {"body" : "{\"AudioFileFormat\":2,\"Command\":\"AP_Synth\",\"PowerRate\":1.0,\"SpeakerID\":1,\"SpeechRate\":1.0,\"StyleID\":1,\"TextData\":\"I Was Born To Love Elixir\",\"VoiceType\":1.0}", "headers" : {"content-type" : "application/json"}, "method" : "post", "options" : [], "request_body" : "", "url" : "https://api.apigw.smt.docomo.ne.jp/futureVoiceCrayon/v1/textToSpeech?APIKEY=<REDACTED>"}, "response" : {"binary" : false, "body" : "{\"requestError\":{\"policyException\":{\"messageId\":\"POLSLA009\",\"text\":\"Unable to perform ApiKey based Authentication\"}}}", "headers" : {"Content-Type" : "application/json", "Content-Length" : "117", "Connection" : "keep-alive", "Date" : "Mon, 12 Oct 2020 12:36:35 GMT", "x-amzn-RequestId" : "d4c81f25-0835-413f-bd23-bdef2b5a41b8", "Access-Control-Allow-Origin" : "*", "x-amz-apigw-id" : "UTEZAGRRNjMFd2w=", "X-Amzn-Trace-Id" : "Root=1-5f844dd3-0a94e8fd5cfff8590f84018b;Sampled=0", "X-Cache" : "Error from cloudfront", "Via" : "1.1 c2e4ac979e01c116ae8349b7d6d1489a.cloudfront.net (CloudFront)", "X-Amz-Cf-Pop" : "SIN52-C3", "X-Amz-Cf-Id" : "LFaV5rncKlIjVVUv0FqIXJNu2fFy3SdGRl3GF-Aa_-xyjT2I4dZ9kw=="}, "status_code" : 401, "type" : "ok"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"request": {"type": "object", "properties": {"body": {"type": "string"}, "headers": {"type": "object", "properties": {"content-type": {"type": "string"}}, "required": ["content-type"]}, "method": {"type": "string"}, "options": {"type": "array", "items": {}}, "request_body": {"type": "string"}, "url": {"type": "string"}}, "required": ["body", "headers", "method", "options", "request_body", "url"]}, "response": {"type": "object", "properties": {"binary": {"type": "boolean"}, "body": {"type": "string"}, "headers": {"type": "object", "properties": {"Content-Type": {"type": "string"}, "Content-Length": {"type": "string"}, "Connection": {"type": "string"}, "Date": {"type": "string"}, "x-amzn-RequestId": {"type": "string"}, "Access-Control-Allow-Origin": {"type": "string"}, "x-amz-apigw-id": {"type": "string"}, "X-Amzn-Trace-Id": {"type": "string"}, "X-Cache": {"type": "string"}, "Via": {"type": "string"}, "X-Amz-Cf-Pop": {"type": "string"}, "X-Amz-Cf-Id": {"type": "string"}}, "required": ["Content-Type", "Content-Length", "Connection", "Date", "x-amzn-RequestId", "Access-Control-Allow-Origin", "x-amz-apigw-id", "X-Amzn-Trace-Id", "X-Cache", "Via", "X-Amz-Cf-Pop", "X-Amz-Cf-Id"]}, "status_code": {"type": "integer"}, "type": {"type": "string"}}, "required": ["binary", "body", "headers", "status_code", "type"]}}, "required": ["request", "response"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "MultiPolygon", "coordinates" : [[[[-106.52450949699991, 35.10976455100006], [-106.52450675699987, 35.10894747800004], [-106.52685496299993, 35.10898507000004], [-106.52767958299984, 35.10898318400007], [-106.52825468499991, 35.10898186600004], [-106.53017802299988, 35.10895442400008], [-106.53151499599993, 35.108935180000095], [-106.53312457699988, 35.10894551800006], [-106.5330955839999, 35.110591420000084], [-106.53314571299985, 35.11131015300004], [-106.53317982399992, 35.11198977000005], [-106.53324688899988, 35.113009329000036], [-106.53328312699995, 35.11430303700005], [-106.53328457499988, 35.114721361000115], [-106.53324195099991, 35.11617221100008], [-106.53147636599994, 35.11617632300006], [-106.53060151499993, 35.116178352000055], [-106.5301877059999, 35.11617930900004], [-106.52932883299988, 35.11620739400006], [-106.52845607799986, 35.11621283600007], [-106.52756744899989, 35.1162196820001], [-106.52670856199988, 35.11624534900009], [-106.52454842399993, 35.11625987300005], [-106.52446398099988, 35.1162573120001], [-106.52448862699987, 35.11500640000008], [-106.52449471699994, 35.114703459000054], [-106.52449390699987, 35.11321561700005], [-106.52447042099988, 35.112568602000074], [-106.52449357799992, 35.111995667000095], [-106.52450361899987, 35.11174938800006], [-106.5244987029999, 35.11115590900007], [-106.52450949699991, 35.10976455100006]]]], "properties" : {"id" : "usa-nm-albuquerque-candlemen-neighborhood", "type" : "neighborhood", "name" : "Candlemen", "code" : "270364"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 65429, "cartId" : "1ab1c4f3-6b5f-44ff-bab7-ec508b665eea", "preferredProducts" : [3583, 4258], "productReviews" : [{"productId" : 3136, "reviewText" : "one of my hobbies is gaming. and when i'm gaming this works great.", "reviewDate" : "2019-04-25T23:04:37.0635894+03:00"}, {"productId" : 2386, "reviewText" : "talk about lust!!", "reviewDate" : "2017-10-26T12:48:12.5846451+03:00"}, {"productId" : 4646, "reviewText" : "My neighbor Lonnie has one of these. She works as a hobbit and she says it looks microscopic.", "reviewDate" : "2019-07-01T20:02:15.697314+03:00"}, {"productId" : 2891, "reviewText" : "heard about this on dance-rock radio, decided to give it a try.", "reviewDate" : "2017-02-01T06:20:43.1310253+02:00"}, {"productId" : 707, "reviewText" : "My co-worker Linnie has one of these. He says it looks wide.", "reviewDate" : "2016-07-03T21:37:11.8333953+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": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "171100060404", "variable1" : 0.7616, "variable2" : 0.5402, "variable3" : "A"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "bootstrap": {"type": "string"}, "font-awesome": {"type": "string"}, "jquery": {"type": "string"}}, "required": ["angular", "bootstrap", "font-awesome", "jquery"]}, "devDependencies": {"type": "object", "properties": {"angular-mocks": {"type": "string"}}, "required": ["angular-mocks"]}}, "required": ["name", "version", "private", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "rte-angular", "version" : "0.1.2", "private" : true, "dependencies" : {"angular" : "1.2.21", "bootstrap" : "3.2.0", "font-awesome" : "4.1.0", "jquery" : "1.11.1"}, "devDependencies" : {"angular-mocks" : "1.2.21"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "bootstrap": {"type": "string"}, "font-awesome": {"type": "string"}, "jquery": {"type": "string"}}, "required": ["angular", "bootstrap", "font-awesome", "jquery"]}, "devDependencies": {"type": "object", "properties": {"angular-mocks": {"type": "string"}}, "required": ["angular-mocks"]}}, "required": ["name", "version", "private", "dependencies", "devDependencies"], "$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"}, "keywords": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "frameworks": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "keywords", "description", "repository", "frameworks", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "MultiFuncShield", "keywords" : "Mutli function Shield", "description" : "Allows easy use of multi function shield.", "repository" : {"type" : "", "url" : ""}, "frameworks" : "arduino", "platforms" : ["atmelavr", "teensy"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "keywords": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "frameworks": {"type": "string"}, "platforms": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "keywords", "description", "repository", "frameworks", "platforms"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cSpell.words" : ["ESNEXT", "sourcemap"]}
json_instruct
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"subreddit" : "FUCKYOUINPARTICULAR", "author" : "MsevenP", "count" : 5}
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"name" : "Greene County", "name_long" : "Greene County, GA", "fips" : "13133", "state_code_int" : 13, "state_code_postal" : "GA", "state_code_iso" : "US-GA", "county_code" : 133, "population" : 18324, "countrylevel_id" : "fips:13133", "census_data" : {"COUNTYNS" : "00348672", "AFFGEOID" : "0500000US13133", "LSAD" : "06", "ALAND" : 1004011853, "AWATER" : 48069851}, "center_lat" : 33.58, "center_lon" : -83.17, "area_m2" : 1052081704, "timezone" : "America/New_York"}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-83.406, 33.698], [-83.291, 33.734], [-83.297, 33.739], [-83.28, 33.762], [-83.119, 33.699], [-83.049, 33.716], [-83.015, 33.691], [-82.996, 33.694], [-82.978, 33.68], [-82.964, 33.677], [-82.951, 33.661], [-82.971, 33.642], [-82.98, 33.615], [-82.988, 33.629], [-83.002, 33.62], [-82.99, 33.603], [-83.014, 33.58], [-82.986, 33.52], [-82.986, 33.49], [-83.013, 33.469], [-83.164, 33.355], [-83.17, 33.371], [-83.198, 33.395], [-83.225, 33.38], [-83.213, 33.4], [-83.227, 33.404], [-83.244, 33.399], [-83.24, 33.418], [-83.263, 33.444], [-83.258, 33.457], [-83.275, 33.464], [-83.28, 33.483], [-83.277, 33.494], [-83.284, 33.506], [-83.278, 33.528], [-83.269, 33.533], [-83.287, 33.543], [-83.311, 33.563], [-83.326, 33.584], [-83.347, 33.6], [-83.36, 33.622], [-83.371, 33.656], [-83.384, 33.667], [-83.395, 33.691], [-83.406, 33.698]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "On Bounded Distance Decoding, Unique Shortest Vectors, and the Minimum Distance Problem.", "fields" : ["lattice problem", "open problem", "binary logarithm", "equivalence", "bounded function"], "abstract" : "We prove the equivalence, up to a small polynomial approximation factor $\\sqrt{n/\\log n}$, of the lattice problems uSVP (unique Shortest Vector Problem), BDD (Bounded Distance Decoding) and GapSVP (the decision version of the Shortest Vector Problem). This resolves a long-standing open problem about the relationship between uSVP and the more standard GapSVP, as well the BDD problem commonly used in coding theory. The main cryptographic application of our work is the proof that the Ajtai-Dwork ([2]) and the Regev ([33]) cryptosystems, which were previously only known to be based on the hardness of uSVP, can be equivalently based on the hardness of worst-case GapSVP${_{O({n^{2.5}})}}$ and GapSVP${_{O(n^{2})}}$, respectively. Also, in the case of uSVP and BDD, our connection is very tight, establishing the equivalence (within a small constant approximation factor) between the two most central problems used in lattice based public key cryptography and coding theory.", "citation" : "Citations (109)", "departments" : ["Tel Aviv University", "University of California, San Diego"], "authors" : ["Vadim Lyubashevsky.....http://dblp.org/pers/hd/l/Lyubashevsky:Vadim", "Daniele Micciancio.....http://dblp.org/pers/hd/m/Micciancio:Daniele"], "conf" : "crypto", "year" : "2009", "pages" : 18}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "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" : 404370123, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "cbe6c95396d82897ce4759c1d1fec324", "wof:id" : 404370123, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.78930551448608, 50.75880296247164, 1.85183653846824, 50.78311069213618], "geometry" : {"coordinates" : [[[1.84942123084947, 50.7631855232107], [1.80804179865931, 50.75880296247164], [1.79869794762352, 50.76202439958232], [1.78930551448608, 50.76603433117658], [1.81658794839326, 50.77731600800898], [1.82079722680461, 50.78307192768807], [1.85183653846824, 50.78311069213618], [1.84668320402755, 50.77763426087903], [1.85111702592501, 50.77252456188652], [1.84942123084947, 50.7631855232107]]], "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#"}
The schema below describes a JSON structure. Generate a valid example: {"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" : "24358281", "name" : "Castle Mount", "nodes" : [{"type" : "node", "id" : 264245656, "lat" : 52.0237043, "lon" : -1.1519166}, {"type" : "node", "id" : 264245659, "lat" : 52.0237592, "lon" : -1.151998}, {"type" : "node", "id" : 264245660, "lat" : 52.0236369, "lon" : -1.1519637}], "volunteer_postcode" : "NN13 6BQ", "closest_distance" : 451}
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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "config": {"type": "object", "properties": {"autoConfirm": {"type": "boolean"}, "confirmationFunctionName": {"type": "string"}, "emailConfirmationUrl": {"type": "string"}, "resetFunctionName": {"type": "string"}, "resetPasswordSubject": {"type": "string"}, "resetPasswordUrl": {"type": "string"}, "runConfirmationFunction": {"type": "boolean"}, "runResetFunction": {"type": "boolean"}}, "required": ["autoConfirm", "confirmationFunctionName", "emailConfirmationUrl", "resetFunctionName", "resetPasswordSubject", "resetPasswordUrl", "runConfirmationFunction", "runResetFunction"]}, "disabled": {"type": "boolean"}}, "required": ["id", "name", "type", "config", "disabled"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "5f8026eb41a54eac4113072f", "name" : "local-userpass", "type" : "local-userpass", "config" : {"autoConfirm" : true, "confirmationFunctionName" : "confirmFunc", "emailConfirmationUrl" : "http://realm.io/confirm-user", "resetFunctionName" : "resetFunc", "resetPasswordSubject" : "Reset Password", "resetPasswordUrl" : "http://realm.io/reset-password", "runConfirmationFunction" : false, "runResetFunction" : false}, "disabled" : false}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "config": {"type": "object", "properties": {"autoConfirm": {"type": "boolean"}, "confirmationFunctionName": {"type": "string"}, "emailConfirmationUrl": {"type": "string"}, "resetFunctionName": {"type": "string"}, "resetPasswordSubject": {"type": "string"}, "resetPasswordUrl": {"type": "string"}, "runConfirmationFunction": {"type": "boolean"}, "runResetFunction": {"type": "boolean"}}, "required": ["autoConfirm", "confirmationFunctionName", "emailConfirmationUrl", "resetFunctionName", "resetPasswordSubject", "resetPasswordUrl", "runConfirmationFunction", "runResetFunction"]}, "disabled": {"type": "boolean"}}, "required": ["id", "name", "type", "config", "disabled"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-90.899848, 41.597207], [-90.898373, 41.771392], [-90.786212, 41.771369], [-90.78607, 41.769867], [-90.784727, 41.768585], [-90.777091, 41.76728], [-90.773089, 41.767782], [-90.771136, 41.76554], [-90.76744, 41.765058], [-90.761303, 41.762403], [-90.759626, 41.758813], [-90.756665, 41.758102], [-90.755017, 41.756615], [-90.754744, 41.754603], [-90.752669, 41.752269], [-90.753156, 41.749204], [-90.748926, 41.74415], [-90.746143, 41.743827], [-90.743643, 41.741527], [-90.736152, 41.740574], [-90.735235, 41.73885], [-90.732275, 41.737385], [-90.729743, 41.738427], [-90.728643, 41.739559], [-90.728323, 41.741581], [-90.726187, 41.742314], [-90.722921, 41.73888], [-90.722341, 41.736996], [-90.71996, 41.736843], [-90.713902, 41.734578], [-90.712682, 41.735387], [-90.712514, 41.738843], [-90.711736, 41.739576], [-90.707242, 41.740328], [-90.706258, 41.738515], [-90.703572, 41.737226], [-90.702142, 41.737728], [-90.700902, 41.740262], [-90.697542, 41.743028], [-90.691642, 41.743128], [-90.691106, 41.744069], [-90.691533, 41.746122], [-90.694342, 41.748928], [-90.69314, 41.750642], [-90.68688, 41.752471], [-90.686513, 41.753798], [-90.68749, 41.756222], [-90.686971, 41.756862], [-90.684772, 41.757022], [-90.681749, 41.754552], [-90.678786, 41.754864], [-90.675926, 41.750472], [-90.675055, 41.747577], [-90.675755, 41.649382], [-90.671231, 41.643692], [-90.667648, 41.632887], [-90.666326, 41.632855], [-90.666293, 41.605983], [-90.665043, 41.60374], [-90.671399, 41.603896], [-90.675721, 41.601502], [-90.67677, 41.598583], [-90.676029, 41.591657], [-90.684358, 41.595714], [-90.687307, 41.5964], [-90.899848, 41.597207]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 25628}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"symbol" : "OPIUM_LP_a55e", "name" : "Opium cDAI Junior Tranche", "decimals" : 8, "address" : "0x7a3eb5727e33a8000030718e82481f33bc20c4e3"}
json_instruct
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "us:block/close_distance"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Incremental Learning Framework for Indoor Scene Recognition.", "fields" : ["incremental learning", "artificial intelligence", "artificial neural network", "computation", "machine learning"], "abstract" : "This paper presents a novel framework for online incremental place recognition in an indoor environment. The framework addresses the scenario in which scene images are gradually obtained during long-term operation in the real-world indoor environment. Multiple users may interact with the classification system and confirm either current or past prediction results; the system then immediately updates itself to improve the classification system. This framework is based on the proposed n-value self-organizing and incremental neural network (n-SOINN), which has been derived by modifying the original SOINN to be appropriate for use in scene recognition. The evaluation was performed on the standard MIT 67-category indoor scene dataset and shows that the proposed framework achieves the same accuracy as that of the state-of-the-art offline method, while the computation time of the proposed framework is significantly faster and fully incremental update is allowed. Additionally, a small extra set of training samples is incrementally given to the system to simulate the incremental learning situation. The result shows that the proposed framework can leverage such additional samples and achieve the state-of-the-art result.", "citation" : "Citations (2)", "departments" : ["Chiang Mai University", "Tokyo Institute of Technology", "Tokyo Institute of Technology"], "authors" : ["Aram Kawewong.....http://dblp.org/pers/hd/k/Kawewong:Aram", "Rapeeporn Pimup.....http://dblp.org/pers/hd/p/Pimup:Rapeeporn", "Osamu Hasegawa.....http://dblp.org/pers/hd/h/Hasegawa:Osamu"], "conf" : "aaai", "year" : "2013", "pages" : -1}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"confirmed": {"type": "string"}, "deaths": {"type": "string"}, "recovered": {"type": "string"}}, "required": ["confirmed", "deaths", "recovered"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"confirmed" : "7575", "deaths" : "66", "recovered" : "7155"}
json_instruct
{"type": "object", "properties": {"confirmed": {"type": "string"}, "deaths": {"type": "string"}, "recovered": {"type": "string"}}, "required": ["confirmed", "deaths", "recovered"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Terra.actionHeader.back": {"type": "string"}, "Terra.actionHeader.close": {"type": "string"}, "Terra.actionHeader.maximize": {"type": "string"}, "Terra.actionHeader.minimize": {"type": "string"}, "Terra.actionHeader.next": {"type": "string"}, "Terra.actionHeader.previous": {"type": "string"}}, "required": ["Terra.actionHeader.back", "Terra.actionHeader.close", "Terra.actionHeader.maximize", "Terra.actionHeader.minimize", "Terra.actionHeader.next", "Terra.actionHeader.previous"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Terra.actionHeader.back" : "Terug", "Terra.actionHeader.close" : "Sluiten", "Terra.actionHeader.maximize" : "Maximalisatie", "Terra.actionHeader.minimize" : "Minimaliseren", "Terra.actionHeader.next" : "Volgende", "Terra.actionHeader.previous" : "Vorige"}
json_instruct
{"type": "object", "properties": {"Terra.actionHeader.back": {"type": "string"}, "Terra.actionHeader.close": {"type": "string"}, "Terra.actionHeader.maximize": {"type": "string"}, "Terra.actionHeader.minimize": {"type": "string"}, "Terra.actionHeader.next": {"type": "string"}, "Terra.actionHeader.previous": {"type": "string"}}, "required": ["Terra.actionHeader.back", "Terra.actionHeader.close", "Terra.actionHeader.maximize", "Terra.actionHeader.minimize", "Terra.actionHeader.next", "Terra.actionHeader.previous"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"version": {"type": "string"}, "date": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "category": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "category", "description"]}}}, "required": ["version", "date", "entries"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "2.10.17", "date" : "2019-11-14", "entries" : [{"type" : "feature", "category" : "AWSMarketplace Metering", "description" : "Added CustomerNotEntitledException in MeterUsage API for Container use case."}, {"type" : "feature", "category" : "Amazon Connect Service", "description" : "This release enhances the existing user management APIs and adds 3 new APIs - TagResource, UntagResource, and ListTagsForResource to support tagging Amazon Connect users, which facilitates more granular access controls for Amazon Connect users within an Amazon Connect instance. You can learn more about the new APIs here: https://docs.aws.amazon.com/connect/latest/APIReference/Welcome.html."}, {"type" : "feature", "category" : "Amazon Simple Systems Manager (SSM)", "description" : "Updates support for adding attachments to Systems Manager Automation documents"}, {"type" : "feature", "category" : "Amazon Cognito Identity Provider", "description" : "This release adds a new setting at user pool client to prevent user existence related errors during authentication, confirmation, and password recovery related operations. This release also adds support to enable or disable specific authentication flows for a user pool client."}, {"type" : "feature", "category" : "Amazon Personalize", "description" : "Amazon Personalize: Adds ability to get batch recommendations by creating a batch inference job."}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "date": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "category": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "category", "description"]}}}, "required": ["version", "date", "entries"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[137.875, 29.916666666666668], [137.875, 30.0], [138.0, 30.0], [138.0, 29.916666666666668], [137.875, 29.916666666666668]]]}, "properties" : {"code" : 443777, "url" : "http://madefor.github.io/0410/api/v1/443777.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/443777.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"AppName": {"type": "string"}, "ConfigVersion": {"type": "string"}, "ResourcesExclude": {"type": "string"}, "BuildSettings": {"type": "object", "properties": {"LdFlags": {"type": "string"}, "LdFlagsXVars": {"type": "object", "properties": {"Version": {"type": "string"}}, "required": ["Version"]}}, "required": ["LdFlags", "LdFlagsXVars"]}, "Tasks": {"type": "array", "items": {"type": "string"}}, "TasksExclude": {"type": "array", "items": {"type": "string"}}, "MainDirsExclude": {"type": "string"}, "OutPath": {"type": "string"}}, "required": ["AppName", "ConfigVersion", "ResourcesExclude", "BuildSettings", "Tasks", "TasksExclude", "MainDirsExclude", "OutPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"AppName" : "terragrunt-atlantis-config", "ConfigVersion" : "0.9", "ResourcesExclude" : "LICENSE", "BuildSettings" : {"LdFlags" : "-s", "LdFlagsXVars" : {"Version" : "main.VERSION"}}, "Tasks" : ["interpolate-source", "default"], "TasksExclude" : ["rmbin", "deb", "deb-dev", "downloads-page", "go-vet", "go-test"], "MainDirsExclude" : "./build,./vendor", "OutPath" : "{{.Dest}}{{.PS}}{{.AppName}}{{.PS}}{{.Version}}{{.PS}}{{.ExeName}}_{{.Version}}_{{.Os}}_{{.Arch}}{{.Ext}}"}
json_instruct
{"type": "object", "properties": {"AppName": {"type": "string"}, "ConfigVersion": {"type": "string"}, "ResourcesExclude": {"type": "string"}, "BuildSettings": {"type": "object", "properties": {"LdFlags": {"type": "string"}, "LdFlagsXVars": {"type": "object", "properties": {"Version": {"type": "string"}}, "required": ["Version"]}}, "required": ["LdFlags", "LdFlagsXVars"]}, "Tasks": {"type": "array", "items": {"type": "string"}}, "TasksExclude": {"type": "array", "items": {"type": "string"}}, "MainDirsExclude": {"type": "string"}, "OutPath": {"type": "string"}}, "required": ["AppName", "ConfigVersion", "ResourcesExclude", "BuildSettings", "Tasks", "TasksExclude", "MainDirsExclude", "OutPath"], "$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": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "town", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "f9b9a07d-23ed-4eb1-830b-3e7e9a3566f8", "name" : "Saint Margaret Clitherow, Nottingham", "code" : "D", "address" : {"addressLine1" : "Mildenhall Crescent", "addressLine2" : "Bestwood Park", "town" : "Nottingham", "postcode" : "NG5 5RS"}, "organisation" : {"id" : "2caa774a-cb20-42f6-9c07-6bf03ff53c4d", "code" : "1YD", "name" : "Nottingham Catholic Initial Teacher Training Partnership"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "town", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"station" : [{"pref_cd" : 27, "line_cd" : 99629, "line_name" : "\u962a\u583a\u96fb\u8ecc\u962a\u583a\u7dda", "station_cd" : 9962918, "station_g_cd" : 9962918, "station_name" : "\u9ad8\u9808\u795e\u793e", "lon" : 135.485184, "lat" : 34.590488}]}
json_instruct
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"bootstrap": {"type": "string"}, "vats": {"type": "object", "properties": {"alice": {"type": "object", "properties": {"sourceSpec": {"type": "string"}, "parameters": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["sourceSpec", "parameters"]}, "bob": {"type": "object", "properties": {"sourceSpec": {"type": "string"}, "parameters": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["sourceSpec", "parameters"]}, "bootstrap": {"type": "object", "properties": {"sourceSpec": {"type": "string"}}, "required": ["sourceSpec"]}}, "required": ["alice", "bob", "bootstrap"]}}, "required": ["bootstrap", "vats"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"bootstrap" : "bootstrap", "vats" : {"alice" : {"sourceSpec" : "thingHolder.js", "parameters" : {"name" : "Alice"}}, "bob" : {"sourceSpec" : "thingHolder.js", "parameters" : {"name" : "Bob"}}, "bootstrap" : {"sourceSpec" : "bootstrap.js"}}}
json_instruct
{"type": "object", "properties": {"bootstrap": {"type": "string"}, "vats": {"type": "object", "properties": {"alice": {"type": "object", "properties": {"sourceSpec": {"type": "string"}, "parameters": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["sourceSpec", "parameters"]}, "bob": {"type": "object", "properties": {"sourceSpec": {"type": "string"}, "parameters": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["sourceSpec", "parameters"]}, "bootstrap": {"type": "object", "properties": {"sourceSpec": {"type": "string"}}, "required": ["sourceSpec"]}}, "required": ["alice", "bob", "bootstrap"]}}, "required": ["bootstrap", "vats"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "user_id": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "user_id", "content"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"title" : "Why MVC is so important", "user_id" : "1", "content" : "MVC allows developers to maintain a true separation of concerns, devising their code between the Model layer for data, the View layer for design, and the Controller layer for application logic."}, {"title" : "I'm baby stumptown", "user_id" : "2", "content" : "I'm baby stumptown prism vexillologist crucifix pour-over poutine, copper mug woke cloud bread humblebrag bushwick tilde. Poke slow-carb tumeric, tilde typewriter YOLO kinfolk snackwave palo santo."}, {"title" : "Java vs JavaScript", "user_id" : "3", "content" : "Literally +1 hexagon fam. Flannel stumptown fingerstache, farm-to-table health goth art party swag thundercats cornhole succulents twee. Ennui enamel pin kogi man braid mustache williamsburg."}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "user_id": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "user_id", "content"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"category": {"type": "string"}, "description": {"type": "string"}, "ignore": {"type": "boolean"}, "images": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "redirect_from": {"type": "string"}, "relevant_apis": {"type": "array", "items": {"type": "string"}}, "snippets": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}}, "required": ["category", "description", "ignore", "images", "keywords", "redirect_from", "relevant_apis", "snippets", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"category" : "Routing and Logistics", "description" : "@@TODO: Search and route using data in a map package.", "ignore" : false, "images" : ["mobile-map-search-and-route.png"], "keywords" : ["Routing", "and", "Logistics", "MobileMapPackage", "LocatorTask", "GeoCode", "Route", "NetworkAnalysis", "Callout"], "redirect_from" : "@@TODO: /android/latest/sample-code/mobile-map-search-and-route-.htm", "relevant_apis" : ["MobileMapPackage", "LocatorTask", "GeoCode", "Route", "NetworkAnalysis", "Callout"], "snippets" : ["@@TODO: *** PLEASE VERIFY THE INCLUSION OF THESE SNIPPETS ***", "src/main/java/com/esri/arcgisruntime/sample/mobilemapsearchandroute/MapChooserActivity.java", "src/main/java/com/esri/arcgisruntime/sample/mobilemapsearchandroute/MainActivity.java", "src/main/java/com/esri/arcgisruntime/sample/mobilemapsearchandroute/MapPreview.java"], "title" : "@@TODO: Mobile Map (Search and Route)"}
json_instruct
{"type": "object", "properties": {"category": {"type": "string"}, "description": {"type": "string"}, "ignore": {"type": "boolean"}, "images": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "redirect_from": {"type": "string"}, "relevant_apis": {"type": "array", "items": {"type": "string"}}, "snippets": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}}, "required": ["category", "description", "ignore", "images", "keywords", "redirect_from", "relevant_apis", "snippets", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"DESA": {"type": "string"}, "KODE": {"type": "null"}, "KECAMATAN": {"type": "string"}, "KABUPATEN": {"type": "string"}, "PROPINSI": {"type": "string"}, "STATUS_IDT": {"type": "string"}, "STATUS_KOT": {"type": "string"}, "STATUS_HUK": {"type": "string"}, "SUMBER_AIR": {"type": "integer"}, "IDT_94_95": {"type": "string"}, "IDT_95_96": {"type": "string"}, "KLASIFIKAS": {"type": "string"}, "TERMASUK_D": {"type": "string"}, "LUAS_WILAY": {"type": "integer"}, "SUMBER_PEN": {"type": "string"}, "SUB_SEKTOR": {"type": "string"}, "KEMATIAN_B": {"type": "integer"}, "KEMATIAN": {"type": "integer"}, "BANYAKNYA_": {"type": "integer"}}, "required": ["DESA", "KODE", "KECAMATAN", "KABUPATEN", "PROPINSI", "STATUS_IDT", "STATUS_KOT", "STATUS_HUK", "SUMBER_AIR", "IDT_94_95", "IDT_95_96", "KLASIFIKAS", "TERMASUK_D", "LUAS_WILAY", "SUMBER_PEN", "SUB_SEKTOR", "KEMATIAN_B", "KEMATIAN", "BANYAKNYA_"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "name", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "name" : "desa_gjson", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features" : [{"type" : "Feature", "properties" : {"DESA" : "Kerik", "KODE" : null, "KECAMATAN" : "Takeran", "KABUPATEN" : "Magetan", "PROPINSI" : "Jawa Timu", "STATUS_IDT" : "Non IDT", "STATUS_KOT" : "Desa", "STATUS_HUK" : "Definitif", "SUMBER_AIR" : 4, "IDT_94_95" : "Non IDT", "IDT_95_96" : "Non IDT", "KLASIFIKAS" : "Swasembada", "TERMASUK_D" : "Dataran Rendah", "LUAS_WILAY" : 2063, "SUMBER_PEN" : "Pertanian", "SUB_SEKTOR" : "Tanaman Pangan", "KEMATIAN_B" : 1, "KEMATIAN" : 9, "BANYAKNYA_" : 0}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[111.47321987999999, -7.67468997, 0.0], [111.47144112, -7.67445498, 0.0], [111.46850712, -7.67389401, 0.0], [111.46545216, -7.67327103, 0.0], [111.46087404, -7.67310804, 0.0], [111.45908411999999, -7.67117403, 0.0], [111.456873, -7.66899, 0.0], [111.45406284, -7.66637298, 0.0], [111.453912, -7.66619199, 0.0], [111.45480084, -7.66574901, 0.0], [111.45885983999999, -7.66423899, 0.0], [111.46245407999999, -7.66332702, 0.0], [111.46354812, -7.66323504, 0.0], [111.46579596, -7.66304703, 0.0], [111.46874508, -7.66266903, 0.0], [111.47147711999999, -7.66253097, 0.0], [111.473838, -7.66287, 0.0], [111.475557, -7.66353303, 0.0], [111.47872104, -7.66294704, 0.0], [111.48201792, -7.66166697, 0.0], [111.48446988, -7.66010097, 0.0], [111.48714, -7.65814599, 0.0], [111.48836112, -7.657218, 0.0], [111.48808716, -7.65980298, 0.0], [111.489687, -7.65950499, 0.0], [111.48639911999999, -7.662825, 0.0], [111.48180407999999, -7.66565901, 0.0], [111.47882112, -7.66818504, 0.0], [111.47474808, -7.67247903, 0.0], [111.47321987999999, -7.67468997, 0.0]]]]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"DESA": {"type": "string"}, "KODE": {"type": "null"}, "KECAMATAN": {"type": "string"}, "KABUPATEN": {"type": "string"}, "PROPINSI": {"type": "string"}, "STATUS_IDT": {"type": "string"}, "STATUS_KOT": {"type": "string"}, "STATUS_HUK": {"type": "string"}, "SUMBER_AIR": {"type": "integer"}, "IDT_94_95": {"type": "string"}, "IDT_95_96": {"type": "string"}, "KLASIFIKAS": {"type": "string"}, "TERMASUK_D": {"type": "string"}, "LUAS_WILAY": {"type": "integer"}, "SUMBER_PEN": {"type": "string"}, "SUB_SEKTOR": {"type": "string"}, "KEMATIAN_B": {"type": "integer"}, "KEMATIAN": {"type": "integer"}, "BANYAKNYA_": {"type": "integer"}}, "required": ["DESA", "KODE", "KECAMATAN", "KABUPATEN", "PROPINSI", "STATUS_IDT", "STATUS_KOT", "STATUS_HUK", "SUMBER_AIR", "IDT_94_95", "IDT_95_96", "KLASIFIKAS", "TERMASUK_D", "LUAS_WILAY", "SUMBER_PEN", "SUB_SEKTOR", "KEMATIAN_B", "KEMATIAN", "BANYAKNYA_"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "name", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"<19": {"type": "string"}, "20-29": {"type": "string"}, "30-39": {"type": "string"}, "40-49": {"type": "string"}, "50-59": {"type": "string"}, "60-69": {"type": "string"}, "70-79": {"type": "string"}, "80+": {"type": "string"}}, "required": ["<19", "20-29", "30-39", "40-49", "50-59", "60-69", "70-79", "80+"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"<19" : "0", "20-29" : "5", "30-39" : "20", "40-49" : "29", "50-59" : "98", "60-69" : "180", "70-79" : "199", "80+" : "263"}
json_instruct
{"type": "object", "properties": {"<19": {"type": "string"}, "20-29": {"type": "string"}, "30-39": {"type": "string"}, "40-49": {"type": "string"}, "50-59": {"type": "string"}, "60-69": {"type": "string"}, "70-79": {"type": "string"}, "80+": {"type": "string"}}, "required": ["<19", "20-29", "30-39", "40-49", "50-59", "60-69", "70-79", "80+"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"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" : "Lantenay", "dpt" : "Ain", "inscrits" : 221, "abs" : 34, "votants" : 187, "blancs" : 16, "nuls" : 2, "exp" : 169, "res" : [{"panneau" : "1", "voix" : 93}, {"panneau" : "2", "voix" : 76}]}
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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\uc774\ub984" : "\uc774\uc885\ubc30", "\ud55c\ubb38\uba85" : "\uf9e1\u937e\u57f9", "\uc0dd\ub144\uc6d4\uc77c" : "1957-05-30", "\uc815\ub2f9" : "\uc0c8\ub204\ub9ac\ub2f9", "\uc120\uac70\uad6c" : "\ucda9\ubd81 \ucda9\uc8fc\uc2dc", "\ub2f9\uc120\ud69f\uc218" : "3\uc120", "\ub2f9\uc120\ub300\uc218" : "19, 20, 21"}
json_instruct
{"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 101857533, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "05ab4c56c8af1c13973c4646032737fa", "wof:id" : 101857533, "wof:repo" : "whosonfirst-data-admin-gr"}, "bbox" : [23.35, 40.81667, 23.35, 40.81667], "geometry" : {"coordinates" : [23.35, 40.81667], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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" : "Erre", "dpt" : "Nord", "inscrits" : 1115, "abs" : 251, "votants" : 864, "blancs" : 71, "nuls" : 23, "exp" : 770, "res" : [{"panneau" : "2", "voix" : 427}, {"panneau" : "1", "voix" : 343}]}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "children", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"uuid" : "da7c971d-8ef6-4a72-b9d7-30087decd454", "children" : ["1611d6fc-4154-4a1d-8e06-16475c1d513a"], "befores" : [{"name" : "check_ui", "status" : "passed", "start" : 1555356750513, "stop" : 1555356750513}], "start" : 1555356750513, "stop" : 1555356751720}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "children", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "obeliskmod:block/oak_wood_table"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "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" : "609594380", "name" : "Purbeck Drive", "nodes" : [{"type" : "node", "id" : 5773913442, "lat" : 52.4885307, "lon" : -0.7293379}, {"type" : "node", "id" : 5773913443, "lat" : 52.4886615, "lon" : -0.7284821}, {"type" : "node", "id" : 5773913445, "lat" : 52.4884529, "lon" : -0.7303522}, {"type" : "node", "id" : 5773913448, "lat" : 52.4884641, "lon" : -0.7302032}, {"type" : "node", "id" : 5775509530, "lat" : 52.4885889, "lon" : -0.7291109}, {"type" : "node", "id" : 5775509533, "lat" : 52.4885442, "lon" : -0.7292831}, {"type" : "node", "id" : 5775509536, "lat" : 52.4884661, "lon" : -0.7299285}], "volunteer_postcode" : "NN18 0DY", "closest_distance" : 55}
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}, "Theme": {"type": "string"}, "Author": {"type": "string"}}, "required": ["Name", "Description", "Theme", "Author"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "SwiftUI Lab", "Description" : "A simple swiftui testing facility", "Theme" : "Dark", "Author" : "Ricfified"}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}, "Theme": {"type": "string"}, "Author": {"type": "string"}}, "required": ["Name", "Description", "Theme", "Author"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"text": {"type": "string"}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : "\n\u00a0 \u00a0 \u00a0(a)\u00a0 \u00a0 \u00a0Establishment of Fund. The Recreation and Parks Animal Purchase and Exchange Fund is established as a category six fund to receive funds derived from the sale or exchange of animals at the San Francisco Zoological Gardens, said special fund to be known as the Animal Purchase and Exchange Fund. \n\u00a0 \u00a0 \u00a0(b)\u00a0 \u00a0 \u00a0Use of Fund. Said special fund shall be used solely for expenses necessary for, and incidental to the purchase, sale or exchange of animals for the San Francisco Zoological Gardens, including, but not limited to, the following: \n\u00a0 \u00a0 \u00a0\u00a0 \u00a0 \u00a0(1)\u00a0 \u00a0 \u00a0Administrative expenses other than the payment of salaries to City and County employees and officials;\n\u00a0 \u00a0 \u00a0\u00a0 \u00a0 \u00a0(2)\u00a0 \u00a0 \u00a0Freight or shipping charges;\n\u00a0 \u00a0 \u00a0\u00a0 \u00a0 \u00a0(3)\u00a0 \u00a0 \u00a0Insurance requirements;\n\u00a0 \u00a0 \u00a0\u00a0 \u00a0 \u00a0(4)\u00a0 \u00a0 \u00a0The purchase or construction of crates for transportation;\n\u00a0 \u00a0 \u00a0\u00a0 \u00a0 \u00a0(5)\u00a0 \u00a0 \u00a0Expenses incurred in obtaining any permits, including federal or state permits, or permits from foreign entities;\n\u00a0 \u00a0 \u00a0\u00a0 \u00a0 \u00a0(6)\u00a0 \u00a0 \u00a0Expenses arising when a quarantine of an animal is necessary; and\n\u00a0 \u00a0 \u00a0\u00a0 \u00a0 \u00a0(7)\u00a0 \u00a0 \u00a0The purchase price of animals.\n\u00a0 \u00a0 \u00a0(c)\u00a0 \u00a0 \u00a0Exceptions to Fund Category. All expenditures in excess of $10,000 shall require approval of the Board of Supervisors. \n\u00a0 \u00a0 \u00a0(d)\u00a0 \u00a0 \u00a0Administration of Fund. All expenditures and any remaining balances in the fund shall be reported to the Board of Supervisors each year concurrent with the submission of the budget. \n(Added by Ord. 316-00, File No. 001911, App. 12/28/2000)\n\n", "heading" : {"title" : "10", "chaptersection" : "100-247", "identifier" : "10.100-247", "catch_text" : "RECREATION AND PARKS ANIMAL PURCHASE AND EXCHANGE FUND."}}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "regex": {"type": "string"}, "output": {"type": "string"}, "code": {"type": "integer"}}, "required": ["url", "regex", "output", "code"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"url" : "/none_existing_page_123.aspx", "regex" : "<title>Apache Tomcat/([^\\s]*) Error report</title>", "output" : "%s", "code" : 404}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "regex": {"type": "string"}, "output": {"type": "string"}, "code": {"type": "integer"}}, "required": ["url", "regex", "output", "code"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"_blockType": {"type": "string"}, "_id": {"type": "string"}, "_isa": {"type": "string"}, "blocks": {"type": "array", "items": {"type": "string"}}, "body": {"type": "string"}, "depends": {"type": "array", "items": {"type": "object", "properties": {"[route:_prefix]applicant_solicitor": {"type": "string"}, "![route:_prefix]solicitor-same": {"type": "string"}}, "required": ["[route:_prefix]applicant_solicitor", "![route:_prefix]solicitor-same"]}}, "heading": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["_blockType", "_id", "_isa", "blocks", "body", "depends", "heading", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_blockType" : "Route", "_id" : "route:applicant_solicitor_details", "_isa" : "view:form", "blocks" : ["solicitor_name", "solicitor_firm", "solicitor_address", "solicitor_postcode", "solicitor_phone", "solicitor_fax", "solicitor_dx", "solicitor_reference", "solicitor_fee-account", "solicitor_email"], "body" : "", "depends" : [{"[route:_prefix]applicant_solicitor" : "yes", "![route:_prefix]solicitor-same" : "yes"}], "heading" : "{app:route:_index, select, 1{Your solicitor\u2019s details} other{Details for !route_party_full-name!\u2019s solicitor}}", "title" : "", "url" : "/applicant/solicitor/details"}
json_instruct
{"type": "object", "properties": {"_blockType": {"type": "string"}, "_id": {"type": "string"}, "_isa": {"type": "string"}, "blocks": {"type": "array", "items": {"type": "string"}}, "body": {"type": "string"}, "depends": {"type": "array", "items": {"type": "object", "properties": {"[route:_prefix]applicant_solicitor": {"type": "string"}, "![route:_prefix]solicitor-same": {"type": "string"}}, "required": ["[route:_prefix]applicant_solicitor", "![route:_prefix]solicitor-same"]}}, "heading": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["_blockType", "_id", "_isa", "blocks", "body", "depends", "heading", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "c446a59def0f38735f4a148a9c4b989ed887200d"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"atax_kernel10": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "number"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "number"}, "device_end": {"type": "number"}, "host_queued_end": {"type": "number"}}, "required": ["device_start", "host_queued_start", "device_queued", "device_end", "host_queued_end"]}, "device": {"type": "string"}, "nd_range": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}, "cmdq": {"type": "integer"}, "read": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}}, "required": ["write", "device", "nd_range", "cmdq", "read"]}}, "required": ["atax_kernel10"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"atax_kernel10" : {"write" : {"device_start" : 1586197721.8177183, "host_queued_start" : 1586197804.796249, "device_queued" : 1586197721.817695, "device_end" : 1586197721.8178744, "host_queued_end" : 1586197804.796603}, "device" : "gpu", "nd_range" : {"device_start" : 1586197721.8178825, "device_end" : 1586197721.8179283}, "cmdq" : 0, "read" : {"device_start" : 1586197721.8179357, "device_end" : 1586197721.8179376}}}
json_instruct
{"type": "object", "properties": {"atax_kernel10": {"type": "object", "properties": {"write": {"type": "object", "properties": {"device_start": {"type": "number"}, "host_queued_start": {"type": "number"}, "device_queued": {"type": "number"}, "device_end": {"type": "number"}, "host_queued_end": {"type": "number"}}, "required": ["device_start", "host_queued_start", "device_queued", "device_end", "host_queued_end"]}, "device": {"type": "string"}, "nd_range": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}, "cmdq": {"type": "integer"}, "read": {"type": "object", "properties": {"device_start": {"type": "number"}, "device_end": {"type": "number"}}, "required": ["device_start", "device_end"]}}, "required": ["write", "device", "nd_range", "cmdq", "read"]}}, "required": ["atax_kernel10"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01032317": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01032317"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Topology", "objects" : {"E01032317" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00164815", "LAD11CD" : "E07000237"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00164826", "LAD11CD" : "E07000237"}, "arcs" : [[4, 5, 6, -1]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00164827", "LAD11CD" : "E07000237"}, "arcs" : [[-6, 7, 8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00164828", "LAD11CD" : "E07000237"}, "arcs" : [[-5, -4, 9, 10, -8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00164829", "LAD11CD" : "E07000237"}, "arcs" : [[-10, -3, 11]]}]}}, "arcs" : [[[5247, 4766], [321, -627], [582, 801], [223, -237], [-565, -1033], [232, -447], [560, 533], [735, -64]], [[7335, 3692], [1550, -2552], [-729, -1140], [-3290, 1678]], [[4866, 1678], [-1427, 860], [706, 417], [-591, 1580]], [[3554, 4535], [-101, 297], [352, -1], [698, -576], [744, 511]], [[5247, 4766], [-852, 733], [-601, -155], [84, 649]], [[3878, 5993], [589, 351], [147, 852], [-461, -298], [-571, 967], [-542, -299], [-495, 476]], [[2545, 8042], [529, 713], [-185, 556], [741, 13], [522, -1041], [492, 238], [-106, 500], [515, 157], [214, -495], [4732, 1316], [-119, -349], [-2043, -3738], [-502, -2220]], [[3878, 5993], [-764, 32], [284, -579], [-326, -552], [-475, 205], [60, 420], [-2222, 442]], [[435, 5961], [465, 1371], [596, 382], [-441, 850], [182, 339], [729, -114], [-184, -615], [763, -132]], [[3554, 4535], [-1177, -220], [570, -927], [-621, -611], [404, -448], [-627, -403]], [[2103, 1926], [-1357, -47], [-239, -426], [-507, 1543], [479, 495], [-402, 994], [465, 739], [-107, 737]], [[4866, 1678], [91, -829], [-924, 241], [-230, 448], [-641, -627], [-141, 427], [-1009, 274], [91, 314]]], "transform" : {"scale" : [1.1759986836567538e-06, 7.33098106968763e-07], "translate" : [-2.247663302328955, 52.199317265985236]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01032317": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01032317"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "username": {"type": "string"}, "text": {"type": "string"}, "date": {"type": "string"}, "retweet": {"type": "integer"}, "like": {"type": "integer"}}, "required": ["id", "url", "username", "text", "date", "retweet", "like"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "1099252416703131649", "url" : "https://twitter.com/Meileeyyy/status/1099252416703131649", "username" : "", "text" : "\u0e43\u0e2b\u0e49\u0e01\u0e39\u0e0a\u0e48\u0e27\u0e22\u0e2d\u0e35\u0e01\u0e41\u0e23\u0e07\u0e44\u0e2b\u0e21\u0e40\u0e21\u0e22\u0e4c5555555", "date" : "23-02-2019 17:19", "retweet" : 0, "like" : 0}, {"id" : "1098978654858534914", "url" : "https://twitter.com/Meileeyyy/status/1098978654858534914", "username" : "", "text" : "\u0e42\u0e1b\u0e4a\u0e30\u0e21\u0e32\u0e01\u0e2d\u0e34\u0e14\u0e2d\u0e01 \u0e1e\u0e31\u0e01\u0e01\u0e48\u0e2d\u0e19\u0e19\u0e19\u0e19 #\u0e1f\u0e49\u0e32\u0e23\u0e31\u0e01\u0e1e\u0e48\u0e2d pic.twitter.com/jOxusa6bc2", "date" : "22-02-2019 23:11", "retweet" : 1, "like" : 0}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "username": {"type": "string"}, "text": {"type": "string"}, "date": {"type": "string"}, "retweet": {"type": "integer"}, "like": {"type": "integer"}}, "required": ["id", "url", "username", "text", "date", "retweet", "like"]}, "$schema": "http://json-schema.org/draft-07/schema#"}