input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-postcss": {"type": "string"}, "postcss-bem": {"type": "string"}, "postcss-nested": {"type": "string"}}, "required": ["gulp", "gulp-postcss", "postcss-bem", "postcss-nested"]}}, "required": ["name", "version", "description", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "gulppostcssstarter", "version" : "1.0.0", "description" : "Basic starter project for PostCSS use via Gulp", "author" : "Kezz Bracey", "license" : "MIT", "devDependencies" : {"gulp" : "^3.9.0", "gulp-postcss" : "^6.0.0", "postcss-bem" : "^0.3.0", "postcss-nested" : "^0.3.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-postcss": {"type": "string"}, "postcss-bem": {"type": "string"}, "postcss-nested": {"type": "string"}}, "required": ["gulp", "gulp-postcss", "postcss-bem", "postcss-nested"]}}, "required": ["name", "version", "description", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "Queen", "definitions" : ["(of a woman) behave in an unpleasantly superior way towards (someone)", "Convert (a pawn) into a queen when it reaches the opponent's back rank on the board."], "parts-of-speech" : "Verb"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x674b4f70f3b7b187519bb9a2bb478672454fe8d6b2bf7d92eff048a8f9ef59b0", "parentHash" : "0xac271aced292fcfc9c7f2643feadd3b8d38ebd9ff8b9d1e60254f70812da5543", "number" : 61911, "timestamp" : 1439180227, "nonce" : "0x1aa500ef76dfb063", "difficulty" : 1740358708822, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x47ff6576639c2e94762eA5443978D7681C0E78DC", "extraData" : "0x476574682f76312e302e312f6c696e75782f676f312e342e32", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"format": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["format", "lint", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "type": {"type": "string"}, "exports": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "private": {"type": "boolean"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "mocha": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-config-prettier", "eslint-plugin-import", "mocha", "prettier"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "license", "bugs", "homepage", "type", "exports", "files", "engines", "private", "publishConfig", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@iyowei/not-empty-plain-object", "version" : "1.0.0", "description" : "\u68c0\u67e5\u4f20\u5165\u53c2\u6570\u662f\u4e0d\u662f\u975e\u7a7a\u5bf9\u8c61\u5b57\u9762\u91cf\u3002", "main" : "notEmptyPlainObject.js", "scripts" : {"format" : "npx prettier '**/*.{js,mjs,json,md}' --write --loglevel error", "lint" : "npx eslint \"**/*.js\"", "test" : "npx mocha '**/*.+(spec|test).js' --exclude 'node_modules/**' -p -j 2"}, "repository" : {"type" : "git", "url" : "git+https://github.com/iyowei/not-empty-plain-object.git"}, "keywords" : ["iyowei"], "license" : "MIT", "bugs" : {"url" : "https://github.com/iyowei/not-empty-plain-object/issues"}, "homepage" : "https://github.com/iyowei/not-empty-plain-object#readme", "type" : "module", "exports" : "./notEmptyPlainObject.js", "files" : ["notEmptyPlainObject.js"], "engines" : {"node" : ">=12.20.0"}, "private" : false, "publishConfig" : {"access" : "public"}, "devDependencies" : {"eslint" : "^8.5.0", "eslint-config-airbnb-base" : "^15.0.0", "eslint-config-prettier" : "^8.3.0", "eslint-plugin-import" : "^2.25.3", "mocha" : "^9.1.3", "prettier" : "^2.5.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"format": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["format", "lint", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "type": {"type": "string"}, "exports": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "private": {"type": "boolean"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "mocha": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-config-prettier", "eslint-plugin-import", "mocha", "prettier"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "license", "bugs", "homepage", "type", "exports", "files", "engines", "private", "publishConfig", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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" : [[[-118.122036, 34.134237], [-118.121258, 34.134289], [-118.121353, 34.145968], [-118.098656, 34.146103], [-118.09871, 34.141407], [-118.099789, 34.141399], [-118.099784, 34.140672], [-118.100511, 34.140667], [-118.100517, 34.141422], [-118.106158, 34.141551], [-118.106151, 34.140818], [-118.108184, 34.140806], [-118.108202, 34.141552], [-118.11003, 34.141542], [-118.110023, 34.13686], [-118.114017, 34.136859], [-118.113827, 34.132941], [-118.121693, 34.132021], [-118.122036, 34.134237]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 10391}}]}
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 a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"abstract": {"type": "string"}, "author": {"type": "array", "items": {"type": "string"}}, "dynamic_config": {"type": "integer"}, "generated_by": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}, "meta-spec": {"type": "object", "properties": {"url": {"type": "string"}, "version": {"type": "integer"}}, "required": ["url", "version"]}, "name": {"type": "string"}, "no_index": {"type": "object", "properties": {"directory": {"type": "array", "items": {"type": "string"}}}, "required": ["directory"]}, "prereqs": {"type": "object", "properties": {"configure": {"type": "object", "properties": {"requires": {"type": "object", "properties": {"Module::Build::Tiny": {"type": "string"}}, "required": ["Module::Build::Tiny"]}}, "required": ["requires"]}, "develop": {"type": "object", "properties": {"requires": {"type": "object", "properties": {"Dist::Milla": {"type": "string"}, "Test::Pod": {"type": "string"}}, "required": ["Dist::Milla", "Test::Pod"]}}, "required": ["requires"]}, "runtime": {"type": "object", "properties": {"requires": {"type": "object", "properties": {"perl": {"type": "string"}}, "required": ["perl"]}}, "required": ["requires"]}, "test": {"type": "object", "properties": {"requires": {"type": "object", "properties": {"Test::More": {"type": "string"}}, "required": ["Test::More"]}}, "required": ["requires"]}}, "required": ["configure", "develop", "runtime", "test"]}, "release_status": {"type": "string"}, "version": {"type": "string"}, "x_contributors": {"type": "array", "items": {"type": "string"}}}, "required": ["abstract", "author", "dynamic_config", "generated_by", "license", "meta-spec", "name", "no_index", "prereqs", "release_status", "version", "x_contributors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"abstract" : "Gamification Of Shared Housekeeping", "author" : ["Flavio Poletti <[email protected]>"], "dynamic_config" : 0, "generated_by" : "Dist::Zilla version 5.039, Dist::Milla version v1.0.15, CPAN::Meta::Converter version 2.150005", "license" : ["artistic_2"], "meta-spec" : {"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", "version" : 2}, "name" : "Gosh", "no_index" : {"directory" : ["t", "xt", "inc", "share", "eg", "examples"]}, "prereqs" : {"configure" : {"requires" : {"Module::Build::Tiny" : "0.019"}}, "develop" : {"requires" : {"Dist::Milla" : "v1.0.15", "Test::Pod" : "1.41"}}, "runtime" : {"requires" : {"perl" : "5.018001"}}, "test" : {"requires" : {"Test::More" : "0.96"}}}, "release_status" : "stable", "version" : "0.01", "x_contributors" : ["Flavio Poletti <[email protected]>"]}
json_instruct
{"type": "object", "properties": {"abstract": {"type": "string"}, "author": {"type": "array", "items": {"type": "string"}}, "dynamic_config": {"type": "integer"}, "generated_by": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}, "meta-spec": {"type": "object", "properties": {"url": {"type": "string"}, "version": {"type": "integer"}}, "required": ["url", "version"]}, "name": {"type": "string"}, "no_index": {"type": "object", "properties": {"directory": {"type": "array", "items": {"type": "string"}}}, "required": ["directory"]}, "prereqs": {"type": "object", "properties": {"configure": {"type": "object", "properties": {"requires": {"type": "object", "properties": {"Module::Build::Tiny": {"type": "string"}}, "required": ["Module::Build::Tiny"]}}, "required": ["requires"]}, "develop": {"type": "object", "properties": {"requires": {"type": "object", "properties": {"Dist::Milla": {"type": "string"}, "Test::Pod": {"type": "string"}}, "required": ["Dist::Milla", "Test::Pod"]}}, "required": ["requires"]}, "runtime": {"type": "object", "properties": {"requires": {"type": "object", "properties": {"perl": {"type": "string"}}, "required": ["perl"]}}, "required": ["requires"]}, "test": {"type": "object", "properties": {"requires": {"type": "object", "properties": {"Test::More": {"type": "string"}}, "required": ["Test::More"]}}, "required": ["requires"]}}, "required": ["configure", "develop", "runtime", "test"]}, "release_status": {"type": "string"}, "version": {"type": "string"}, "x_contributors": {"type": "array", "items": {"type": "string"}}}, "required": ["abstract", "author", "dynamic_config", "generated_by", "license", "meta-spec", "name", "no_index", "prereqs", "release_status", "version", "x_contributors"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Click model-based information retrieval metrics.", "fields" : ["data mining", "interleaving", "user modeling", "computer science", "information retrieval"], "abstract" : "In recent years many models have been proposed that are aimed at predicting clicks of web search users. In addition, some information retrieval evaluation metrics have been built on top of a user model. In this paper we bring these two directions together and propose a common approach to converting any click model into an evaluation metric. We then put the resulting model-based metrics as well as traditional metrics (like DCG or Precision) into a common evaluation framework and compare them along a number of dimensions. One of the dimensions we are particularly interested in is the agreement between offline and online experimental outcomes. It is widely believed, especially in an industrial setting, that online A/B-testing and interleaving experiments are generally better at capturing system quality than offline measurements. We show that offline metrics that are based on click models are more strongly correlated with online experimental outcomes than traditional offline metrics, especially in situations when we have incomplete relevance judgements.", "citation" : "Citations (35)", "departments" : ["University of Amsterdam", "Yandex", "University of Amsterdam"], "authors" : ["Aleksandr Chuklin.....http://dblp.org/pers/hd/c/Chuklin:Aleksandr", "Pavel Serdyukov.....http://dblp.org/pers/hd/s/Serdyukov:Pavel", "Maarten de Rijke.....http://dblp.org/pers/hd/r/Rijke:Maarten_de"], "conf" : "sigir", "year" : "2013", "pages" : 10}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "odoo-addons", "description" : "DEPRECEATED, see README", "license" : {"key" : "agpl-3.0", "name" : "GNU Affero General Public License v3.0", "spdx_id" : "AGPL-3.0", "url" : "https://api.github.com/licenses/agpl-3.0"}, "starNum" : 69, "folkNum" : 142, "watchNum" : 69, "topic" : []}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum", "folkNum", "watchNum", "topic"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "Verge", "definitions" : ["An edge or border.", "A grass edging such as that by the side of a road or path.", "An edge of tiles projecting over a gable.", "An extreme limit beyond which something specified will happen."], "parts-of-speech" : "Noun"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "chart.js": {"type": "string"}, "faker": {"type": "string"}, "http": {"type": "string"}, "hyperquest": {"type": "string"}, "jquery": {"type": "string"}, "request": {"type": "string"}, "saucelabs": {"type": "string"}, "vue-chartjs": {"type": "string"}}, "required": ["axios", "chart.js", "faker", "http", "hyperquest", "jquery", "request", "saucelabs", "vue-chartjs"]}}, "required": ["name", "version", "description", "repository", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "analytics-and-rest-api-examples", "version" : "1.0.0", "description" : "exercises for workshop", "repository" : "https://github.com/spider-sauce/analytics-and-rest-api-example.git", "main" : "index.js", "scripts" : {"test" : "npm test"}, "author" : "James Tacker", "license" : "ISC", "dependencies" : {"axios" : "^0.19.2", "chart.js" : "^2.9.3", "faker" : "^4.1.0", "http" : "^0.0.0", "hyperquest" : "^2.1.3", "jquery" : "^3.4.1", "request" : "^2.88.2", "saucelabs" : "^3.0.1", "vue-chartjs" : "^3.5.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "chart.js": {"type": "string"}, "faker": {"type": "string"}, "http": {"type": "string"}, "hyperquest": {"type": "string"}, "jquery": {"type": "string"}, "request": {"type": "string"}, "saucelabs": {"type": "string"}, "vue-chartjs": {"type": "string"}}, "required": ["axios", "chart.js", "faker", "http", "hyperquest", "jquery", "request", "saucelabs", "vue-chartjs"]}}, "required": ["name", "version", "description", "repository", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "building": {"type": "string"}, "contact:phone": {"type": "string"}, "contact:website": {"type": "string"}, "name": {"type": "string"}, "shop": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:country", "addr:housenumber", "addr:postcode", "addr:street", "building", "contact:phone", "contact:website", "name", "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/235368286", "properties" : {"addr:city" : "Dornbirn", "addr:country" : "AT", "addr:housenumber" : "44", "addr:postcode" : "6850", "addr:street" : "Lange M\u00e4hder", "building" : "yes", "contact:phone" : "0664 4009488", "contact:website" : "http://www.bluamahof.at", "name" : "Bluamahof", "shop" : "farm", "id" : "way/235368286"}, "geometry" : {"type" : "Point", "coordinates" : [9.7152463, 47.4053115]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "building": {"type": "string"}, "contact:phone": {"type": "string"}, "contact:website": {"type": "string"}, "name": {"type": "string"}, "shop": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:country", "addr:housenumber", "addr:postcode", "addr:street", "building", "contact:phone", "contact:website", "name", "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": {"dependencies1": {"type": "object", "properties": {"name": {"type": "string"}, "credit_card": {"type": "integer"}}, "required": ["name", "credit_card"]}, "dependencies2": {"type": "object", "properties": {"name": {"type": "string"}, "credit_card": {"type": "integer"}}, "required": ["name", "credit_card"]}}, "required": ["dependencies1", "dependencies2"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dependencies1" : {"name" : "John Doe", "credit_card" : 5555555555555555}, "dependencies2" : {"name" : "John Doe", "credit_card" : 5555555555555555}}
json_instruct
{"type": "object", "properties": {"dependencies1": {"type": "object", "properties": {"name": {"type": "string"}, "credit_card": {"type": "integer"}}, "required": ["name", "credit_card"]}, "dependencies2": {"type": "object", "properties": {"name": {"type": "string"}, "credit_card": {"type": "integer"}}, "required": ["name", "credit_card"]}}, "required": ["dependencies1", "dependencies2"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "MathJax", "description" : "A Javascript framework for displaying LaTeX/MathML.", "url" : "https://www.mathjax.org/"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "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"}, "pandaPackage": {"type": "boolean"}, "main": {"type": "string"}}, "required": ["name", "pandaPackage", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "test-package-3", "pandaPackage" : true, "main" : "main.js"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "pandaPackage": {"type": "boolean"}, "main": {"type": "string"}}, "required": ["name", "pandaPackage", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"posts": {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {"excerpt": {"type": "string"}, "timeToRead": {"type": "integer"}, "frontmatter": {"type": "object", "properties": {"title": {"type": "string"}, "date": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "path": {"type": "string"}}, "required": ["title", "date", "tags", "path"]}}, "required": ["excerpt", "timeToRead", "frontmatter"]}}, "required": ["node"]}}}, "required": ["edges"]}, "categories": {"type": "object", "properties": {"group": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}}, "required": ["group"]}}, "required": ["posts", "categories"]}, "pageContext": {"type": "object", "properties": {"category": {"type": "string"}, "skip": {"type": "integer"}, "limit": {"type": "integer"}, "currentPage": {"type": "integer"}, "humanPageNumber": {"type": "integer"}, "numberOfPages": {"type": "integer"}}, "required": ["category", "skip", "limit", "currentPage", "humanPageNumber", "numberOfPages"]}}, "required": ["data", "pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"componentChunkName" : "component---src-components-module-blog-posts-category-index-jsx", "path" : "/blog/category/productivity", "result" : {"data" : {"posts" : {"edges" : [{"node" : {"excerpt" : "We can configure aliases very easily in bash or zsh. but those aliases are global to all directory. sometimes we need aliases or commands\u2026", "timeToRead" : 2, "frontmatter" : {"title" : "Local aliases using zen aliases", "date" : "2021-02-05T19:22:59.656Z", "tags" : ["cmdline", "zsh", "bash"], "path" : "zen-alias"}}}, {"node" : {"excerpt" : "Remembering the branches and all the available commands are daunting work in git. what if the commands auto-completes itself like shown in\u2026", "timeToRead" : 1, "frontmatter" : {"title" : "Git autocompletion", "date" : "2020-11-08T12:30:34.813Z", "tags" : ["git", "cmdline"], "path" : "git-autocompletion"}}}]}, "categories" : {"group" : [{"name" : "android", "count" : 1}, {"name" : "cmdline", "count" : 4}, {"name" : "database", "count" : 1}, {"name" : "java", "count" : 2}, {"name" : "personal", "count" : 1}, {"name" : "personal projects", "count" : 1}, {"name" : "productivity", "count" : 2}, {"name" : "programming", "count" : 5}, {"name" : "tools", "count" : 3}]}}, "pageContext" : {"category" : "productivity", "skip" : 0, "limit" : 5, "currentPage" : 1, "humanPageNumber" : 1, "numberOfPages" : 1}}, "staticQueryHashes" : ["3128451518"]}
json_instruct
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"posts": {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {"excerpt": {"type": "string"}, "timeToRead": {"type": "integer"}, "frontmatter": {"type": "object", "properties": {"title": {"type": "string"}, "date": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "path": {"type": "string"}}, "required": ["title", "date", "tags", "path"]}}, "required": ["excerpt", "timeToRead", "frontmatter"]}}, "required": ["node"]}}}, "required": ["edges"]}, "categories": {"type": "object", "properties": {"group": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}}, "required": ["group"]}}, "required": ["posts", "categories"]}, "pageContext": {"type": "object", "properties": {"category": {"type": "string"}, "skip": {"type": "integer"}, "limit": {"type": "integer"}, "currentPage": {"type": "integer"}, "humanPageNumber": {"type": "integer"}, "numberOfPages": {"type": "integer"}}, "required": ["category", "skip", "limit", "currentPage", "humanPageNumber", "numberOfPages"]}}, "required": ["data", "pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "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" : [[[124.0, 39.166666666666664], [124.0, 39.25], [124.125, 39.25], [124.125, 39.166666666666664], [124.0, 39.166666666666664]]]}, "properties" : {"code" : 582460, "url" : "http://madefor.github.io/0410/api/v1/582460.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/582460.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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 9409050011, "parent" : 9409050, "name" : "PARAI", "latitude" : null, "longitude" : null, "postal" : [98119, 98529], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x0732f3885c45d9be4c18f9607809cfc7b134a3ff5e45c100a8addae644ebc49c", "parentHash" : "0x1071ef8a0034343613c214f5f295e532936e7d1710f4c61b5f336cbf6f95bfc6", "number" : 74651, "timestamp" : 1439389845, "nonce" : "0x798d529d0ff6c362", "difficulty" : 2203125923509, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xA21Ba94e45f0E168dA824fC67aC9cb5Cb577a8aF", "extraData" : "0x", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"stats": {"type": "string"}, "videos": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "env_info": {"type": "object", "properties": {"gym_version": {"type": "string"}, "env_id": {"type": "string"}}, "required": ["gym_version", "env_id"]}}, "required": ["stats", "videos", "env_info"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"stats" : "openaigym.episode_batch.1.11404.stats.json", "videos" : [["openaigym.video.1.11404.video000000.mp4", "openaigym.video.1.11404.video000000.meta.json"], ["openaigym.video.1.11404.video000001.mp4", "openaigym.video.1.11404.video000001.meta.json"], ["openaigym.video.1.11404.video000008.mp4", "openaigym.video.1.11404.video000008.meta.json"]], "env_info" : {"gym_version" : "0.17.2", "env_id" : "KungFuMasterDeterministic-v0"}}
json_instruct
{"type": "object", "properties": {"stats": {"type": "string"}, "videos": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "env_info": {"type": "object", "properties": {"gym_version": {"type": "string"}, "env_id": {"type": "string"}}, "required": ["gym_version", "env_id"]}}, "required": ["stats", "videos", "env_info"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Show the currently active product filters. Works in combination with the All Products and filters blocks.": {"type": "array", "items": {"type": "string"}}, "Active Product Filters": {"type": "array", "items": {"type": "string"}}, "Active filters": {"type": "array", "items": {"type": "string"}}, "WooCommerce": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Show the currently active product filters. Works in combination with the All Products and filters blocks.", "Active Product Filters", "Active filters", "WooCommerce"]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"translation-revision-date" : "2021-03-10 19:48:00+0000", "generator" : "GlotPress/3.0.0-alpha.2", "domain" : "messages", "locale_data" : {"messages" : {"" : {"domain" : "messages", "plural-forms" : "nplurals=3; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);", "lang" : "ru"}, "Show the currently active product filters. Works in combination with the All Products and filters blocks." : ["\u0421\u043f\u0438\u0441\u043e\u043a \u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0445 \u0444\u0438\u043b\u044c\u0442\u0440\u043e\u0432 \u0442\u043e\u0432\u0430\u0440\u043e\u0432. \u042d\u0442\u0430 \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0441 \u0431\u043b\u043e\u043a\u0430\u043c\u0438 \u0444\u0438\u043b\u044c\u0442\u0440\u043e\u0432 \u0438 \"\u0412\u0441\u0435 \u0442\u043e\u0432\u0430\u0440\u044b\"."], "Active Product Filters" : ["\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u0444\u0438\u043b\u044c\u0442\u0440\u044b \u0442\u043e\u0432\u0430\u0440\u043e\u0432"], "Active filters" : ["\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u0444\u0438\u043b\u044c\u0442\u0440\u044b"], "WooCommerce" : ["WooCommerce"]}}, "comment" : {"reference" : "packages/woocommerce-blocks/assets/js/blocks/active-filters/index.js"}}
json_instruct
{"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Show the currently active product filters. Works in combination with the All Products and filters blocks.": {"type": "array", "items": {"type": "string"}}, "Active Product Filters": {"type": "array", "items": {"type": "string"}}, "Active filters": {"type": "array", "items": {"type": "string"}}, "WooCommerce": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Show the currently active product filters. Works in combination with the All Products and filters blocks.", "Active Product Filters", "Active filters", "WooCommerce"]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"header": {"type": "string"}, "headerText": {"type": "string"}, "components": {"type": "array", "items": {"type": "string"}}, "examples": {"type": "object", "properties": {"contextual": {"type": "object", "properties": {"header": {"type": "string"}}, "required": ["header"]}, "closable": {"type": "object", "properties": {"header": {"type": "string"}, "desc": {"type": "string"}}, "required": ["header", "desc"]}, "icon": {"type": "object", "properties": {"header": {"type": "string"}, "desc": {"type": "string"}}, "required": ["header", "desc"]}, "transition": {"type": "object", "properties": {"header": {"type": "string"}, "desc": {"type": "string"}}, "required": ["header", "desc"]}, "outline": {"type": "object", "properties": {"header": {"type": "string"}, "desc": {"type": "string"}}, "required": ["header", "desc"]}}, "required": ["contextual", "closable", "icon", "transition", "outline"]}, "props": {"type": "object", "properties": {"dismissible": {"type": "string"}, "icon": {"type": "string"}, "outline": {"type": "string"}, "type": {"type": "string"}}, "required": ["dismissible", "icon", "outline", "type"]}}, "required": ["header", "headerText", "components", "examples", "props"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"header" : "\uacbd\uace0\ucc3d (Alert)", "headerText" : "`v-alert` \ucef4\ud3ec\ub10c\ud2b8 \uc911\uc694\ud55c \uc815\ubcf4\ub97c \uc720\uc800\uc5d0\uac8c \uc804\ud558\ub294\ub370 \uc4f0\uc785\ub2c8\ub2e4. \ub2e4\uc74c\uc758 4\uac00\uc9c0 \uc885\ub958\uac00 \uc788\uc2b5\ub2c8\ub2e4; **success**, **info**, **warning** \uadf8\ub9ac\uace0 **error**. \uae30\ubcf8 \uc544\uc774\ucf58\uc740 \uac01\uae30 \ub2e4\ub978 \ub3d9\uc791(Action)\uc744 \ub098\ud0c0\ub0b4\uace0, \ubc14\uafc0 \uc218 \uc788\uc2b5\ub2c8\ub2e4.", "components" : ["v-alert"], "examples" : {"contextual" : {"header" : "Contextual"}, "closable" : {"header" : "\ub2eb\uae30 (Closable)", "desc" : "`v-model`\uc744 \uc0ac\uc6a9\ud558\uc5ec \uacbd\uace0\ucc3d(Alert)\uc758 \uc0c1\ud0dc(state)\uc744 \uc870\uc808\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub9cc\uc57d `v-model`\uc744 \uc124\uc815\ud558\uc9c0 \uc54a\uace0 \ub2e8\uc9c0 \uacbd\uace0\ucc3d\uc744 \ubcf4\uc5ec\uc8fc\uae30\ub9cc \uc6d0\ud55c\ub2e4\uba74, \ub2e8\uc21c\ud558\uac8c `value` prop \uc744 \uc124\uc815\ud558\uc138\uc694. (\uc5ed\uc8fc: `v-model`\uc740 \ub0b4\ubd80\uc801\uc73c\ub85c `value` prop\uc744 \uc0ac\uc6a9\ud569\ub2c8\ub2e4.)"}, "icon" : {"header" : "\ucee4\uc2a4\ud140 \uc544\uc774\ucf58 \ub610\ub294 \uc544\uc774\ucf58 \uc5c6\uc560\uae30 (Custom Icon / No Icon)", "desc" : "\uc27d\uac8c \uc544\uc774\ucf58\uc744 \ubcc0\uacbd\ud558\uac70\ub098 \uc544\uc608 \uc5c6\uc568 \uc218 \uc788\uc2b5\ub2c8\ub2e4."}, "transition" : {"header" : "\ub514\uc2a4\ud50c\ub808\uc774 \ud2b8\ub79c\uc9c0\uc158 (Display transition)", "desc" : "\uacbd\uace0\ucc3d\uc744 \ubcf4\uc5ec\uc8fc\uac70\ub098 \uc228\uae38 \ub54c \ucee4\uc2a4\ud140 \ud2b8\ub79c\uc9c0\uc158\uc744 \uc801\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4."}, "outline" : {"header" : "\ud14c\ub450\ub9ac \uac15\uc870 (Outline)", "desc" : "\ud14c\ub450\ub9ac\uac00 \uac15\uc870\ub41c \uacbd\uace0\ucc3d(Outline Alert)\uc758 \ud14c\ub450\ub9ac(Border) \uc0c9\uc740 \ud604\uc7ac \uc801\uc6a9\ub41c \uc0c9\uc0c1\uc73c\ub85c \ubd80\ud130 \uc0c1\uc18d\ub429\ub2c8\ub2e4."}}, "props" : {"dismissible" : "Specifies that the Alert can be closed", "icon" : "Designates a specific icon", "outline" : "Alert will have an outline", "type" : "Specify a **success**, **info**, **warning** or **error** alert. Uses the contextual color and a pre-defined icon."}}
json_instruct
{"type": "object", "properties": {"header": {"type": "string"}, "headerText": {"type": "string"}, "components": {"type": "array", "items": {"type": "string"}}, "examples": {"type": "object", "properties": {"contextual": {"type": "object", "properties": {"header": {"type": "string"}}, "required": ["header"]}, "closable": {"type": "object", "properties": {"header": {"type": "string"}, "desc": {"type": "string"}}, "required": ["header", "desc"]}, "icon": {"type": "object", "properties": {"header": {"type": "string"}, "desc": {"type": "string"}}, "required": ["header", "desc"]}, "transition": {"type": "object", "properties": {"header": {"type": "string"}, "desc": {"type": "string"}}, "required": ["header", "desc"]}, "outline": {"type": "object", "properties": {"header": {"type": "string"}, "desc": {"type": "string"}}, "required": ["header", "desc"]}}, "required": ["contextual", "closable", "icon", "transition", "outline"]}, "props": {"type": "object", "properties": {"dismissible": {"type": "string"}, "icon": {"type": "string"}, "outline": {"type": "string"}, "type": {"type": "string"}}, "required": ["dismissible", "icon", "outline", "type"]}}, "required": ["header", "headerText", "components", "examples", "props"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subchapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "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", "historical", "credits", "sections", "division", "title", "chapter", "subchapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : "Except as otherwise provided by \u00a7 29-106.02 or by law other than this title, the Mayor may deliver any record to a person by delivering it to the person that submitted it, to the address of the person's registered agent, to the principal office address of the person, or to another address the person provides to the Mayor for delivery.", "historical" : "Legislative History of Laws\n\nFor history of Law 18-378, see notes under \u00a7 29-101.01.\n\nDC CODE \u00a7 29-102.10\n\nCurrent through December 11, 2012", "credits" : "(July 2, 2011, D.C. Law 18-378, \u00a7 2, 58 DCR 1720.)", "sections" : [], "division" : {"identifier" : "V", "text" : "Local Business Affairs"}, "title" : {"identifier" : "29", "text" : "Business Organizations. (Refs & Annos)"}, "chapter" : {"identifier" : "1", "text" : "General Provisions."}, "subchapter" : {"identifier" : "II", "text" : "Filing."}, "heading" : {"title" : "29", "chaptersection" : "102", "identifier" : "29-102.10", "catch_text" : "Delivery by Mayor."}}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subchapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "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", "historical", "credits", "sections", "division", "title", "chapter", "subchapter", "heading"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Danoli3": {"type": "string"}}, "required": ["Danoli3"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "ios": {"type": "object", "properties": {"source_files": {"type": "string"}, "header_mappings_dir": {"type": "string"}, "public_header_files": {"type": "string"}, "preserve_paths": {"type": "array", "items": {"type": "string"}}, "vendored_libraries": {"type": "string"}}, "required": ["source_files", "header_mappings_dir", "public_header_files", "preserve_paths", "vendored_libraries"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "requires_arc", "ios"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ofxiOSBoost", "version" : "1.60.0", "summary" : "Boost C++ library", "description" : "Boost is the library that can (and should) be used to ease c++ development.", "homepage" : "http://www.boost.org", "license" : "Boost", "authors" : {"Danoli3" : "[email protected]"}, "source" : {"git" : "https://github.com/danoli3/ofxiOSBoost.git", "tag" : "1.60.0"}, "platforms" : {"ios" : "8.0"}, "requires_arc" : false, "ios" : {"source_files" : "libs/boost/include/**/*.{h,hpp,ipp}", "header_mappings_dir" : "libs/boost/include", "public_header_files" : "libs/boost/include/**/*.{h,hpp,ipp}", "preserve_paths" : ["libs/boost/include/**/*.{h,hpp,ipp}", "libs/boost/ios/**/*.a"], "vendored_libraries" : "libs/boost/ios/**/*.a"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Danoli3": {"type": "string"}}, "required": ["Danoli3"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "ios": {"type": "object", "properties": {"source_files": {"type": "string"}, "header_mappings_dir": {"type": "string"}, "public_header_files": {"type": "string"}, "preserve_paths": {"type": "array", "items": {"type": "string"}}, "vendored_libraries": {"type": "string"}}, "required": ["source_files", "header_mappings_dir", "public_header_files", "preserve_paths", "vendored_libraries"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "requires_arc", "ios"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 10253, "cartId" : "dd4b52c6-e250-4552-b5c0-0e977fb45e17", "preferredProducts" : [108, 1189, 2813, 2425, 3173, 3355], "productReviews" : [{"productId" : 1768, "reviewText" : "I saw one of these in Comoros and I bought one.", "reviewDate" : "2017-07-19T06:12:15.1319884+03:00"}, {"productId" : 3247, "reviewText" : "I saw one of these in Moldova and I bought one.", "reviewDate" : "2019-06-20T18:31:37.783165+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"transport": {"type": "string"}, "kernel_name": {"type": "string"}, "shell_port": {"type": "integer"}, "stdin_port": {"type": "integer"}, "signature_scheme": {"type": "string"}, "hb_port": {"type": "integer"}, "control_port": {"type": "integer"}, "ip": {"type": "string"}, "iopub_port": {"type": "integer"}, "key": {"type": "string"}}, "required": ["transport", "kernel_name", "shell_port", "stdin_port", "signature_scheme", "hb_port", "control_port", "ip", "iopub_port", "key"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"transport" : "tcp", "kernel_name" : "", "shell_port" : 55731, "stdin_port" : 55733, "signature_scheme" : "hmac-sha256", "hb_port" : 55735, "control_port" : 55734, "ip" : "127.0.0.1", "iopub_port" : 55732, "key" : "d84155fd-5383-4ae6-bec1-c59d978e2b0d"}
json_instruct
{"type": "object", "properties": {"transport": {"type": "string"}, "kernel_name": {"type": "string"}, "shell_port": {"type": "integer"}, "stdin_port": {"type": "integer"}, "signature_scheme": {"type": "string"}, "hb_port": {"type": "integer"}, "control_port": {"type": "integer"}, "ip": {"type": "string"}, "iopub_port": {"type": "integer"}, "key": {"type": "string"}}, "required": ["transport", "kernel_name", "shell_port", "stdin_port", "signature_scheme", "hb_port", "control_port", "ip", "iopub_port", "key"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"sn12.82:1.1": {"type": "string"}}, "required": ["sn12.82:1.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"sn12.82:1.1" : "bj14.204, cck16.124, csp1ed12.350, csp2ed12.350, dr16.159, ms12S2_570, msdiv73, sya16.160, vri24.115"}
json_instruct
{"type": "object", "properties": {"sn12.82:1.1": {"type": "string"}}, "required": ["sn12.82:1.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "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" : [[[135.875, 25.0], [135.875, 25.083333333333332], [136.0, 25.083333333333332], [136.0, 25.0], [135.875, 25.0]]]}, "properties" : {"code" : 373547, "url" : "http://madefor.github.io/0410/api/v1/373547.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/373547.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#"}
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" : "minecraft:block/gray_concrete_stairs"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "39f4b84e6e636f914456571fbd478d2a99838384"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "outputs": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"inputs" : [["3", "6", "1 2 3 4 5 6", "3", "2 3 4", "6", "22 5 6 33 1 4", "2", "4 15", "4", "1 3 4 2", "2", "1 2"]], "outputs" : [["Yes", "No", "Yes"]]}
json_instruct
{"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "outputs": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"testName": {"type": "string"}, "hello": {"type": "string"}, "helloDom": {"type": "string"}, "linked": {"type": "string"}}, "required": ["testName", "hello", "helloDom", "linked"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"testName" : "test", "hello" : "hello: '{msg} world'", "helloDom" : "hello: '%{msg} world'", "linked" : "@testName"}
json_instruct
{"type": "object", "properties": {"testName": {"type": "string"}, "hello": {"type": "string"}, "helloDom": {"type": "string"}, "linked": {"type": "string"}}, "required": ["testName", "hello", "helloDom", "linked"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"author": {"type": "string"}, "author_email": {"type": "string"}, "project_title": {"type": "string"}, "project_name": {"type": "string"}, "project_slug": {"type": "string"}, "project_short_description": {"type": "string"}, "version": {"type": "string"}, "python_version": {"type": "array", "items": {"type": "string"}}, "run_git_init": {"type": "string"}, "run_pipenv_install": {"type": "string"}, "install_pre_commit_hooks": {"type": "string"}}, "required": ["author", "author_email", "project_title", "project_name", "project_slug", "project_short_description", "version", "python_version", "run_git_init", "run_pipenv_install", "install_pre_commit_hooks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "Author", "author_email" : "[email protected]", "project_title" : "Python Project", "project_name" : "{{ cookiecutter.project_title.lower().replace(' ', '-') }}", "project_slug" : "{{ cookiecutter.project_title.lower().replace(' ', '_').replace('-', '_') }}", "project_short_description" : "A new Python project.", "version" : "0.1.0", "python_version" : ["3.8", "3.9", "3.10"], "run_git_init" : "y", "run_pipenv_install" : "y", "install_pre_commit_hooks" : "y"}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "author_email": {"type": "string"}, "project_title": {"type": "string"}, "project_name": {"type": "string"}, "project_slug": {"type": "string"}, "project_short_description": {"type": "string"}, "version": {"type": "string"}, "python_version": {"type": "array", "items": {"type": "string"}}, "run_git_init": {"type": "string"}, "run_pipenv_install": {"type": "string"}, "install_pre_commit_hooks": {"type": "string"}}, "required": ["author", "author_email", "project_title", "project_name", "project_slug", "project_short_description", "version", "python_version", "run_git_init", "run_pipenv_install", "install_pre_commit_hooks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"user_name": {"type": "string"}}, "required": ["user_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"user_name" : "test-user"}
json_instruct
{"type": "object", "properties": {"user_name": {"type": "string"}}, "required": ["user_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"type=bottom": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=top": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=double": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["type=bottom", "type=top", "type=double"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"type=bottom" : {"model" : "beyond_earth:block/mercury_stone_brick_slab"}, "type=top" : {"model" : "beyond_earth:block/mercury_stone_brick_slab_top"}, "type=double" : {"model" : "beyond_earth:block/mercury_stone_brick_slab_full"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"type=bottom": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=top": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "type=double": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["type=bottom", "type=top", "type=double"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "created": {"type": "integer"}, "updated": {"type": "integer"}, "lines": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}, "userId": {"type": "string"}, "created": {"type": "integer"}, "updated": {"type": "integer"}}, "required": ["id", "text", "userId", "created", "updated"]}}}, "required": ["id", "title", "created", "updated", "lines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "608c1427181c2e00225ccab5", "title" : "Ariana Grande - 34+35", "created" : 1619792938, "updated" : 1619793003, "lines" : [{"id" : "608c1427181c2e00225ccab5", "text" : "Ariana Grande - 34+35", "userId" : "6055950b87138f0022246f59", "created" : 1619792938, "updated" : 1619792938}, {"id" : "608c142a246f590000bbe66c", "text" : "[https://youtube.com/watch?v=B6_iQvaIjXw]", "userId" : "6055950b87138f0022246f59", "created" : 1619792938, "updated" : 1619792955}, {"id" : "608c142b246f590000bbe66d", "text" : " \u7b97\u6570\u306e\u6b4c\u3067\u306f\u306a\u3044", "userId" : "6055950b87138f0022246f59", "created" : 1619792940, "updated" : 1619793003}, {"id" : "608c1467246f590000bbe670", "text" : "", "userId" : "6055950b87138f0022246f59", "created" : 1619792999, "updated" : 1619792999}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "created": {"type": "integer"}, "updated": {"type": "integer"}, "lines": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}, "userId": {"type": "string"}, "created": {"type": "integer"}, "updated": {"type": "integer"}}, "required": ["id", "text", "userId", "created", "updated"]}}}, "required": ["id", "title", "created", "updated", "lines"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "anas", "definition" : "A genus of water fowls, of the order Anseres, including certain species of fresh-water ducks."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$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"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "have-fun", "symbol" : "hf", "name" : "Have Fun", "platforms" : {"ethereum" : "0x2681576aee6486e2f891763a960b71c89bd2806d"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "Have Fun will be a defi ecosystem with different things to offer. By recording feedback on the platform, users will be able to collaborate on tasks that have been verified to yield fun. PoF (proof of fun) will be tied into everything from the $HF Dex, which will reward users for making fun trades to the $HF NFT VR gallery and Marketplace where users will be able to, through the $HF Dao and by the power of PoF, decide which artwork causes a verifiable fun feedback."}, "country_origin" : "", "genesis_date" : null, "contract_address" : "0x2681576aee6486e2f891763a960b71c89bd2806d", "url" : "https://havefuntoken.com/", "explorers" : ["https://etherscan.io/token/0x2681576aee6486e2f891763a960b71c89bd2806d", "https://ethplorer.io/address/0x2681576aee6486e2f891763a960b71c89bd2806d"], "twitter" : "HaveFunETH", "telegram" : "havefuntoken"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : "40c21a48e5fb88decd05d5ad3889db6dc0326759"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"outDir": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "array", "items": {}}}, "required": ["outDir", "module", "types"]}, "include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "include", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"extends" : "../../tsconfig.json", "compilerOptions" : {"outDir" : "../../dist/out-tsc/apps/admin", "module" : "es2015", "types" : []}, "include" : ["./src/**/*.ts", "../../libs/admin-conference/src/lib/admin-conference.module.ts", "../../libs/admin-system/src/lib/admin-system.module.ts", "../../libs/admin-system/src/lib/modules/export-import/system-export-import.module.ts", "../../libs/admin-system/src/lib/modules/user/system-user.module.ts"], "exclude" : ["src/test.ts", "**/*.spec.ts"]}
json_instruct
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"outDir": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "array", "items": {}}}, "required": ["outDir", "module", "types"]}, "include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "include", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Ialoveni": {"type": "string"}}, "required": ["Ialoveni"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Ialoveni" : "MJN"}
json_instruct
{"type": "object", "properties": {"Ialoveni": {"type": "string"}}, "required": ["Ialoveni"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {"type": "string"}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "string"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"accession_number" : "1989.778", "actors" : [], "creation_date" : "20th century", "credit_line" : "Gift of Mr. and Mrs. Harrison Eiteljorg", "cultures" : ["Yoruba people"], "dimensions" : "W: 15 1/2 inches (approx.)", "dynasty" : null, "images" : [], "irn" : 2374, "materials" : "Glass Beads | leather | cloth | Etc.", "on_view" : true, "period" : null, "printers" : [], "publishers" : [], "rights" : null, "title" : "prestige pillow"}
json_instruct
{"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {"type": "string"}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "string"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"precover": {"type": "string"}, "test": {"type": "string"}, "cover": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["precover", "test", "cover", "coverage"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"replace-ext": {"type": "string"}, "tap": {"type": "string"}, "tape": {"type": "string"}, "twing": {"type": "string"}, "vinyl": {"type": "string"}}, "required": ["replace-ext", "tap", "tape", "twing", "vinyl"]}, "peerDependencies": {"type": "object", "properties": {"twing": {"type": "string"}}, "required": ["twing"]}}, "required": ["name", "version", "description", "repository", "keywords", "main", "scripts", "author", "license", "devDependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "gulp-twing", "version" : "4.0.0", "description" : "Twing plugin for gulp.js", "repository" : {"type" : "git", "url" : "git://github.com/ericmorand/gulp-twing"}, "keywords" : ["gulp", "gulpplugin", "twig", "twing"], "main" : "src/index.js", "scripts" : {"precover" : "rimraf coverage", "test" : "tape 'test/*.js' | tap-mocha-reporter spec", "cover" : "nyc npm t", "coverage" : "nyc report --reporter=text-lcov | coveralls"}, "author" : "Eric MORAND <[email protected]>", "license" : "Apache-2.0", "devDependencies" : {"replace-ext" : "^1.0.0", "tap" : "^11.1.1", "tape" : "^4.9.2", "twing" : "^5.0.2", "vinyl" : "^2.1.0"}, "peerDependencies" : {"twing" : "^5.0.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"precover": {"type": "string"}, "test": {"type": "string"}, "cover": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["precover", "test", "cover", "coverage"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"replace-ext": {"type": "string"}, "tap": {"type": "string"}, "tape": {"type": "string"}, "twing": {"type": "string"}, "vinyl": {"type": "string"}}, "required": ["replace-ext", "tap", "tape", "twing", "vinyl"]}, "peerDependencies": {"type": "object", "properties": {"twing": {"type": "string"}}, "required": ["twing"]}}, "required": ["name", "version", "description", "repository", "keywords", "main", "scripts", "author", "license", "devDependencies", "peerDependencies"], "$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": {"review": {"type": "string"}, "date": {"type": "string"}, "rating": {"type": "string"}, "author": {"type": "string"}, "review_id": {"type": "string"}, "movie_id": {"type": "string"}}, "required": ["review", "date", "rating", "author", "review_id", "movie_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"review" : "\uc9c0\uae08 \ud2f0\ube44\uc5d0\uc11c \ub098\uc624\ub294\uc911 \ub0a8\uc790\uc5d0\ub300\ud55c\ubcf5\uc218\uadf9 \ub300\ub9ac\ub9cc\uc871\ud558\uac8c\ud574\uc904\uc218\uc787\uc5b4\uc11c\ud1b5\ucf8c\ud558\uba74\uc11c\ub3c4 \uc2dc\uc6d0\uc12d\uc12d\ud558\ub2e4", "date" : "13.03.31", "rating" : "10", "author" : "79ge****", "review_id" : "7424869", "movie_id" : "19682"}, {"review" : "\uc804\ud615\uc801\uc778 \ubcf5\uc218\uadf9\uc740 \uc218\uae0d\ud558\uae30\uac00 \uc5b4\ub835\ub124 .", "date" : "10.07.20", "rating" : "3", "author" : "evil****", "review_id" : "4655994", "movie_id" : "19682"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"review": {"type": "string"}, "date": {"type": "string"}, "rating": {"type": "string"}, "author": {"type": "string"}, "review_id": {"type": "string"}, "movie_id": {"type": "string"}}, "required": ["review", "date", "rating", "author", "review_id", "movie_id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "antifebrile", "definition" : "Febrifuge."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "watch:test": {"type": "string"}, "preversion": {"type": "string"}}, "required": ["build", "watch", "test", "lint", "watch:test", "preversion"]}, "main": {"type": "string"}, "bin": {"type": "string"}, "dependencies": {"type": "object", "properties": {"commander": {"type": "string"}, "webpack-merge": {"type": "string"}}, "required": ["commander", "webpack-merge"]}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "mocha": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["babel-cli", "babel-preset-es2015", "eslint", "eslint-config-airbnb", "extract-text-webpack-plugin", "mocha", "webpack"]}, "peerDependencies": {"type": "object", "properties": {"extract-text-webpack-plugin": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["extract-text-webpack-plugin", "webpack"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "description", "author", "version", "scripts", "main", "bin", "dependencies", "devDependencies", "peerDependencies", "repository", "homepage", "bugs", "keywords", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "webpack-presets", "description" : "Shareable configuration presets for Webpack", "author" : "Juho Vepsalainen <[email protected]>", "version" : "0.1.1", "scripts" : {"build" : "babel src -d lib", "watch" : "babel src --watch -d lib", "test" : "mocha ./test", "lint" : "eslint .", "watch:test" : "mocha ./test --watch", "preversion" : "npm run lint && npm run build && npm test && git commit --allow-empty -am \"Update lib\""}, "main" : "./lib", "bin" : "./bin", "dependencies" : {"commander" : "^2.9.0", "webpack-merge" : "^0.7.3"}, "devDependencies" : {"babel-cli" : "^6.4.0", "babel-preset-es2015" : "^6.3.13", "eslint" : "^1.10.3", "eslint-config-airbnb" : "^3.1.0", "extract-text-webpack-plugin" : "^1.0.1", "mocha" : "^2.3.4", "webpack" : "^1.12.11"}, "peerDependencies" : {"extract-text-webpack-plugin" : ">= 1.0.0 < 2.0.0", "webpack" : ">= 1.0.0 < 2.0.0"}, "repository" : {"type" : "git", "url" : "https://github.com/survivejs/webpack-presets.git"}, "homepage" : "https://github.com/survivejs/webpack-presets", "bugs" : {"url" : "https://github.com/survivejs/webpack-presets/issues"}, "keywords" : ["webpack", "presets", "preset"], "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "watch": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "watch:test": {"type": "string"}, "preversion": {"type": "string"}}, "required": ["build", "watch", "test", "lint", "watch:test", "preversion"]}, "main": {"type": "string"}, "bin": {"type": "string"}, "dependencies": {"type": "object", "properties": {"commander": {"type": "string"}, "webpack-merge": {"type": "string"}}, "required": ["commander", "webpack-merge"]}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "mocha": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["babel-cli", "babel-preset-es2015", "eslint", "eslint-config-airbnb", "extract-text-webpack-plugin", "mocha", "webpack"]}, "peerDependencies": {"type": "object", "properties": {"extract-text-webpack-plugin": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["extract-text-webpack-plugin", "webpack"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "description", "author", "version", "scripts", "main", "bin", "dependencies", "devDependencies", "peerDependencies", "repository", "homepage", "bugs", "keywords", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"HostConfigHash" : "2ac7c52", "CardHash" : "d990175", "Error" : null}
json_instruct
{"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"url": {"type": "string"}, "hash": {"type": "string"}}, "required": ["url", "hash"]}, "32bit": {"type": "object", "properties": {"url": {"type": "string"}, "hash": {"type": "string"}}, "required": ["url", "hash"]}}, "required": ["64bit", "32bit"]}, "bin": {"type": "string"}, "checkver": {"type": "string"}, "autoupdate": {"type": "object", "properties": {"architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "32bit": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["64bit", "32bit"]}}, "required": ["architecture"]}}, "required": ["version", "description", "homepage", "license", "architecture", "bin", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "1.5.0", "description" : "Compute various size metrics for a Git repository, flagging those that might cause problems.", "homepage" : "https://github.com/github/git-sizer", "license" : "MIT", "architecture" : {"64bit" : {"url" : "https://github.com/github/git-sizer/releases/download/v1.5.0/git-sizer-1.5.0-windows-amd64.zip", "hash" : "52093c1cba0bb8e00da14c9eef678eb052fc729c32419415817076f06b5c85d8"}, "32bit" : {"url" : "https://github.com/github/git-sizer/releases/download/v1.5.0/git-sizer-1.5.0-windows-386.zip", "hash" : "55930026eb444f8f852e03716525067bfc4a0329a9c778b026da150a8ed8abd8"}}, "bin" : "git-sizer.exe", "checkver" : "github", "autoupdate" : {"architecture" : {"64bit" : {"url" : "https://github.com/github/git-sizer/releases/download/v$version/git-sizer-$version-windows-amd64.zip"}, "32bit" : {"url" : "https://github.com/github/git-sizer/releases/download/v$version/git-sizer-$version-windows-386.zip"}}}}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"url": {"type": "string"}, "hash": {"type": "string"}}, "required": ["url", "hash"]}, "32bit": {"type": "object", "properties": {"url": {"type": "string"}, "hash": {"type": "string"}}, "required": ["url", "hash"]}}, "required": ["64bit", "32bit"]}, "bin": {"type": "string"}, "checkver": {"type": "string"}, "autoupdate": {"type": "object", "properties": {"architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "32bit": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["64bit", "32bit"]}}, "required": ["architecture"]}}, "required": ["version", "description", "homepage", "license", "architecture", "bin", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"citations" : [{"textCitation" : "[See eqtri on Metamath](http://us.metamath.org/mpegif/eqtri.html)"}], "names" : ["eqtri"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cA", "#T_wceq", "#T_cB", "#T_cB", "#T_wceq", "#T_cC", "#T_cA", "#T_wceq", "#T_cC"], "metaLanguage" : "METAMATH", "remarks" : " An equality transitivity inference. (Contributed by NM, 26-May-1993.) \n\n---\n\n An equality transitivity inference. (Contributed by NM, 5-Aug-1993.) ", "statement" : "eqtri.1 $e |- A = B $.\neqtri.2 $e |- B = C $.\neqtri $p |- A = C $."}
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [153.356, 39.6858, 0.913957, 178.799, 98.4269, 0.864298, 131.725, 114.134, 0.789713, 104.316, 165.042, 0.624827, 84.6928, 194.462, 0.672837, 225.717, 80.7927, 0.793192, 198.421, 120.054, 0.678496, 129.816, 163.061, 0.69265, 198.383, 264.962, 0.680234, 167.056, 268.886, 0.665051, 149.388, 406.015, 0.844426, 178.73, 519.692, 0.82706, 227.857, 261.087, 0.65929, 214.067, 404.063, 0.81547, 212.143, 517.714, 0.838654, 147.482, 31.8443, 0.897272, 165.127, 27.9682, 0.889122, 0, 0, 0, 194.4, 37.7723, 0.907073, 186.586, 556.851, 0.76281, 204.228, 554.952, 0.761952, 221.854, 525.533, 0.748359, 153.312, 558.818, 0.657245, 147.414, 552.96, 0.662253, 184.641, 525.536, 0.722256], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "children": {"type": "array", "items": {}}}, "required": ["number", "title", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"number" : "50.101", "title" : "General.", "children" : []}
json_instruct
{"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "children": {"type": "array", "items": {}}}, "required": ["number", "title", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"className": {"type": "string"}, "methods": {"type": "object", "properties": {"evalScript": {"type": "string"}, "evalStatement": {"type": "string"}, "getPythonVersion": {"type": "string"}, "runScript": {"type": "string"}, "set": {"type": "string"}}, "required": ["evalScript", "evalStatement", "getPythonVersion", "runScript", "set"]}, "path": {"type": "string"}, "text": {"type": "string"}, "typeName": {"type": "string"}}, "required": ["className", "methods", "path", "text", "typeName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"className" : "io.deephaven.db.util.PythonEvaluator", "methods" : {"evalScript" : "Evaluate the provided statements.\n\n If you've got a multi-line script; you must use this version.\n\n:param s: (java.lang.String) - the string to evaluate", "evalStatement" : "Evaluate the provided statement.\n\n Not suitable for use with scripts; because multiple statements will be ignored.\n\n:param s: (java.lang.String) - the string to evaluate", "getPythonVersion" : "Gets the Python interpreter version string.\n\n:return: (java.lang.String) The Python interpreter version string.", "runScript" : "Runs a Python script.\n\n:param scriptFile: (java.lang.String) - the file to execute", "set" : "Sets the variable within our session.\n\n:param name: (java.lang.String) - the name of the variable to set.\n:param value: (java.lang.Object) - the value of the variable."}, "path" : "io.deephaven.db.util.PythonEvaluator", "text" : "The PythonEvaluator encapsulates the evaluation around a Python library instance.", "typeName" : "interface"}
json_instruct
{"type": "object", "properties": {"className": {"type": "string"}, "methods": {"type": "object", "properties": {"evalScript": {"type": "string"}, "evalStatement": {"type": "string"}, "getPythonVersion": {"type": "string"}, "runScript": {"type": "string"}, "set": {"type": "string"}}, "required": ["evalScript", "evalStatement", "getPythonVersion", "runScript", "set"]}, "path": {"type": "string"}, "text": {"type": "string"}, "typeName": {"type": "string"}}, "required": ["className", "methods", "path", "text", "typeName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"baseUrl": {"type": "string"}, "viewportWidth": {"type": "integer"}, "viewportHeight": {"type": "integer"}, "testFiles": {"type": "string"}, "env": {"type": "object", "properties": {"PULL_SECRET": {"type": "string"}, "SSH_PUB_KEY": {"type": "string"}, "DNS_DOMAIN_NAME": {"type": "string"}, "API_VIP": {"type": "string"}, "INGRESS_VIP": {"type": "string"}, "NETWORK_CIDR": {"type": "string"}, "NETWORK_HOST_PREFIX": {"type": "integer"}, "SERVICE_NETWORK_CIDR": {"type": "string"}, "NUM_MASTERS": {"type": "integer"}, "NUM_WORKERS": {"type": "integer"}, "API_BASE_URL": {"type": "string"}, "INTEGRATION_ENV": {"type": "string"}, "OCM_USER": {"type": "string"}, "OCM_USER_PASSWORD": {"type": "string"}, "OCM_COOKIE_NAME": {"type": "string"}, "OCM_TOKEN_DEST": {"type": "string"}, "ISO_PATTERN": {"type": "string"}}, "required": ["PULL_SECRET", "SSH_PUB_KEY", "DNS_DOMAIN_NAME", "API_VIP", "INGRESS_VIP", "NETWORK_CIDR", "NETWORK_HOST_PREFIX", "SERVICE_NETWORK_CIDR", "NUM_MASTERS", "NUM_WORKERS", "API_BASE_URL", "INTEGRATION_ENV", "OCM_USER", "OCM_USER_PASSWORD", "OCM_COOKIE_NAME", "OCM_TOKEN_DEST", "ISO_PATTERN"]}}, "required": ["baseUrl", "viewportWidth", "viewportHeight", "testFiles", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"baseUrl" : "http://localhost:3000", "viewportWidth" : 1440, "viewportHeight" : 1080, "testFiles" : "*.spec.ts", "env" : {"PULL_SECRET" : "{}", "SSH_PUB_KEY" : "", "DNS_DOMAIN_NAME" : "redhat.com", "API_VIP" : "192.168.126.100", "INGRESS_VIP" : "192.168.126.101", "NETWORK_CIDR" : "10.128.0.0/14", "NETWORK_HOST_PREFIX" : 23, "SERVICE_NETWORK_CIDR" : "172.30.0.0/16", "NUM_MASTERS" : 3, "NUM_WORKERS" : 0, "API_BASE_URL" : "http://api.example.com", "INTEGRATION_ENV" : "", "OCM_USER" : "", "OCM_USER_PASSWORD" : "", "OCM_COOKIE_NAME" : "cs_jwt", "OCM_TOKEN_DEST" : "~/Downloads/token", "ISO_PATTERN" : "~/Downloads/discovery-image-*.iso"}}
json_instruct
{"type": "object", "properties": {"baseUrl": {"type": "string"}, "viewportWidth": {"type": "integer"}, "viewportHeight": {"type": "integer"}, "testFiles": {"type": "string"}, "env": {"type": "object", "properties": {"PULL_SECRET": {"type": "string"}, "SSH_PUB_KEY": {"type": "string"}, "DNS_DOMAIN_NAME": {"type": "string"}, "API_VIP": {"type": "string"}, "INGRESS_VIP": {"type": "string"}, "NETWORK_CIDR": {"type": "string"}, "NETWORK_HOST_PREFIX": {"type": "integer"}, "SERVICE_NETWORK_CIDR": {"type": "string"}, "NUM_MASTERS": {"type": "integer"}, "NUM_WORKERS": {"type": "integer"}, "API_BASE_URL": {"type": "string"}, "INTEGRATION_ENV": {"type": "string"}, "OCM_USER": {"type": "string"}, "OCM_USER_PASSWORD": {"type": "string"}, "OCM_COOKIE_NAME": {"type": "string"}, "OCM_TOKEN_DEST": {"type": "string"}, "ISO_PATTERN": {"type": "string"}}, "required": ["PULL_SECRET", "SSH_PUB_KEY", "DNS_DOMAIN_NAME", "API_VIP", "INGRESS_VIP", "NETWORK_CIDR", "NETWORK_HOST_PREFIX", "SERVICE_NETWORK_CIDR", "NUM_MASTERS", "NUM_WORKERS", "API_BASE_URL", "INTEGRATION_ENV", "OCM_USER", "OCM_USER_PASSWORD", "OCM_COOKIE_NAME", "OCM_TOKEN_DEST", "ISO_PATTERN"]}}, "required": ["baseUrl", "viewportWidth", "viewportHeight", "testFiles", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"packages": {"type": "object", "properties": {"wpackagist-plugin/rt-prettyphoto": {"type": "object", "properties": {"1.3": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "dist", "source", "homepage", "require", "type"]}, "dev-trunk": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "time": {"type": "string"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "time", "dist", "source", "homepage", "require", "type"]}}, "required": ["1.3", "dev-trunk"]}}, "required": ["wpackagist-plugin/rt-prettyphoto"]}}, "required": ["packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"packages" : {"wpackagist-plugin/rt-prettyphoto" : {"1.3" : {"name" : "wpackagist-plugin/rt-prettyphoto", "version" : "1.3", "version_normalized" : "1.3.0.0", "uid" : 296582, "dist" : {"type" : "zip", "url" : "https://downloads.wordpress.org/plugin/rt-prettyphoto.zip?timestamp=1431227463"}, "source" : {"type" : "svn", "url" : "https://plugins.svn.wordpress.org/rt-prettyphoto/", "reference" : "trunk"}, "homepage" : "https://wordpress.org/plugins/rt-prettyphoto/", "require" : {"composer/installers" : "~1.0"}, "type" : "wordpress-plugin"}, "dev-trunk" : {"name" : "wpackagist-plugin/rt-prettyphoto", "version" : "dev-trunk", "version_normalized" : "9999999-dev", "uid" : 296583, "time" : "2015-05-10 03:11:03", "dist" : {"type" : "zip", "url" : "https://downloads.wordpress.org/plugin/rt-prettyphoto.zip?timestamp=1431227463"}, "source" : {"type" : "svn", "url" : "https://plugins.svn.wordpress.org/rt-prettyphoto/", "reference" : "trunk"}, "homepage" : "https://wordpress.org/plugins/rt-prettyphoto/", "require" : {"composer/installers" : "~1.0"}, "type" : "wordpress-plugin"}}}}
json_instruct
{"type": "object", "properties": {"packages": {"type": "object", "properties": {"wpackagist-plugin/rt-prettyphoto": {"type": "object", "properties": {"1.3": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "dist", "source", "homepage", "require", "type"]}, "dev-trunk": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "time": {"type": "string"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "time", "dist", "source", "homepage", "require", "type"]}}, "required": ["1.3", "dev-trunk"]}}, "required": ["wpackagist-plugin/rt-prettyphoto"]}}, "required": ["packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"citations" : [{"textCitation" : "[See isabld on Metamath](http://us.metamath.org/mpegif/isabld.html)"}], "names" : ["isabld"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_wph", "#T_wi", "#T_cB", "#T_wceq", "#T_cbs", "#T_cfv", "#T_cG", "#T_wph", "#T_wi", "#T_c.pl", "#T_wceq", "#T_cplusg", "#T_cfv", "#T_cG", "#T_wph", "#T_wi", "#T_cG", "#T_wcel", "#T_cgrp", "#T_wph", "#T_w3a--1", "#T_vx", "#T_wcel", "#T_cB", "#T_w3a--2", "#T_vy", "#T_wcel", "#T_cB", "#T_wi", "#T_vx", "#T_c.pl", "#T_vy", "#T_wceq", "#T_vy", "#T_c.pl", "#T_vx", "#T_wph", "#T_wi", "#T_cG", "#T_wcel", "#T_cabl", "#T_cB", "#T_vx", "#T_vy", "#T_cG", "#T_vx", "#T_vy", "#T_wph", "#T_vx", "#T_vy"], "metaLanguage" : "METAMATH", "remarks" : " Properties that determine an Abelian group. (Contributed by NM, 6-Aug-2013.) ", "statement" : "isabld.b $e |- ( ph -> B = ( Base ` G ) ) $.\nisabld.p $e |- ( ph -> .+ = ( +g ` G ) ) $.\nisabld.g $e |- ( ph -> G e. Grp ) $.\nisabld.c $e |- ( ( ph /\\ x e. B /\\ y e. B ) -> ( x .+ y ) = ( y .+ x ) ) $.\nisabld $p |- ( ph -> G e. Abel ) $.\n$d B x y $.\n$d G x y $.\n$d ph x y $."}
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "start_url": {"type": "string"}, "gcm_sender_id": {"type": "string"}}, "required": ["short_name", "name", "start_url", "gcm_sender_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"short_name" : "HackNTU 2017", "name" : "HackNTU Major website for 2017", "start_url" : "/index.html", "gcm_sender_id" : "285023490245231287"}
json_instruct
{"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "start_url": {"type": "string"}, "gcm_sender_id": {"type": "string"}}, "required": ["short_name", "name", "start_url", "gcm_sender_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"uid": {"type": "string"}, "name": {"type": "string"}, "slug": {"type": "string"}, "version": {"type": "string"}, "versionName": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}}, "required": ["name", "website"]}, "licence": {"type": "string"}, "data": {"type": "object", "properties": {"keyframes": {"type": "array", "items": {"type": "object", "properties": {"ts": {"type": "integer"}, "data": {"type": "integer"}}, "required": ["ts", "data"]}}}, "required": ["keyframes"]}, "options": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "top": {"type": "null"}, "left": {"type": "null"}, "right": {"type": "null"}, "bottom": {"type": "null"}, "urlIcon": {"type": "string"}, "urlAnimation": {"type": "string"}, "source": {"type": "string"}, "font": {"type": "object", "properties": {"color": {"type": "string"}, "size": {"type": "integer"}, "family": {"type": "string"}}, "required": ["color", "size", "family"]}}, "required": ["width", "height", "top", "left", "right", "bottom", "urlIcon", "urlAnimation", "source", "font"]}, "sources": {"type": "array", "items": {"type": "string"}}, "constructor": {"type": "string"}}, "required": ["uid", "name", "slug", "version", "versionName", "description", "author", "licence", "data", "options", "sources", "constructor"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"uid" : "org.forgejs.heartbeat", "name" : "Heartbeat", "slug" : "heartbeat", "version" : "1.0.0", "versionName" : "Heartbeat 1.0.0", "description" : "Add a simple heartbeat", "author" : {"name" : "GoPro", "website" : "https://forgejs.org"}, "licence" : "Apache-2.0", "data" : {"keyframes" : [{"ts" : 0, "data" : 100}, {"ts" : 3000, "data" : 150}, {"ts" : 5000, "data" : 190}]}, "options" : {"width" : 100, "height" : 100, "top" : null, "left" : null, "right" : null, "bottom" : null, "urlIcon" : "assets/heart.png", "urlAnimation" : "assets/heart.json", "source" : "media", "font" : {"color" : "black", "size" : 35, "family" : "dosislight, sans-serif"}}, "sources" : ["src/Heartbeat.js"], "constructor" : "ForgePlugins.Heartbeat"}
json_instruct
{"type": "object", "properties": {"uid": {"type": "string"}, "name": {"type": "string"}, "slug": {"type": "string"}, "version": {"type": "string"}, "versionName": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}}, "required": ["name", "website"]}, "licence": {"type": "string"}, "data": {"type": "object", "properties": {"keyframes": {"type": "array", "items": {"type": "object", "properties": {"ts": {"type": "integer"}, "data": {"type": "integer"}}, "required": ["ts", "data"]}}}, "required": ["keyframes"]}, "options": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "top": {"type": "null"}, "left": {"type": "null"}, "right": {"type": "null"}, "bottom": {"type": "null"}, "urlIcon": {"type": "string"}, "urlAnimation": {"type": "string"}, "source": {"type": "string"}, "font": {"type": "object", "properties": {"color": {"type": "string"}, "size": {"type": "integer"}, "family": {"type": "string"}}, "required": ["color", "size", "family"]}}, "required": ["width", "height", "top", "left", "right", "bottom", "urlIcon", "urlAnimation", "source", "font"]}, "sources": {"type": "array", "items": {"type": "string"}}, "constructor": {"type": "string"}}, "required": ["uid", "name", "slug", "version", "versionName", "description", "author", "licence", "data", "options", "sources", "constructor"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cSpell.words" : ["instanceof", "mousedown", "mousemove", "mouseup", "touchend", "touchmove", "touchstart"]}
json_instruct
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"count": {"type": "integer"}, "251000": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "211010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "192099": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "291060": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "113121": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "252020": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "131111": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "434071": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "119030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "291141": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "193030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "119XXX": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "291020": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "1910XX": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "251000", "211010", "192099", "291060", "113121", "252020", "131111", "434071", "119030", "291141", "193030", "N.A.//", "119XXX", "291020", "1910XX"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"count" : 56, "251000" : {"count" : 8}, "211010" : {"count" : 1}, "192099" : {"count" : 2}, "291060" : {"count" : 1}, "113121" : {"count" : 1}, "252020" : {"count" : 1}, "131111" : {"count" : 1}, "434071" : {"count" : 2}, "119030" : {"count" : 4}, "291141" : {"count" : 1}, "193030" : {"count" : 2}, "N.A.//" : {"count" : 29}, "119XXX" : {"count" : 1}, "291020" : {"count" : 1}, "1910XX" : {"count" : 1}}
json_instruct
{"type": "object", "properties": {"count": {"type": "integer"}, "251000": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "211010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "192099": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "291060": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "113121": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "252020": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "131111": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "434071": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "119030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "291141": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "193030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "119XXX": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "291020": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "1910XX": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "251000", "211010", "192099", "291060", "113121", "252020", "131111", "434071", "119030", "291141", "193030", "N.A.//", "119XXX", "291020", "1910XX"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "loc": {"type": "object", "properties": {"source": {"type": "null"}, "start": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}, "end": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}}, "required": ["source", "start", "end"]}, "range": {"type": "array", "items": {"type": "integer"}}, "body": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "loc": {"type": "object", "properties": {"source": {"type": "null"}, "start": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}, "end": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}}, "required": ["source", "start", "end"]}, "range": {"type": "array", "items": {"type": "integer"}}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "loc": {"type": "object", "properties": {"source": {"type": "null"}, "start": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}, "end": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}}, "required": ["source", "start", "end"]}, "range": {"type": "array", "items": {"type": "integer"}}, "value": {"type": "string"}, "raw": {"type": "string"}}, "required": ["type", "loc", "range", "value", "raw"]}}, "required": ["type", "loc", "range", "source"]}}, "comments": {"type": "array", "items": {}}}, "required": ["type", "loc", "range", "body", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Program", "loc" : {"source" : null, "start" : {"line" : 1, "column" : 0}, "end" : {"line" : 1, "column" : 28}}, "range" : [0, 28], "body" : [{"type" : "DeclareExportAllDeclaration", "loc" : {"source" : null, "start" : {"line" : 1, "column" : 0}, "end" : {"line" : 1, "column" : 28}}, "range" : [0, 28], "source" : {"type" : "Literal", "loc" : {"source" : null, "start" : {"line" : 1, "column" : 22}, "end" : {"line" : 1, "column" : 27}}, "range" : [22, 27], "value" : "foo", "raw" : "\"foo\""}}], "comments" : []}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "loc": {"type": "object", "properties": {"source": {"type": "null"}, "start": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}, "end": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}}, "required": ["source", "start", "end"]}, "range": {"type": "array", "items": {"type": "integer"}}, "body": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "loc": {"type": "object", "properties": {"source": {"type": "null"}, "start": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}, "end": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}}, "required": ["source", "start", "end"]}, "range": {"type": "array", "items": {"type": "integer"}}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "loc": {"type": "object", "properties": {"source": {"type": "null"}, "start": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}, "end": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}}, "required": ["line", "column"]}}, "required": ["source", "start", "end"]}, "range": {"type": "array", "items": {"type": "integer"}}, "value": {"type": "string"}, "raw": {"type": "string"}}, "required": ["type", "loc", "range", "value", "raw"]}}, "required": ["type", "loc", "range", "source"]}}, "comments": {"type": "array", "items": {}}}, "required": ["type", "loc", "range", "body", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"http-enrich": {"type": "string"}, "apici": {"type": "string"}}, "required": ["http-enrich", "apici"]}}, "required": ["name", "description", "version", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "api", "description" : "Api", "version" : "1.5.0", "main" : "index", "dependencies" : {"http-enrich" : "file:../http-enrich", "apici" : "file:../apici"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"http-enrich": {"type": "string"}, "apici": {"type": "string"}}, "required": ["http-enrich", "apici"]}}, "required": ["name", "description", "version", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"workbench.colorCustomizations": {"type": "object", "properties": {"activityBar.background": {"type": "string"}, "titleBar.activeBackground": {"type": "string"}, "titleBar.activeForeground": {"type": "string"}}, "required": ["activityBar.background", "titleBar.activeBackground", "titleBar.activeForeground"]}, "solidity.compileUsingRemoteVersion": {"type": "string"}}, "required": ["workbench.colorCustomizations", "solidity.compileUsingRemoteVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"workbench.colorCustomizations" : {"activityBar.background" : "#142E51", "titleBar.activeBackground" : "#1C4071", "titleBar.activeForeground" : "#F8FAFD"}, "solidity.compileUsingRemoteVersion" : "v0.8.9+commit.e5eed63a"}
json_instruct
{"type": "object", "properties": {"workbench.colorCustomizations": {"type": "object", "properties": {"activityBar.background": {"type": "string"}, "titleBar.activeBackground": {"type": "string"}, "titleBar.activeForeground": {"type": "string"}}, "required": ["activityBar.background", "titleBar.activeBackground", "titleBar.activeForeground"]}, "solidity.compileUsingRemoteVersion": {"type": "string"}}, "required": ["workbench.colorCustomizations", "solidity.compileUsingRemoteVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"0" : "detect_allergen", "1" : "detect_colour", "2" : "detect_expiration", "3" : "detect_ingredients", "4" : "detect_nutri", "5" : "detect_safety", "6" : "identify", "7" : "locate", "8" : "recognise", "9" : "same_intent"}
json_instruct
{"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Token 12vM", "symbol" : "12vM4", "decimals" : 6, "address" : "12vM4g6aCoP5EUheBfS2K5gdxbPtmuPxUirYm8jFgGo4", "chainId" : 103}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}}, "required": ["0", "1", "2"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "calculator:item/SonarHoe", "textures" : {"0" : "calculator:model/tools/flawless_diamond_0", "1" : "calculator:model/tools/flawless_diamond_1", "2" : "calculator:model/tools/flawless_diamond_2"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}}, "required": ["0", "1", "2"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "null"}, "blog": {"type": "null"}, "location": {"type": "string"}, "email": {"type": "string"}, "hireable": {"type": "null"}, "bio": {"type": "string"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"user" : "F-happy", "repos" : 1, "login" : "F-happy", "id" : 8241236, "avatar_url" : "https://avatars1.githubusercontent.com/u/8241236?v=3", "url" : "https://api.github.com/users/F-happy", "html_url" : "https://github.com/F-happy", "followers_url" : "https://api.github.com/users/F-happy/followers", "following_url" : "https://api.github.com/users/F-happy/following{/other_user}", "gists_url" : "https://api.github.com/users/F-happy/gists{/gist_id}", "starred_url" : "https://api.github.com/users/F-happy/starred{/owner}{/repo}", "subscriptions_url" : "https://api.github.com/users/F-happy/subscriptions", "organizations_url" : "https://api.github.com/users/F-happy/orgs", "repos_url" : "https://api.github.com/users/F-happy/repos", "events_url" : "https://api.github.com/users/F-happy/events{/privacy}", "received_events_url" : "https://api.github.com/users/F-happy/received_events", "type" : "User", "site_admin" : false, "name" : "jonnyF", "company" : null, "blog" : null, "location" : "China beijing", "email" : "[email protected]", "hireable" : null, "bio" : "\u5341\u5e74\u56de\u9996\uff0c\u521d\u5fc3\u4e0d\u6539\u3002", "public_repos" : 20, "public_gists" : 0, "followers" : 17, "following" : 16, "created_at" : "2014-07-23T02:08:22Z", "updated_at" : "2017-02-25T16:10:40Z"}
json_instruct
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "null"}, "blog": {"type": "null"}, "location": {"type": "string"}, "email": {"type": "string"}, "hireable": {"type": "null"}, "bio": {"type": "string"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "achievementgroup": {"type": "string"}, "ishidden": {"type": "boolean"}, "sortorder": {"type": "integer"}, "stages": {"type": "integer"}, "stage1": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "progress": {"type": "integer"}, "reward": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}, "required": ["title", "description", "progress", "reward"]}}, "required": ["name", "achievementgroup", "ishidden", "sortorder", "stages", "stage1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Shirasagi Himegimi ph\u00eda sau b\u00ecnh phong", "achievementgroup" : "Th\u1ebf gi\u1edbi mu\u00f4n m\u00e0u", "ishidden" : true, "sortorder" : 5019, "stages" : 1, "stage1" : {"title" : "Shirasagi Himegimi ph\u00eda sau b\u00ecnh phong", "description" : "Ch\u00ednh th\u1ee9c g\u1eb7p m\u1eb7t \u0111\u1ea1i ti\u1ec3u th\u01b0 nh\u00e0 Kamisato.", "progress" : 1, "reward" : {"name" : "Nguy\u00ean Th\u1ea1ch", "count" : 5}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "achievementgroup": {"type": "string"}, "ishidden": {"type": "boolean"}, "sortorder": {"type": "integer"}, "stages": {"type": "integer"}, "stage1": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "progress": {"type": "integer"}, "reward": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}, "required": ["title", "description", "progress", "reward"]}}, "required": ["name", "achievementgroup", "ishidden", "sortorder", "stages", "stage1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "url", "email"]}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "license", "description", "keywords", "files", "author", "main", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "dragsort", "version" : "1.0.6", "license" : "MIT", "description" : "jQuery - Drag & drop JS library", "keywords" : ["drag", "drop", "sortable"], "files" : ["dist"], "author" : {"name" : "Alexander Gavazov", "url" : "http://www.atlantify.com", "email" : "[email protected]"}, "main" : "dist/js/jquery.dragsort.js", "repository" : {"type" : "git", "url" : "http://github.com/agavazov/dragsort.git"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "url", "email"]}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "license", "description", "keywords", "files", "author", "main", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@bugsnag/js": {"type": "string"}, "@bugsnag/plugin-express": {"type": "string"}, "body-parser": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}, "path": {"type": "string"}, "serve-favicon": {"type": "string"}}, "required": ["@bugsnag/js", "@bugsnag/plugin-express", "body-parser", "cors", "dotenv", "express", "mongoose", "path", "serve-favicon"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "dockering-node", "version" : "1.0.0", "description" : "Basic Node Application Running inside Docker container connected to mongodb", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "node index.js"}, "keywords" : ["node", "docker", "mongo", "mongoose"], "author" : "yogendra saxena", "license" : "ISC", "dependencies" : {"@bugsnag/js" : "^6.5.0", "@bugsnag/plugin-express" : "^6.5.0", "body-parser" : "^1.19.0", "cors" : "^2.8.5", "dotenv" : "^8.2.0", "express" : "^4.17.1", "mongoose" : "^5.8.1", "path" : "^0.12.7", "serve-favicon" : "^2.5.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@bugsnag/js": {"type": "string"}, "@bugsnag/plugin-express": {"type": "string"}, "body-parser": {"type": "string"}, "cors": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}, "path": {"type": "string"}, "serve-favicon": {"type": "string"}}, "required": ["@bugsnag/js", "@bugsnag/plugin-express", "body-parser", "cors", "dotenv", "express", "mongoose", "path", "serve-favicon"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"HollowMod:VoidPotion": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}, "HollowMod:SoulPotion": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}, "HollowMod:LifebloodPotion": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}, "HollowMod:InfectionPotion": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}}, "required": ["HollowMod:VoidPotion", "HollowMod:SoulPotion", "HollowMod:LifebloodPotion", "HollowMod:InfectionPotion"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"HollowMod:VoidPotion" : {"NAME" : "Void Potion", "DESCRIPTIONS" : ["Gain ", " Void."]}, "HollowMod:SoulPotion" : {"NAME" : "Soul Potion", "DESCRIPTIONS" : ["Gain ", " Soul."]}, "HollowMod:LifebloodPotion" : {"NAME" : "Lifeblood Potion", "DESCRIPTIONS" : ["Gain ", " Temporary Health."]}, "HollowMod:InfectionPotion" : {"NAME" : "Infected Potion", "DESCRIPTIONS" : ["Apply", " Poison, and gain ", "Infection."]}}
json_instruct
{"type": "object", "properties": {"HollowMod:VoidPotion": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}, "HollowMod:SoulPotion": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}, "HollowMod:LifebloodPotion": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}, "HollowMod:InfectionPotion": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESCRIPTIONS": {"type": "array", "items": {"type": "string"}}}, "required": ["NAME", "DESCRIPTIONS"]}}, "required": ["HollowMod:VoidPotion", "HollowMod:SoulPotion", "HollowMod:LifebloodPotion", "HollowMod:InfectionPotion"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "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" : [[[128.125, 22.25], [128.125, 22.333333333333332], [128.25, 22.333333333333332], [128.25, 22.25], [128.125, 22.25]]]}, "properties" : {"code" : 332831, "url" : "http://madefor.github.io/0410/api/v1/332831.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/332831.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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "publicAccess": {"type": "boolean"}, "name": {"type": "object", "properties": {"en": {"type": "string"}, "zh-hant": {"type": "string"}}, "required": ["en", "zh-hant"]}, "alphaSortName": {"type": "object", "properties": {"en": {"type": "string"}, "zh-hant": {"type": "string"}}, "required": ["en", "zh-hant"]}, "type": {"type": "string"}, "roles": {"type": "array", "items": {"type": "string"}}, "displayBio": {"type": "object", "properties": {"en": {"type": "string"}, "zh-hant": {"type": "string"}}, "required": ["en", "zh-hant"]}, "gender": {"type": "object", "properties": {"en": {"type": "string"}, "zh-hant": {"type": "string"}}, "required": ["en", "zh-hant"]}, "beginDate": {"type": "integer"}, "endDate": {"type": "null"}, "nationality": {"type": "object", "properties": {"en": {"type": "string"}, "zh-hant": {"type": "string"}}, "required": ["en", "zh-hant"]}}, "required": ["id", "publicAccess", "name", "alphaSortName", "type", "roles", "displayBio", "gender", "beginDate", "endDate", "nationality"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1431, "publicAccess" : true, "name" : {"en" : "Yamakawa Rattan Japan Inc.", "zh-hant" : "Yamakawa Rattan Japan \u682a\u5f0f\u6703\u793e"}, "alphaSortName" : {"en" : "Yamakawa Rattan Japan Inc.", "zh-hant" : "Yamakawa Rattan Japan \u682a\u5f0f\u6703\u793e"}, "type" : "Organization", "roles" : ["Manufacturer", "\u88fd\u9020\u5546"], "displayBio" : {"en" : "established Tokyo, 1952", "zh-hant" : "1952\u5e74\u6210\u7acb\u65bc\u6771\u4eac"}, "gender" : {"en" : "Not Applicable", "zh-hant" : "\u4e0d\u9069\u7528"}, "beginDate" : 1952, "endDate" : null, "nationality" : {"en" : "Japanese", "zh-hant" : "\u65e5\u672c\u7c4d"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "publicAccess": {"type": "boolean"}, "name": {"type": "object", "properties": {"en": {"type": "string"}, "zh-hant": {"type": "string"}}, "required": ["en", "zh-hant"]}, "alphaSortName": {"type": "object", "properties": {"en": {"type": "string"}, "zh-hant": {"type": "string"}}, "required": ["en", "zh-hant"]}, "type": {"type": "string"}, "roles": {"type": "array", "items": {"type": "string"}}, "displayBio": {"type": "object", "properties": {"en": {"type": "string"}, "zh-hant": {"type": "string"}}, "required": ["en", "zh-hant"]}, "gender": {"type": "object", "properties": {"en": {"type": "string"}, "zh-hant": {"type": "string"}}, "required": ["en", "zh-hant"]}, "beginDate": {"type": "integer"}, "endDate": {"type": "null"}, "nationality": {"type": "object", "properties": {"en": {"type": "string"}, "zh-hant": {"type": "string"}}, "required": ["en", "zh-hant"]}}, "required": ["id", "publicAccess", "name", "alphaSortName", "type", "roles", "displayBio", "gender", "beginDate", "endDate", "nationality"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"ak_2a1j2Mk9YSmC1gioUq4PWRm3bsv887MbuRVwyv4KaUGoR1eiKi": {"type": "integer"}}, "required": ["ak_2a1j2Mk9YSmC1gioUq4PWRm3bsv887MbuRVwyv4KaUGoR1eiKi"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ak_2a1j2Mk9YSmC1gioUq4PWRm3bsv887MbuRVwyv4KaUGoR1eiKi" : 100000000000001}
json_instruct
{"type": "object", "properties": {"ak_2a1j2Mk9YSmC1gioUq4PWRm3bsv887MbuRVwyv4KaUGoR1eiKi": {"type": "integer"}}, "required": ["ak_2a1j2Mk9YSmC1gioUq4PWRm3bsv887MbuRVwyv4KaUGoR1eiKi"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"year" : 1976, "sex" : "F", "n" : 6, "prop" : 3.82e-06}, {"year" : 1977, "sex" : "F", "n" : 9, "prop" : 5.47e-06}, {"year" : 1978, "sex" : "F", "n" : 5, "prop" : 3.04e-06}, {"year" : 1979, "sex" : "F", "n" : 9, "prop" : 5.22e-06}, {"year" : 1981, "sex" : "F", "n" : 9, "prop" : 5.03e-06}, {"year" : 1982, "sex" : "F", "n" : 13, "prop" : 7.17e-06}, {"year" : 1983, "sex" : "F", "n" : 9, "prop" : 5.03e-06}, {"year" : 1984, "sex" : "F", "n" : 7, "prop" : 3.88e-06}, {"year" : 1987, "sex" : "F", "n" : 12, "prop" : 6.4e-06}, {"year" : 1988, "sex" : "F", "n" : 9, "prop" : 4.68e-06}, {"year" : 1990, "sex" : "F", "n" : 5, "prop" : 2.43e-06}, {"year" : 1991, "sex" : "F", "n" : 8, "prop" : 3.93e-06}, {"year" : 1992, "sex" : "F", "n" : 6, "prop" : 2.99e-06}, {"year" : 1993, "sex" : "F", "n" : 5, "prop" : 2.54e-06}, {"year" : 1995, "sex" : "F", "n" : 8, "prop" : 4.16e-06}, {"year" : 1996, "sex" : "F", "n" : 6, "prop" : 3.13e-06}, {"year" : 1998, "sex" : "F", "n" : 6, "prop" : 3.1e-06}, {"year" : 1999, "sex" : "F", "n" : 5, "prop" : 2.57e-06}, {"year" : 2004, "sex" : "F", "n" : 7, "prop" : 3.47e-06}, {"year" : 2005, "sex" : "F", "n" : 5, "prop" : 2.47e-06}, {"year" : 2006, "sex" : "F", "n" : 5, "prop" : 2.39e-06}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "kinesitherapy", "definition" : "See Kinesiatrics."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "WHICH ARE AS IT WERE THE BONDS BETWEEN PARTICULAR THINGS THAT EXIST AND THE NAMES THEY ARE TO BE RANKED UNDER?", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/9418.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "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"]}}, "_labels": {"type": "object", "properties": {"MQ": {"type": "string"}}, "required": ["MQ"]}}, "required": ["type", "features", "_labels"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"name" : "MQ"}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-60.8262695, 14.494482421874991], [-60.8621094, 14.4262695], [-60.8994141, 14.473779296874993], [-61.0637207, 14.467089843750001], [-61.090332, 14.5296875], [-61.011328124999984, 14.601904296874991], [-61.1411133, 14.652392578125003], [-61.2197266, 14.804394531249997], [-61.1273926, 14.875292968750001], [-60.9186523, 14.7353516], [-60.933691406249984, 14.686181640624996], [-60.8699707, 14.613720703124997], [-60.8262695, 14.494482421874991]]]}}], "_labels" : {"MQ" : "Martinique"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "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"]}}, "_labels": {"type": "object", "properties": {"MQ": {"type": "string"}}, "required": ["MQ"]}}, "required": ["type", "features", "_labels"], "$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"}, "title": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "contributors": {"type": "array", "items": {}}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "title", "author", "licenses", "dependencies", "description", "keywords", "homepage", "contributors", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "nicescroll", "version" : "3.5.1", "title" : "jQuery.NiceScroll", "author" : {"name" : "InuYaksa", "url" : "https://github.com/inuyaksa"}, "licenses" : [{"type" : "MIT", "url" : "MIT.LICENSE"}], "dependencies" : {"jquery" : ">=1.4.3"}, "description" : "Nicescroll is a jquery plugin, for nice customizabled scrollbars with a very similar ios/mobile style. It supports DIVs, IFrames and document page (body) scrollbars. Compatible with Firefox 4+, Chrome 5+, Safari 4+ (win/mac), Opera 10+, IE 6+ (all A-grade browsers). Compatible with iOS devices as iPad, Android, Blackberry, Windows Phone, and many many mobile and touch devices.", "keywords" : ["nicescroll", "jquery", "interface", "window", "dom", "div", "scroll", "ios", "mobile", "desktop", "scrollbar", "touch", "android"], "homepage" : "https://github.com/inuyaksa/jquery.nicescroll", "contributors" : [], "files" : ["jquery.nicescroll.js", "jquery.nicescroll.min.js", "zoomico.png"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "contributors": {"type": "array", "items": {}}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "title", "author", "licenses", "dependencies", "description", "keywords", "homepage", "contributors", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "banner": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}}, "required": ["src"]}}, "hot": {"type": "string"}, "hotLink": {"type": "string"}, "title": {"type": "string"}, "bigContent": {"type": "string"}, "smallContent": {"type": "string"}, "money": {"type": "integer"}, "noMoney": {"type": "integer"}, "tips": {"type": "array", "items": {"type": "string"}}, "chouse": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}, "pBox": {"type": "array", "items": {"type": "string"}}, "msg": {"type": "string"}, "code": {"type": "integer"}, "mit": {"type": "string"}}, "required": ["id", "banner", "hot", "hotLink", "title", "bigContent", "smallContent", "money", "noMoney", "tips", "chouse", "address", "pBox", "msg", "code", "mit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1007, "banner" : [{"src" : "//cdn.cnbj0.fds.api.mi-img.com/b2c-mimall-media/91e46304f075e6396d9408e7aada7c56.jpg?bg=DCB6B0"}, {"src" : "//cdn.cnbj0.fds.api.mi-img.com/b2c-mimall-media/a28e43b18deeee39cd65608c6414f4b9.jpg?bg=F7F4F0"}, {"src" : "//cdn.cnbj0.fds.api.mi-img.com/b2c-mimall-media/a54bcd092a25a23981545c2b4680b164.jpg?bg=CDDBE4"}, {"src" : "//cdn.cnbj0.fds.api.mi-img.com/b2c-mimall-media/3949f1620c7326c3f7c6417fbbebe1c5.jpg?bg=FFFFFF"}], "hot" : "http://i8.mifile.cn/b2c-mimall-media/7f1f2647d4349daa23978fffab7bb4ad.jpg", "hotLink" : "/detail/1001", "title" : "\u7ea2\u7c73Note 5A \u9ad8\u914d\u7248", "bigContent" : " \u3010\u624b\u673a\u54c1\u724c\u65e5\u9650\u65f6\u7279\u60e0\uff1a32GB\u7528\u5238\u7acb\u51cf100\u5143\uff0c16GB\u7528\u5238\u7acb\u51cf50\u5143\u3002\u5168\u7cfb\u53ef\u4eab\u5c0f\u7c73\u5206\u671f\u6700\u9ad86\u671f\u514d\u606f\u3011", "smallContent" : "5.5\"\u9ad8\u6e05\u5927\u5c4f / 1600\u4e07\u50cf\u7d20\u67d4\u5149\u81ea\u62cd / \u6d41\u75458\u6838\u5904\u7406\u5668 / 2+1\u5361\u69fd\uff0c\u6700\u9ad8\u53ef\u6269\u5bb9128GB", "money" : 799, "noMoney" : 899, "tips" : ["\u76f4\u964d100\u5143"], "chouse" : "\u7ea2\u7c73Note 5A 3GB+32GB \u9999\u69df\u91d1 x1", "address" : ["\u5317\u4eac\u5e02", "\u4e1c\u57ce\u533a"], "pBox" : ["//i8.mifile.cn/v1/a1/8ebe2e6e-bd75-b921-fe88-a28f9c6d1e61.jpg?w=1080&h=1920&s=135.5", "//i8.mifile.cn/v1/a1/f1924deb-2454-45ce-b216-6979486cd074.jpg?w=1080&h=1920&s=185.9", "//i8.mifile.cn/v1/a1/b049fa8d-0ac9-629f-f215-b0c57dd56d5c.jpg?w=1080&h=1920&s=175.1", "//i8.mifile.cn/v1/a1/4b83eeb5-5533-5282-56dd-28ad54b504d9.jpg?w=1080&h=1920&s=168.2", "//i8.mifile.cn/v1/a1/1dc92c25-6243-2265-ebb0-899d7635521c.jpg?w=1080&h=1580&s=192.1", "//i8.mifile.cn/v1/a1/cb7c5f36-19bc-17bc-4def-3b3b9f359ffd.jpg?w=1080&h=1499&s=184.8", "//i8.mifile.cn/v1/a1/ed858fc0-3b91-b1e2-8b63-e00677102cf9.jpg?w=1080&h=1920&s=188.8", "//i8.mifile.cn/v1/a1/fad6610e-61ef-06c6-51d4-fb0202c36cda.jpg?w=1080&h=1920&s=178"], "msg" : "\u8bf7\u6c42\u6210\u529f", "code" : 200, "mit" : "\u674e\u96ea\u626c\u7684\u79fb\u52a8\u7aef\u9879\u76ee"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "banner": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}}, "required": ["src"]}}, "hot": {"type": "string"}, "hotLink": {"type": "string"}, "title": {"type": "string"}, "bigContent": {"type": "string"}, "smallContent": {"type": "string"}, "money": {"type": "integer"}, "noMoney": {"type": "integer"}, "tips": {"type": "array", "items": {"type": "string"}}, "chouse": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}, "pBox": {"type": "array", "items": {"type": "string"}}, "msg": {"type": "string"}, "code": {"type": "integer"}, "mit": {"type": "string"}}, "required": ["id", "banner", "hot", "hotLink", "title", "bigContent", "smallContent", "money", "noMoney", "tips", "chouse", "address", "pBox", "msg", "code", "mit"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"development": {"type": "string"}, "production": {"type": "string"}}, "required": ["development", "production"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"development" : "85KB", "production" : "36KB"}
json_instruct
{"type": "object", "properties": {"development": {"type": "string"}, "production": {"type": "string"}}, "required": ["development", "production"], "$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"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "6302190001", "nama" : "SEPAPAH"}, {"id" : "6302190002", "nama" : "BANJARSARI"}, {"id" : "6302190003", "nama" : "SUNGAI BETUNG"}, {"id" : "6302190004", "nama" : "SAMPANAHAN HILIR"}, {"id" : "6302190005", "nama" : "SUKAMAJU"}, {"id" : "6302190006", "nama" : "SAMPANAHAN"}, {"id" : "6302190007", "nama" : "GUNUNG BATU BESAR"}, {"id" : "6302190008", "nama" : "BASUANG"}, {"id" : "6302190009", "nama" : "PAPAAN"}, {"id" : "6302190010", "nama" : "RAMPA MANUNGGUL"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1106050004", "district_id" : "1106050", "name" : "BLANG KOLAK I"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Time" : "2021-06-21T15:00:00Z", "Temp" : 31, "RelHum" : 33, "WindSpeed" : 5.8, "WindDir" : 331}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$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"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "minimum-stability": {"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"}, "topthink/framework": {"type": "string"}, "topthink/think-migration": {"type": "string"}, "league/fractal": {"type": "string"}, "jackchow/rbac": {"type": "string"}}, "required": ["php", "topthink/framework", "topthink/think-migration", "league/fractal", "jackchow/rbac"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"app\\": {"type": "string"}}, "required": ["app\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"think-path": {"type": "string"}}, "required": ["think-path"]}, "config": {"type": "object", "properties": {"preferred-install": {"type": "string"}}, "required": ["preferred-install"]}}, "required": ["name", "description", "type", "keywords", "homepage", "license", "minimum-stability", "authors", "require", "autoload", "extra", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "jackchow/rbacshow", "description" : "the rbac features show in system base on layui2.3 and thinkphp5.1", "type" : "project", "keywords" : ["rbac", "auth", "permission", "thinkphp5"], "homepage" : "https://github.com/jackchow123456/jackchow-rbacshow", "license" : "MIT", "minimum-stability" : "dev", "authors" : [{"name" : "Jack", "email" : "[email protected]"}], "require" : {"php" : ">=5.6.0", "topthink/framework" : "^5.1", "topthink/think-migration" : "^2.0", "league/fractal" : "^0.17.0", "jackchow/rbac" : "dev-master"}, "autoload" : {"psr-4" : {"app\\" : "application"}}, "extra" : {"think-path" : "thinkphp"}, "config" : {"preferred-install" : "dist"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "minimum-stability": {"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"}, "topthink/framework": {"type": "string"}, "topthink/think-migration": {"type": "string"}, "league/fractal": {"type": "string"}, "jackchow/rbac": {"type": "string"}}, "required": ["php", "topthink/framework", "topthink/think-migration", "league/fractal", "jackchow/rbac"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"app\\": {"type": "string"}}, "required": ["app\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"think-path": {"type": "string"}}, "required": ["think-path"]}, "config": {"type": "object", "properties": {"preferred-install": {"type": "string"}}, "required": ["preferred-install"]}}, "required": ["name", "description", "type", "keywords", "homepage", "license", "minimum-stability", "authors", "require", "autoload", "extra", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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=avalentar", "word" : "avalentar", "infinitivo" : "avalentar", "participio" : ["avalentado"], "gerundio" : ["avalentando"], "tenses" : {"3" : [["avalento"], ["avalentas", "avalent\u00e1s"], ["avalenta"], ["avalentamos"], ["avalent\u00e1is", "avalentan"], ["avalentan"]], "4" : [["avalent\u00e9"], ["avalentaste"], ["avalent\u00f3"], ["avalentamos"], ["avalentasteis", "avalentaron"], ["avalentaron"]], "5" : [["avalentaba"], ["avalentabas"], ["avalentaba"], ["avalent\u00e1bamos"], ["avalentabais", "avalentaban"], ["avalentaban"]], "6" : [["avalentar\u00eda"], ["avalentar\u00edas"], ["avalentar\u00eda"], ["avalentar\u00edamos"], ["avalentar\u00edais", "avalentar\u00edan"], ["avalentar\u00edan"]], "7" : [["avalentar\u00e9"], ["avalentar\u00e1s"], ["avalentar\u00e1"], ["avalentaremos"], ["avalentar\u00e9is", "avalentar\u00e1n"], ["avalentar\u00e1n"]], "8" : [["avalente"], ["avalentes"], ["avalente"], ["avalentemos"], ["avalent\u00e9is", "avalenten"], ["avalenten"]], "9" : [["avalentara"], ["avalentaras"], ["avalentara"], ["avalent\u00e1ramos"], ["avalentarais", "avalentaran"], ["avalentaran"]], "10" : [["avalentase"], ["avalentases"], ["avalentase"], ["avalent\u00e1semos"], ["avalentaseis", "avalentasen"], ["avalentasen"]], "11" : [["avalentare"], ["avalentares"], ["avalentare"], ["avalent\u00e1remos"], ["avalentareis", "avalentaren"], ["avalentaren"]], "12" : {"1" : ["avalenta"], "2" : ["avalente"], "3" : ["avalentemos"], "4" : ["avalentad"], "5" : ["avalenten"]}}}
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "participio", "gerundio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "00e6d3048bc437818cd5ca3885dce436aa537b4c"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"base_url": {"type": "string"}, "hostname": {"type": "string"}, "notebook_dir": {"type": "string"}, "password": {"type": "boolean"}, "pid": {"type": "integer"}, "port": {"type": "integer"}, "secure": {"type": "boolean"}, "sock": {"type": "string"}, "token": {"type": "string"}, "url": {"type": "string"}}, "required": ["base_url", "hostname", "notebook_dir", "password", "pid", "port", "secure", "sock", "token", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"base_url" : "/", "hostname" : "localhost", "notebook_dir" : "C:\\Users\\phong\\Desktop\\Youtube-Dashboard", "password" : false, "pid" : 16992, "port" : 8888, "secure" : false, "sock" : "", "token" : "0e17ad631c51829cf60181c64e1120e230c8c2652f9b30e4", "url" : "http://localhost:8888/"}
json_instruct
{"type": "object", "properties": {"base_url": {"type": "string"}, "hostname": {"type": "string"}, "notebook_dir": {"type": "string"}, "password": {"type": "boolean"}, "pid": {"type": "integer"}, "port": {"type": "integer"}, "secure": {"type": "boolean"}, "sock": {"type": "string"}, "token": {"type": "string"}, "url": {"type": "string"}}, "required": ["base_url", "hostname", "notebook_dir", "password", "pid", "port", "secure", "sock", "token", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "url", "content"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"title" : "\u4e66\u5199\u5343\u79cb\u4f1f\u4e1a \u4e60\u8fd1\u5e73\u8fd9\u4e9b\u521d\u5fc3\u8bdd\u8bed\u8a00\u8c06\u610f\u6df1", "url" : "https://news.sina.com.cn/gov/xlxw/2020-01-11/doc-iihnzhha1765691.shtml", "content" : "\u4e66\u5199\u5343\u79cb\u4f1f\u4e1a \u4e60\u8fd1\u5e73\u8fd9\u4e9b\u521d\u5fc3\u8bdd\u8bed\u8a00\u8c06\u610f\u6df1"}, {"title" : "1", "url" : "1", "content" : "1"}, {"title" : "22", "url" : "22", "content" : "22"}, {"title" : "3", "url" : "3", "content" : "3"}, {"title" : "4", "url" : "4", "content" : "4"}, {"title" : "555", "url" : "55", "content" : "5"}, {"title" : "6", "url" : "6", "content" : "6"}, {"title" : "55", "url" : "555", "content" : "55555"}, {"title" : "z", "url" : "z", "content" : "z"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "content": {"type": "string"}}, "required": ["title", "url", "content"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"editor.tabSize": {"type": "integer"}, "files.insertFinalNewline": {"type": "boolean"}, "files.associations": {"type": "object", "properties": {".babelrc": {"type": "string"}, ".eslintrc": {"type": "string"}, ".prettierrc": {"type": "string"}, ".stylelintrc": {"type": "string"}, ".env": {"type": "string"}, ".env.example": {"type": "string"}, ".eslintignore": {"type": "string"}, ".flowconfig": {"type": "string"}, ".npmrc": {"type": "string"}, ".yarnrc": {"type": "string"}}, "required": [".babelrc", ".eslintrc", ".prettierrc", ".stylelintrc", ".env", ".env.example", ".eslintignore", ".flowconfig", ".npmrc", ".yarnrc"]}, "flow.useNPMPackagedFlow": {"type": "boolean"}, "javascript.format.enable": {"type": "boolean"}, "javascript.validate.enable": {"type": "boolean"}, "typescript.format.enable": {"type": "boolean"}, "typescript.validate.enable": {"type": "boolean"}, "eslint.enable": {"type": "boolean"}, "eslint.workingDirectories": {"type": "array", "items": {"type": "string"}}, "eslint.packageManager": {"type": "string"}, "eslint.validate": {"type": "array", "items": {"type": "string"}}, "eslint.autoFixOnSave": {"type": "boolean"}, "stylelint.enable": {"type": "boolean"}, "prettier.eslintIntegration": {"type": "boolean"}, "prettier.ignorePath": {"type": "string"}}, "required": ["editor.tabSize", "files.insertFinalNewline", "files.associations", "flow.useNPMPackagedFlow", "javascript.format.enable", "javascript.validate.enable", "typescript.format.enable", "typescript.validate.enable", "eslint.enable", "eslint.workingDirectories", "eslint.packageManager", "eslint.validate", "eslint.autoFixOnSave", "stylelint.enable", "prettier.eslintIntegration", "prettier.ignorePath"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"editor.tabSize" : 2, "files.insertFinalNewline" : true, "files.associations" : {".babelrc" : "jsonc", ".eslintrc" : "jsonc", ".prettierrc" : "jsonc", ".stylelintrc" : "json", ".env" : "ignore", ".env.example" : "ignore", ".eslintignore" : "ignore", ".flowconfig" : "ignore", ".npmrc" : "ignore", ".yarnrc" : "ignore"}, "flow.useNPMPackagedFlow" : true, "javascript.format.enable" : false, "javascript.validate.enable" : false, "typescript.format.enable" : false, "typescript.validate.enable" : false, "eslint.enable" : true, "eslint.workingDirectories" : ["."], "eslint.packageManager" : "yarn", "eslint.validate" : ["javascript", "javascriptreact"], "eslint.autoFixOnSave" : true, "stylelint.enable" : true, "prettier.eslintIntegration" : true, "prettier.ignorePath" : ".eslintignore"}
json_instruct
{"type": "object", "properties": {"editor.tabSize": {"type": "integer"}, "files.insertFinalNewline": {"type": "boolean"}, "files.associations": {"type": "object", "properties": {".babelrc": {"type": "string"}, ".eslintrc": {"type": "string"}, ".prettierrc": {"type": "string"}, ".stylelintrc": {"type": "string"}, ".env": {"type": "string"}, ".env.example": {"type": "string"}, ".eslintignore": {"type": "string"}, ".flowconfig": {"type": "string"}, ".npmrc": {"type": "string"}, ".yarnrc": {"type": "string"}}, "required": [".babelrc", ".eslintrc", ".prettierrc", ".stylelintrc", ".env", ".env.example", ".eslintignore", ".flowconfig", ".npmrc", ".yarnrc"]}, "flow.useNPMPackagedFlow": {"type": "boolean"}, "javascript.format.enable": {"type": "boolean"}, "javascript.validate.enable": {"type": "boolean"}, "typescript.format.enable": {"type": "boolean"}, "typescript.validate.enable": {"type": "boolean"}, "eslint.enable": {"type": "boolean"}, "eslint.workingDirectories": {"type": "array", "items": {"type": "string"}}, "eslint.packageManager": {"type": "string"}, "eslint.validate": {"type": "array", "items": {"type": "string"}}, "eslint.autoFixOnSave": {"type": "boolean"}, "stylelint.enable": {"type": "boolean"}, "prettier.eslintIntegration": {"type": "boolean"}, "prettier.ignorePath": {"type": "string"}}, "required": ["editor.tabSize", "files.insertFinalNewline", "files.associations", "flow.useNPMPackagedFlow", "javascript.format.enable", "javascript.validate.enable", "typescript.format.enable", "typescript.validate.enable", "eslint.enable", "eslint.workingDirectories", "eslint.packageManager", "eslint.validate", "eslint.autoFixOnSave", "stylelint.enable", "prettier.eslintIntegration", "prettier.ignorePath"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Make": {"type": "string"}, "Model": {"type": "string"}, "Orientation": {"type": "integer"}, "XResolution": {"type": "integer"}, "YResolution": {"type": "integer"}, "ResolutionUnit": {"type": "integer"}, "Software": {"type": "string"}, "YCbCrPositioning": {"type": "integer"}, "ExifOffset": {"type": "integer"}, "Compression": {"type": "integer"}, "ThumbnailOffset": {"type": "integer"}, "ThumbnailLength": {"type": "integer"}, "ColorSpace": {"type": "integer"}, "ExifImageWidth": {"type": "integer"}, "ExifImageHeight": {"type": "integer"}, "CustomRendered": {"type": "integer"}, "ExposureMode": {"type": "integer"}, "WhiteBalance": {"type": "integer"}, "SceneCaptureType": {"type": "integer"}, "DigitalZoomRatio": {"type": "integer"}}, "required": ["Make", "Model", "Orientation", "XResolution", "YResolution", "ResolutionUnit", "Software", "YCbCrPositioning", "ExifOffset", "Compression", "ThumbnailOffset", "ThumbnailLength", "ColorSpace", "ExifImageWidth", "ExifImageHeight", "CustomRendered", "ExposureMode", "WhiteBalance", "SceneCaptureType", "DigitalZoomRatio"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Make" : "Nokia", "Model" : "6500c", "Orientation" : 1, "XResolution" : 300, "YResolution" : 300, "ResolutionUnit" : 2, "Software" : "V 03.21", "YCbCrPositioning" : 1, "ExifOffset" : 158, "Compression" : 6, "ThumbnailOffset" : 398, "ThumbnailLength" : 5262, "ColorSpace" : 1, "ExifImageWidth" : 1200, "ExifImageHeight" : 1600, "CustomRendered" : 0, "ExposureMode" : 0, "WhiteBalance" : 0, "SceneCaptureType" : 0, "DigitalZoomRatio" : 1}
json_instruct
{"type": "object", "properties": {"Make": {"type": "string"}, "Model": {"type": "string"}, "Orientation": {"type": "integer"}, "XResolution": {"type": "integer"}, "YResolution": {"type": "integer"}, "ResolutionUnit": {"type": "integer"}, "Software": {"type": "string"}, "YCbCrPositioning": {"type": "integer"}, "ExifOffset": {"type": "integer"}, "Compression": {"type": "integer"}, "ThumbnailOffset": {"type": "integer"}, "ThumbnailLength": {"type": "integer"}, "ColorSpace": {"type": "integer"}, "ExifImageWidth": {"type": "integer"}, "ExifImageHeight": {"type": "integer"}, "CustomRendered": {"type": "integer"}, "ExposureMode": {"type": "integer"}, "WhiteBalance": {"type": "integer"}, "SceneCaptureType": {"type": "integer"}, "DigitalZoomRatio": {"type": "integer"}}, "required": ["Make", "Model", "Orientation", "XResolution", "YResolution", "ResolutionUnit", "Software", "YCbCrPositioning", "ExifOffset", "Compression", "ThumbnailOffset", "ThumbnailLength", "ColorSpace", "ExifImageWidth", "ExifImageHeight", "CustomRendered", "ExposureMode", "WhiteBalance", "SceneCaptureType", "DigitalZoomRatio"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"primitive_leaves": {"type": "string"}}, "required": ["primitive_leaves"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"primitive_leaves" : "environmental:cherry_leaves"}
json_instruct
{"type": "object", "properties": {"primitive_leaves": {"type": "string"}}, "required": ["primitive_leaves"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Victory Island, Guiuan, Eastern Samar, Eastern Visayas (Region VIII), PH", "locale" : "ph.eastern-visayas-region-viii.eastern-samar.guiuan.victory-island", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "10", "region_reference" : "8", "region_name" : "Eastern Visayas (Region VIII)", "province_id" : "31", "province_reference" : "31", "province_name" : "Eastern Samar", "city_id" : "510", "city_reference" : "558", "city_name" : "Guiuan", "barangay_id" : "14386", "barangay_reference" : "13522", "barangay_name" : "Victory Island"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[125.649467, 11.04386], [125.649719, 11.04361], [125.650002, 11.04361], [125.650558, 11.04306], [125.650558, 11.04222], [125.650818, 11.04196], [125.650719, 11.04183], [125.650002, 11.04111], [125.649437, 11.04167], [125.64917, 11.04167], [125.648613, 11.04222], [125.648613, 11.0425], [125.648514, 11.0426], [125.648331, 11.04278], [125.648888, 11.04333], [125.648888, 11.04361], [125.648987, 11.04371], [125.64917, 11.04389], [125.649437, 11.04389], [125.649467, 11.04386]]], [[[125.627701, 11.04757], [125.627777, 11.0475], [125.628052, 11.0475], [125.628304, 11.04726], [125.628326, 11.04722], [125.628609, 11.04722], [125.628754, 11.04708], [125.628891, 11.04694], [125.631111, 11.04694], [125.631668, 11.04639], [125.631172, 11.0459], [125.631111, 11.04583], [125.631111, 11.04556], [125.63028, 11.04472], [125.629448, 11.04472], [125.629211, 11.04449], [125.629173, 11.04444], [125.628891, 11.04444], [125.628754, 11.0443], [125.628609, 11.04417], [125.628052, 11.04417], [125.627777, 11.04444], [125.627777, 11.045], [125.628052, 11.04528], [125.628052, 11.04556], [125.626663, 11.04694], [125.626663, 11.04722], [125.62722, 11.04778], [125.627502, 11.04778], [125.627701, 11.04757]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"uglifyjs": {"type": "string"}}, "required": ["uglifyjs"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}}, "required": ["name", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "dandom", "devDependencies" : {"uglifyjs" : "latest"}, "scripts" : {"build" : "uglifyjs DOM.js -c -m -o DOM.min.js; gzip < DOM.min.js > DOM.min.js.gz; stat --printf=\"%s\" DOM.min.js.gz; echo \" bytes\""}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"uglifyjs": {"type": "string"}}, "required": ["uglifyjs"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}}, "required": ["name", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"143202PD": {"type": "string"}, "143228PD": {"type": "string"}}, "required": ["143202PD", "143228PD"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"143202PD" : "-31.957116,115.865318", "143228PD" : "-31.955438,115.862428"}
json_instruct
{"type": "object", "properties": {"143202PD": {"type": "string"}, "143228PD": {"type": "string"}}, "required": ["143202PD", "143228PD"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage_url": {"type": "string"}, "manifest_version": {"type": "integer"}, "minimum_chrome_version": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"run_at": {"type": "string"}, "matches": {"type": "array", "items": {"type": "string"}}, "css": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["run_at", "matches", "css", "js"]}}}, "required": ["name", "version", "description", "homepage_url", "manifest_version", "minimum_chrome_version", "permissions", "icons", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Refined GitHub", "version" : "0.2.0", "description" : "Simplifies the GitHub interface and adds useful features", "homepage_url" : "https://github.com/ChaseKnowlden/refined-github", "manifest_version" : 2, "minimum_chrome_version" : "48", "permissions" : ["https://github.com/*"], "icons" : {"128" : "icon.png"}, "content_scripts" : [{"run_at" : "document_start", "matches" : ["https://github.com/*"], "css" : ["content.css", "custom.css"], "js" : ["vendor/sprint.min.js", "vendor/gh-injection.js", "content.js"]}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage_url": {"type": "string"}, "manifest_version": {"type": "integer"}, "minimum_chrome_version": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"run_at": {"type": "string"}, "matches": {"type": "array", "items": {"type": "string"}}, "css": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["run_at", "matches", "css", "js"]}}}, "required": ["name", "version", "description", "homepage_url", "manifest_version", "minimum_chrome_version", "permissions", "icons", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 9390, "info" : {"name" : "\u30cb\u30b3\u30cb\u30b3\u5927\u767e\u79d1 \u30aa\u30fc\u30c8\u30ea\u30f3\u30af\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u5909\u66f4", "description" : "\u30aa\u30fc\u30c8\u30ea\u30f3\u30af\u306e\u30b9\u30bf\u30a4\u30eb\u3092\u306f\u3066\u306a\u30d6\u30c3\u30af\u30de\u30fc\u30af\u306e\u30aa\u30fc\u30c8\u30ea\u30f3\u30af\u3068\u540c\u3058\u3088\u3046\u306a\u30b9\u30bf\u30a4\u30eb\u306b\u3057\u307e\u3059\u3002\r\nFirefox 3\u304b\u3089\u306e\u65b0\u6a5f\u80fd\u3092\u4f7f\u3063\u3066\u3044\u308b\u306e\u3067\uff0cFirefox 3\u4ee5\u964d\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u306e\u5229\u7528\u3092\u63a8\u5968\u3057\u307e\u3059(Firefox 2\u3060\u3068\u8868\u793a\u304c\u5d29\u308c\u308b\u3068\u3044\u3046\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093)\u3002", "additionalInfo" : null, "format" : "uso", "category" : "nicovideo", "createdAt" : "2008-08-06T00:03:21.000Z", "updatedAt" : "2008-08-06T00:03:21.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 5754, "name" : "gifnksm"}}, "stats" : {"installs" : {"total" : 417, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "9390_after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"dic.nicovideo.jp\") {\r\n a.auto, a.auto-hdn {\r\n color: inherit !important;\r\n border-bottom: 1px solid silver !important;\r\n -moz-border-radius: 2px;\r\n line-height: 1 !important;\r\n display: inline-block;\r\n }\r\n a.auto:hover, a.auto-hdn:hover,\r\n a.auto:focus, a.auto-hdn:focus {\r\n text-decoration: none !important;\r\n border-bottom-color: #ff8800 !important;\r\n color: #ff8800 !important;\r\n }\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"turf.js": {"type": "string"}, "turf.min.js": {"type": "string"}}, "required": ["turf.js", "turf.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"turf.js" : "sha512-rxKB+oVR4ZTrNrrzTQfn59qovW4Pw4orBRmxatdVsdRkpXXXcHlSQ+e1qR31PuSbhIcfgp+vbb4MwDapSfoxZA==", "turf.min.js" : "sha512-I5PabYhgJ7k8kVKgMG/Zjgrc6WpYZ2T7toB/eUW6iuCIEsNrsxlC/zEYnqTSwbdhco1xBAgMPlFToHRLanJnSQ=="}
json_instruct
{"type": "object", "properties": {"turf.js": {"type": "string"}, "turf.min.js": {"type": "string"}}, "required": ["turf.js", "turf.min.js"], "$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": {"test": {"type": "string"}, "tsc": {"type": "string"}}, "required": ["test", "tsc"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "markstypescriptdemo", "version" : "1.0.1", "description" : "This is a demo. plain and simple", "main" : "index.js", "scripts" : {"test" : "test", "tsc" : "tsc"}, "author" : "Mark Moore", "license" : "ISC", "devDependencies" : {"typescript" : "^4.4.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "tsc": {"type": "string"}}, "required": ["test", "tsc"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"namaKab" : "PATI", "originalFilename" : "Agus Suprianto.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 261307, "noUrut" : 1, "nama" : "AGUS SUPRIANTO", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PATI", "originalFilename" : "Endang Lelonowati.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 261228, "noUrut" : 2, "nama" : "ENDANG LELONOWATI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "PATI", "originalFilename" : "Warso.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 261554, "noUrut" : 3, "nama" : "WARSO, S.E", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PATI", "originalFilename" : "Musriah.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 269919, "noUrut" : 4, "nama" : "MUSRI'AH", "stringJenisKelamin" : "Perempuan"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [232.585, 133.018, 1, 231.856, 152.12, 1, 212.127, 156.782, 1, 196.074, 191.364, 1, 225.259, 199.317, 1, 250.726, 150.517, 1, 262.396, 177.503, 1, 255.524, 202.069, 1, 211.781, 225.573, 1, 224.446, 278.16, 1, 205.813, 332.383, 1, 235.542, 229.167, 1, 260.685, 273.486, 1, 236.172, 304.632, 1, 226.708, 129.312, 1, 234.832, 127.74, 1, 218.529, 133.862, 1, 241.654, 128.193, 1], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "auto": {"type": "boolean"}, "contexts": {"type": "array", "items": {}}, "responses": {"type": "array", "items": {"type": "object", "properties": {"resetContexts": {"type": "boolean"}, "affectedContexts": {"type": "array", "items": {}}, "parameters": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "integer"}, "lang": {"type": "string"}, "speech": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "lang", "speech"]}}, "defaultResponsePlatforms": {"type": "object", "properties": {}, "required": []}, "speech": {"type": "array", "items": {}}}, "required": ["resetContexts", "affectedContexts", "parameters", "messages", "defaultResponsePlatforms", "speech"]}}, "priority": {"type": "integer"}, "webhookUsed": {"type": "boolean"}, "webhookForSlotFilling": {"type": "boolean"}, "fallbackIntent": {"type": "boolean"}, "events": {"type": "array", "items": {}}}, "required": ["id", "name", "auto", "contexts", "responses", "priority", "webhookUsed", "webhookForSlotFilling", "fallbackIntent", "events"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3956b637-7b3b-4ffc-b0d9-a38cbb4d72ec", "name" : "Cactus Intent", "auto" : true, "contexts" : [], "responses" : [{"resetContexts" : false, "affectedContexts" : [], "parameters" : [], "messages" : [{"type" : 0, "lang" : "nl", "speech" : ["Ga weg! Ok, sorry wat wil je weten?", "Geef me ruimte! Hey, wil je wat weten?", "Ga weg! Wat moet je?"]}, {"type" : 0, "lang" : "en", "speech" : ["Go Away. Hey, I'm sorry, what do you want to know?", "Give me more space. Hey, do you want to know something?", "Stay back. Hey, Can you see how sharp I am?"]}], "defaultResponsePlatforms" : {}, "speech" : []}], "priority" : 500000, "webhookUsed" : false, "webhookForSlotFilling" : false, "fallbackIntent" : false, "events" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "auto": {"type": "boolean"}, "contexts": {"type": "array", "items": {}}, "responses": {"type": "array", "items": {"type": "object", "properties": {"resetContexts": {"type": "boolean"}, "affectedContexts": {"type": "array", "items": {}}, "parameters": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "integer"}, "lang": {"type": "string"}, "speech": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "lang", "speech"]}}, "defaultResponsePlatforms": {"type": "object", "properties": {}, "required": []}, "speech": {"type": "array", "items": {}}}, "required": ["resetContexts", "affectedContexts", "parameters", "messages", "defaultResponsePlatforms", "speech"]}}, "priority": {"type": "integer"}, "webhookUsed": {"type": "boolean"}, "webhookForSlotFilling": {"type": "boolean"}, "fallbackIntent": {"type": "boolean"}, "events": {"type": "array", "items": {}}}, "required": ["id", "name", "auto", "contexts", "responses", "priority", "webhookUsed", "webhookForSlotFilling", "fallbackIntent", "events"], "$schema": "http://json-schema.org/draft-07/schema#"}