input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"username": {"type": "string"}, "additional_items": {"type": "array", "items": {}}, "items": {"type": "object", "properties": {"1": {"type": "string"}, "3": {"type": "string"}, "2": {"type": "string"}, "5": {"type": "string"}, "4": {"type": "string"}, "6": {"type": "string"}}, "required": ["1", "3", "2", "5", "4", "6"]}, "tweet_id": {"type": "string"}, "timespent": {"type": "number"}, "starttime": {"type": "number"}, "itemcount": {"type": "string"}, "savingtime": {"type": "number"}}, "required": ["username", "additional_items", "items", "tweet_id", "timespent", "starttime", "itemcount", "savingtime"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"username" : "user10", "additional_items" : [], "items" : {"1" : "neutral", "3" : "neutral", "2" : "neutral", "5" : "neutral", "4" : "positive", "6" : "positive"}, "tweet_id" : "581214244949094400", "timespent" : 181.02912902832, "starttime" : 1429724340.6065, "itemcount" : "6", "savingtime" : 1429724521.6356} | json_instruct | {"type": "object", "properties": {"username": {"type": "string"}, "additional_items": {"type": "array", "items": {}}, "items": {"type": "object", "properties": {"1": {"type": "string"}, "3": {"type": "string"}, "2": {"type": "string"}, "5": {"type": "string"}, "4": {"type": "string"}, "6": {"type": "string"}}, "required": ["1", "3", "2", "5", "4", "6"]}, "tweet_id": {"type": "string"}, "timespent": {"type": "number"}, "starttime": {"type": "number"}, "itemcount": {"type": "string"}, "savingtime": {"type": "number"}}, "required": ["username", "additional_items", "items", "tweet_id", "timespent", "starttime", "itemcount", "savingtime"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "null"}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "8697cbe4-5c73-4049-9df6-978395fb51a0", "playerTags" : [], "teamTags" : ["747b8e4a-7e50-4638-a973-ea7950a3e739"], "gameTags" : [], "metadata" : null, "created" : "2021-03-20T18:24:22.692Z", "season" : 13, "tournament" : -1, "type" : 158, "day" : 111, "phase" : 11, "category" : 3, "description" : "The Tigers have been eliminated from the Season 14 Postseason.", "nuts" : 4} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "null"}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "rankine:block/tetrataenite_ore53"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$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"}, "license": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"MNC\\Bundle\\ProblemDetailsBundle\\": {"type": "string"}}, "required": ["MNC\\Bundle\\ProblemDetailsBundle\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/framework-bundle": {"type": "string"}, "mnavarrocarter/problem-details": {"type": "string"}}, "required": ["php", "symfony/framework-bundle", "mnavarrocarter/problem-details"]}, "require-dev": {"type": "object", "properties": {"symfony/phpunit-bridge": {"type": "string"}}, "required": ["symfony/phpunit-bridge"]}, "scripts": {"type": "object", "properties": {"test": {"type": "array", "items": {"type": "string"}}}, "required": ["test"]}}, "required": ["name", "license", "type", "authors", "autoload", "require", "require-dev", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mnavarrocarter/problem-details-bundle", "license" : "MIT", "type" : "symfony-bundle", "authors" : [{"name" : "Mat\u00edas Navarro Carter", "email" : "mnavarro@option.cl"}], "autoload" : {"psr-4" : {"MNC\\Bundle\\ProblemDetailsBundle\\" : ""}}, "require" : {"php" : "^7.1.3", "symfony/framework-bundle" : "^4.0", "mnavarrocarter/problem-details" : "^0.1"}, "require-dev" : {"symfony/phpunit-bridge" : "^4.0"}, "scripts" : {"test" : ["SYMFONY_PHPUNIT_VERSION=6.5 vendor/bin/simple-phpunit"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"MNC\\Bundle\\ProblemDetailsBundle\\": {"type": "string"}}, "required": ["MNC\\Bundle\\ProblemDetailsBundle\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/framework-bundle": {"type": "string"}, "mnavarrocarter/problem-details": {"type": "string"}}, "required": ["php", "symfony/framework-bundle", "mnavarrocarter/problem-details"]}, "require-dev": {"type": "object", "properties": {"symfony/phpunit-bridge": {"type": "string"}}, "required": ["symfony/phpunit-bridge"]}, "scripts": {"type": "object", "properties": {"test": {"type": "array", "items": {"type": "string"}}}, "required": ["test"]}}, "required": ["name", "license", "type", "authors", "autoload", "require", "require-dev", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"phonetic-search-test": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "dist": {"type": "string"}, "add-exec-to-dist": {"type": "string"}, "add-dist-to-git": {"type": "string"}}, "required": ["phonetic-search-test", "test", "lint", "dist", "add-exec-to-dist", "add-dist-to-git"]}, "pre-commit": {"type": "array", "items": {"type": "string"}}, "bin": {"type": "object", "properties": {"phonetic-search-cli": {"type": "string"}}, "required": ["phonetic-search-cli"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "jasmine-node": {"type": "string"}, "pre-commit": {"type": "string"}}, "required": ["babel-cli", "babel-eslint", "babel-preset-es2015", "eslint", "eslint-config-airbnb", "jasmine-node", "pre-commit"]}}, "required": ["name", "version", "description", "main", "scripts", "pre-commit", "bin", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "phonetic-search-cli", "version" : "0.0.1", "description" : "Phonetic Search as a CLI tool implementation", "main" : "lib/main.js", "scripts" : {"phonetic-search-test" : "babel-node src/main.js", "test" : "NODE_ENV=test babel-node ./node_modules/jasmine-node/lib/jasmine-node/cli.js test/", "lint" : "eslint --cache .", "dist" : "rm -r lib && babel src -d lib", "add-exec-to-dist" : "chmod +x lib/main.js", "add-dist-to-git" : "git add lib/*"}, "pre-commit" : ["test", "lint", "dist", "add-exec-to-dist", "add-dist-to-git"], "bin" : {"phonetic-search-cli" : "./lib/main.js"}, "repository" : {"type" : "git", "url" : "git+ssh://git@github.com/m4n3z40/phonetic-search-cli.git"}, "keywords" : ["phonetic", "search", "terms", "algorithm", "words"], "author" : "Allan Baptista (allan.marques@ymail.com)", "license" : "MIT", "bugs" : {"url" : "https://github.com/m4n3z40/phonetic-search-cli/issues"}, "homepage" : "https://github.com/m4n3z40/phonetic-search-cli#readme", "devDependencies" : {"babel-cli" : "^6.4.5", "babel-eslint" : "^4.1.8", "babel-preset-es2015" : "^6.3.13", "eslint" : "^1.10.3", "eslint-config-airbnb" : "^5.0.0", "jasmine-node" : "^1.14.5", "pre-commit" : "^1.1.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"phonetic-search-test": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "dist": {"type": "string"}, "add-exec-to-dist": {"type": "string"}, "add-dist-to-git": {"type": "string"}}, "required": ["phonetic-search-test", "test", "lint", "dist", "add-exec-to-dist", "add-dist-to-git"]}, "pre-commit": {"type": "array", "items": {"type": "string"}}, "bin": {"type": "object", "properties": {"phonetic-search-cli": {"type": "string"}}, "required": ["phonetic-search-cli"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "jasmine-node": {"type": "string"}, "pre-commit": {"type": "string"}}, "required": ["babel-cli", "babel-eslint", "babel-preset-es2015", "eslint", "eslint-config-airbnb", "jasmine-node", "pre-commit"]}}, "required": ["name", "version", "description", "main", "scripts", "pre-commit", "bin", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ovhManagerSupport_header": {"type": "string"}}, "required": ["ovhManagerSupport_header"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ovhManagerSupport_header" : "Meine Support-Anfragen"} | json_instruct | {"type": "object", "properties": {"ovhManagerSupport_header": {"type": "string"}}, "required": ["ovhManagerSupport_header"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"tslib": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["tslib", "uuid"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/webpack": {"type": "string"}, "@types/webpack-dev-server": {"type": "string"}, "ts-loader": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@types/node", "@types/webpack", "@types/webpack-dev-server", "ts-loader", "ts-node", "typescript", "webpack", "webpack-cli", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "private", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@lgr.dev/ws-promise", "version" : "0.1.0", "description" : "A promise-based WebSocket request-response handler.", "main" : "index.js", "private" : false, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "build" : "webpack"}, "repository" : {"type" : "git", "url" : "git+https://github.com/lukeribchester/ws-promise.git"}, "keywords" : ["websocket", "promise", "request-response"], "author" : "Luke Gareth Ribchester", "license" : "MIT", "bugs" : {"url" : "https://github.com/lukeribchester/ws-promise/issues"}, "homepage" : "https://github.com/lukeribchester/ws-promise#readme", "dependencies" : {"tslib" : "^2.3.1", "uuid" : "^3.4.0"}, "devDependencies" : {"@types/node" : "^16.9.1", "@types/webpack" : "^5.28.0", "@types/webpack-dev-server" : "^4.1.0", "ts-loader" : "^9.2.5", "ts-node" : "^10.2.1", "typescript" : "^4.4.3", "webpack" : "^5.52.1", "webpack-cli" : "^4.8.0", "webpack-dev-server" : "^4.2.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"tslib": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["tslib", "uuid"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/webpack": {"type": "string"}, "@types/webpack-dev-server": {"type": "string"}, "ts-loader": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@types/node", "@types/webpack", "@types/webpack-dev-server", "ts-loader", "ts-node", "typescript", "webpack", "webpack-cli", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "private", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"4966": {"type": "string"}, "4968": {"type": "string"}}, "required": ["4966", "4968"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"4966" : "4967", "4968" : "4969"} | json_instruct | {"type": "object", "properties": {"4966": {"type": "string"}, "4968": {"type": "string"}}, "required": ["4966", "4968"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"AE-AJ": {"type": "string"}, "AE-AZ": {"type": "string"}, "AE-DU": {"type": "string"}, "AE-FU": {"type": "string"}, "AE-RK": {"type": "string"}, "AE-SH": {"type": "string"}, "AE-UQ": {"type": "string"}}, "required": ["AE-AJ", "AE-AZ", "AE-DU", "AE-FU", "AE-RK", "AE-SH", "AE-UQ"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"AE-AJ" : "Adschman", "AE-AZ" : "Abu Dhabi", "AE-DU" : "Dubai", "AE-FU" : "Fudschaira", "AE-RK" : "Ra\u2019s al-Chaima", "AE-SH" : "Sch\u0101rdscha", "AE-UQ" : "Umm al-Qaiwain"} | json_instruct | {"type": "object", "properties": {"AE-AJ": {"type": "string"}, "AE-AZ": {"type": "string"}, "AE-DU": {"type": "string"}, "AE-FU": {"type": "string"}, "AE-RK": {"type": "string"}, "AE-SH": {"type": "string"}, "AE-UQ": {"type": "string"}}, "required": ["AE-AJ", "AE-AZ", "AE-DU", "AE-FU", "AE-RK", "AE-SH", "AE-UQ"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"retro_vecs": {"type": "object", "properties": {"mu": {"type": "number"}, "std": {"type": "number"}, "scores": {"type": "array", "items": {"type": "number"}}}, "required": ["mu", "std", "scores"]}}, "required": ["retro_vecs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"retro_vecs" : {"mu" : 0.07039999999999999, "std" : 0.008360023923410745, "scores" : [0.061, 0.0775, 0.06, 0.092, 0.0605, 0.0785, 0.0725, 0.0695, 0.068, 0.0775, 0.0765, 0.073, 0.0675, 0.0645, 0.061, 0.0815, 0.06, 0.0725, 0.071, 0.0635]}} | json_instruct | {"type": "object", "properties": {"retro_vecs": {"type": "object", "properties": {"mu": {"type": "number"}, "std": {"type": "number"}, "scores": {"type": "array", "items": {"type": "number"}}}, "required": ["mu", "std", "scores"]}}, "required": ["retro_vecs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "testappauto572_dev_23468", "displayName" : "testappauto572_dev_23468"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this 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" : "Cristo Rey, Bato, Camarines Sur, Bicol Region (Region V), PH", "locale" : "ph.bicol-region-region-v.camarines-sur.bato.cristo-rey", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "2", "region_reference" : "5", "region_name" : "Bicol Region (Region V)", "province_id" : "20", "province_reference" : "20", "province_name" : "Camarines Sur", "city_id" : "1436", "city_reference" : "348", "city_name" : "Bato", "barangay_id" : "4531", "barangay_reference" : "8082", "barangay_name" : "Cristo Rey"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[123.322769, 13.31772], [123.324547, 13.30637], [123.317787, 13.30043], [123.307343, 13.29562], [123.30484, 13.29897], [123.299347, 13.30814], [123.316483, 13.31054], [123.317978, 13.31444], [123.319069, 13.31679], [123.322769, 13.31772]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "authors", "description", "main", "moduleType", "keywords", "license", "homepage", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "timetravel", "version" : "0.1.1", "authors" : ["Philipp Bock <p@philippbock.de> (http://philippbock.de)"], "description" : "A simple clock for simulations", "main" : "dist/timetravel.min.js", "moduleType" : ["amd", "globals", "node"], "keywords" : ["simulation", "simulated", "clock", "time"], "license" : "MIT", "homepage" : "https://github.com/pbock/timetravel", "ignore" : ["**/.*", "node_modules", "bower_components", "app/bower_components", "test", "tests"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "authors", "description", "main", "moduleType", "keywords", "license", "homepage", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"doesPlaySound:": {"type": "string"}, "executeShouldPlaySound:": {"type": "string"}, "setUp": {"type": "string"}, "shouldPlaySound:": {"type": "string"}, "shouldntPlaySound:": {"type": "string"}, "soundSystem": {"type": "string"}}, "required": ["doesPlaySound:", "executeShouldPlaySound:", "setUp", "shouldPlaySound:", "shouldntPlaySound:", "soundSystem"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"class" : {}, "instance" : {"doesPlaySound:" : "ct 8/19/2021 03:38", "executeShouldPlaySound:" : "ct 8/19/2021 02:34", "setUp" : "ct 8/19/2021 02:34", "shouldPlaySound:" : "ct 8/19/2021 02:33", "shouldntPlaySound:" : "ct 8/19/2021 02:33", "soundSystem" : "ct 8/19/2021 02:34"}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"doesPlaySound:": {"type": "string"}, "executeShouldPlaySound:": {"type": "string"}, "setUp": {"type": "string"}, "shouldPlaySound:": {"type": "string"}, "shouldntPlaySound:": {"type": "string"}, "soundSystem": {"type": "string"}}, "required": ["doesPlaySound:", "executeShouldPlaySound:", "setUp", "shouldPlaySound:", "shouldntPlaySound:", "soundSystem"]}}, "required": ["class", "instance"], "$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"}, "main": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start:noauth": {"type": "string"}}, "required": ["start", "start:noauth"]}, "dependencies": {"type": "object", "properties": {"@graphile-contrib/pg-non-null": {"type": "string"}, "@graphile-contrib/pg-simplify-inflector": {"type": "string"}, "graphile-utils": {"type": "string"}, "postgraphile": {"type": "string"}}, "required": ["@graphile-contrib/pg-non-null", "@graphile-contrib/pg-simplify-inflector", "graphile-utils", "postgraphile"]}}, "required": ["name", "version", "main", "description", "license", "repository", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@relay-modern-boilerplate/postgraphile", "version" : "1.0.0", "main" : "server.js", "description" : "PostGraphile package for relay-modern-boilerplate", "license" : "MIT", "repository" : {"type" : "git", "url" : "git://github.com/enisdenjo/relay-modern-boilerplate.git"}, "scripts" : {"start" : "node server.js", "start:noauth" : "NO_AUTH=t npm run start"}, "dependencies" : {"@graphile-contrib/pg-non-null" : "^1.0.3", "@graphile-contrib/pg-simplify-inflector" : "^3.0.0", "graphile-utils" : "^4.4.0", "postgraphile" : "^4.4.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start:noauth": {"type": "string"}}, "required": ["start", "start:noauth"]}, "dependencies": {"type": "object", "properties": {"@graphile-contrib/pg-non-null": {"type": "string"}, "@graphile-contrib/pg-simplify-inflector": {"type": "string"}, "graphile-utils": {"type": "string"}, "postgraphile": {"type": "string"}}, "required": ["@graphile-contrib/pg-non-null", "@graphile-contrib/pg-simplify-inflector", "graphile-utils", "postgraphile"]}}, "required": ["name", "version", "main", "description", "license", "repository", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"left": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "link": {"type": "string"}}, "required": ["name", "link"]}}, "right": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "link": {"type": "string"}, "roleTypes": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "link", "roleTypes"]}}}, "required": ["left", "right"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"left" : [{"name" : "Check a domain", "link" : "/home"}, {"name" : "My Domains", "link" : "/my-domains"}, {"name" : "Email Abuse", "link" : "/a/#/email-abuse", "external" : true}], "right" : [{"name" : "Domain Security", "link" : "/domain-security", "roleTypes" : ["Admin"]}, {"name" : "Metrics", "link" : "/metrics", "roleTypes" : ["Admin"]}, {"name" : "Admin", "link" : "/admin", "roleTypes" : ["Admin"]}]} | json_instruct | {"type": "object", "properties": {"left": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "link": {"type": "string"}}, "required": ["name", "link"]}}, "right": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "link": {"type": "string"}, "roleTypes": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "link", "roleTypes"]}}}, "required": ["left", "right"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"PFHO": {"type": "number"}, "MGLN": {"type": "number"}, "ANTM": {"type": "number"}, "UNH": {"type": "number"}, "MOH": {"type": "number"}, "CNC": {"type": "number"}, "CI": {"type": "number"}, "HUM": {"type": "number"}, "CVS": {"type": "number"}, "ALHC": {"type": "number"}, "MPLN": {"type": "number"}, "OSCR": {"type": "number"}, "GTS": {"type": "number"}, "CLOV": {"type": "number"}, "CPYT": {"type": "number"}, "HRAA": {"type": "number"}, "NTEDY": {"type": "number"}}, "required": ["PFHO", "MGLN", "ANTM", "UNH", "MOH", "CNC", "CI", "HUM", "CVS", "ALHC", "MPLN", "OSCR", "GTS", "CLOV", "CPYT", "HRAA", "NTEDY"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PFHO" : 1.0000000000000002, "MGLN" : 0.3543166878554158, "ANTM" : 0.34983201295640726, "UNH" : 0.34357107696948797, "MOH" : 0.3323519108357535, "CNC" : 0.331710267810092, "CI" : 0.3295266461520774, "HUM" : 0.3167558800729317, "CVS" : 0.29708077884607537, "ALHC" : 0.2910485072511737, "MPLN" : 0.2864567956722964, "OSCR" : 0.2730781771722913, "GTS" : 0.25056431273967655, "CLOV" : 0.20447491389196604, "CPYT" : 0.19141558344883172, "HRAA" : 0.15810433544100522, "NTEDY" : 0.12522882570822433} | json_instruct | {"type": "object", "properties": {"PFHO": {"type": "number"}, "MGLN": {"type": "number"}, "ANTM": {"type": "number"}, "UNH": {"type": "number"}, "MOH": {"type": "number"}, "CNC": {"type": "number"}, "CI": {"type": "number"}, "HUM": {"type": "number"}, "CVS": {"type": "number"}, "ALHC": {"type": "number"}, "MPLN": {"type": "number"}, "OSCR": {"type": "number"}, "GTS": {"type": "number"}, "CLOV": {"type": "number"}, "CPYT": {"type": "number"}, "HRAA": {"type": "number"}, "NTEDY": {"type": "number"}}, "required": ["PFHO", "MGLN", "ANTM", "UNH", "MOH", "CNC", "CI", "HUM", "CVS", "ALHC", "MPLN", "OSCR", "GTS", "CLOV", "CPYT", "HRAA", "NTEDY"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}, "clipped": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["arcs", "type", "properties", "clipped", "id"]}}}, "required": ["type", "geometries"]}}, "required": ["vectile"]}, "type": {"type": "string"}, "transform": {"type": "object", "properties": {"translate": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "array", "items": {"type": "number"}}}, "required": ["translate", "scale"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["objects", "type", "transform", "arcs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"objects" : {"vectile" : {"type" : "GeometryCollection", "geometries" : [{"arcs" : [[0]], "type" : "Polygon", "properties" : {"id" : "27831"}, "clipped" : true, "id" : "b8971878a5"}, {"arcs" : [[1]], "type" : "Polygon", "properties" : {"id" : "28025"}, "clipped" : true, "id" : "4fcb95354e"}, {"arcs" : [[2]], "type" : "Polygon", "properties" : {"id" : "28040"}, "clipped" : true, "id" : "3e2f2786b5"}, {"arcs" : [[3]], "type" : "Polygon", "properties" : {"id" : "28088"}, "clipped" : true, "id" : "425e31ae24"}]}}, "type" : "Topology", "transform" : {"translate" : [15.180358886718748, 49.4261603951793], "scale" : [1.3411045074497585e-06, 8.722832815569181e-07]}, "arcs" : [[[1024, 235], [-78, -61], [-83, 125], [-224, 483], [-160, 242], [545, 0], [0, -789]], [[1024, 59], [-78, 115], [78, 61], [0, -176]], [[479, 1024], [160, -242], [224, -483], [-162, 194], [-167, 227], [-54, 112], [-191, 192], [190, 0]], [[289, 1024], [191, -192], [54, -112], [167, -227], [162, -194], [83, -125], [78, -115], [0, -59], [-39, 0], [-199, 292], [-274, 402], [-40, 59], [-46, 69], [-48, 54], [-129, 147], [-2, 1], [42, 0]]]} | json_instruct | {"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}, "clipped": {"type": "boolean"}, "id": {"type": "string"}}, "required": ["arcs", "type", "properties", "clipped", "id"]}}}, "required": ["type", "geometries"]}}, "required": ["vectile"]}, "type": {"type": "string"}, "transform": {"type": "object", "properties": {"translate": {"type": "array", "items": {"type": "number"}}, "scale": {"type": "array", "items": {"type": "number"}}}, "required": ["translate", "scale"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["objects", "type", "transform", "arcs"], "$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"}, "pkg_version": {"type": "string"}, "rebuild": {"type": "integer"}, "bottles": {"type": "object", "properties": {"arm64_monterey": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "arm64_big_sur": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "monterey": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "big_sur": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "catalina": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "x86_64_linux": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["arm64_monterey", "arm64_big_sur", "monterey", "big_sur", "catalina", "x86_64_linux"]}, "dependencies": {"type": "array", "items": {}}}, "required": ["name", "pkg_version", "rebuild", "bottles", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "cilium-cli", "pkg_version" : "0.9.3", "rebuild" : 0, "bottles" : {"arm64_monterey" : {"url" : "https://ghcr.io/v2/homebrew/core/cilium-cli/blobs/sha256:02eb6de131b21a0f488771ca986e64e3743315b8be1efd9f0f8f54d502f4dc3b"}, "arm64_big_sur" : {"url" : "https://ghcr.io/v2/homebrew/core/cilium-cli/blobs/sha256:bf774f0ed7ff6bda1dc72ccfb13c4e7a9a31bfe37ea2bf8d74318e71896ff335"}, "monterey" : {"url" : "https://ghcr.io/v2/homebrew/core/cilium-cli/blobs/sha256:db0b69dfedf90dddb751642bfa059f37d52acfb8ca2f386edad53f63c011a52d"}, "big_sur" : {"url" : "https://ghcr.io/v2/homebrew/core/cilium-cli/blobs/sha256:512ea2b560a89d9eff2574a05130a817c22a13d6e2068cbcb18a4eab21eedfab"}, "catalina" : {"url" : "https://ghcr.io/v2/homebrew/core/cilium-cli/blobs/sha256:48a1785fa7b4b2e38c7d490779aa53fabd04768fea3242b23690809c58da6ea9"}, "x86_64_linux" : {"url" : "https://ghcr.io/v2/homebrew/core/cilium-cli/blobs/sha256:2b69640bd4301be137e18dc160a9ff7588c1851d2309e15b620f2c57054f1ed7"}}, "dependencies" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "pkg_version": {"type": "string"}, "rebuild": {"type": "integer"}, "bottles": {"type": "object", "properties": {"arm64_monterey": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "arm64_big_sur": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "monterey": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "big_sur": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "catalina": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "x86_64_linux": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["arm64_monterey", "arm64_big_sur", "monterey", "big_sur", "catalina", "x86_64_linux"]}, "dependencies": {"type": "array", "items": {}}}, "required": ["name", "pkg_version", "rebuild", "bottles", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"mil3.7.7:0.1": {"type": "string"}, "mil3.7.7:0.2": {"type": "string"}, "mil3.7.7:0.3": {"type": "string"}, "mil3.7.7:1.1": {"type": "string"}, "mil3.7.7:1.2": {"type": "string"}, "mil3.7.7:1.3": {"type": "string"}, "mil3.7.7:1.4": {"type": "string"}, "mil3.7.7:1.5": {"type": "string"}, "mil3.7.7:1.6": {"type": "string"}, "mil3.7.7:1.7": {"type": "string"}, "mil3.7.7:1.8": {"type": "string"}, "mil3.7.7:2.1": {"type": "string"}, "mil3.7.7:3.1": {"type": "string"}}, "required": ["mil3.7.7:0.1", "mil3.7.7:0.2", "mil3.7.7:0.3", "mil3.7.7:1.1", "mil3.7.7:1.2", "mil3.7.7:1.3", "mil3.7.7:1.4", "mil3.7.7:1.5", "mil3.7.7:1.6", "mil3.7.7:1.7", "mil3.7.7:1.8", "mil3.7.7:2.1", "mil3.7.7:3.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"mil3.7.7:0.1" : "Milindapa\u00f1ha", "mil3.7.7:0.2" : "Ar\u016bpadhammavavatth\u0101navagga", "mil3.7.7:0.3" : "7. P\u0101papu\u00f1\u00f1\u0101na\u1e41 app\u0101nappabh\u0101vapa\u00f1ha", "mil3.7.7:1.1" : "R\u0101j\u0101 \u0101ha\u2014", "mil3.7.7:1.2" : "\u201cbhante n\u0101gasena, katara\u1e41 nu kho bahutara\u1e41 pu\u00f1\u00f1a\u1e41 v\u0101 apu\u00f1\u00f1a\u1e41 v\u0101\u201dti?", "mil3.7.7:1.3" : "\u201cPu\u00f1\u00f1a\u1e41 kho, mah\u0101r\u0101ja, bahutara\u1e41, apu\u00f1\u00f1a\u1e41 thokan\u201dti.", "mil3.7.7:1.4" : "\u201cKena k\u0101ra\u1e47en\u0101\u201dti?", "mil3.7.7:1.5" : "\u201cApu\u00f1\u00f1a\u1e41 kho, mah\u0101r\u0101ja, karonto vippa\u1e6dis\u0101r\u012b hoti \u2018p\u0101pakamma\u1e41 may\u0101 katan\u2019ti, tena p\u0101pa\u1e41 na va\u1e0d\u1e0dhati.", "mil3.7.7:1.6" : "Pu\u00f1\u00f1a\u1e41 kho, mah\u0101r\u0101ja, karonto avippa\u1e6dis\u0101r\u012b hoti, avippa\u1e6dis\u0101rino p\u0101mojja\u1e41 j\u0101yati, pamuditassa p\u012bti j\u0101yati, p\u012btimanassa k\u0101yo passambhati, passaddhak\u0101yo sukha\u1e41 vedeti, sukhino citta\u1e41 sam\u0101dhiyati, sam\u0101hito yath\u0101bh\u016bta\u1e41 paj\u0101n\u0101ti, tena k\u0101ra\u1e47ena pu\u00f1\u00f1a\u1e41 va\u1e0d\u1e0dhati.", "mil3.7.7:1.7" : "Puriso kho, mah\u0101r\u0101ja, chinnahatthap\u0101do bhagavato eka\u1e41 uppalahattha\u1e41 datv\u0101 ekanavutikapp\u0101ni vinip\u0101ta\u1e41 na gacchissati.", "mil3.7.7:1.8" : "Imin\u0101pi, mah\u0101r\u0101ja, k\u0101ra\u1e47ena bha\u1e47\u0101mi \u2018pu\u00f1\u00f1a\u1e41 bahutara\u1e41, apu\u00f1\u00f1a\u1e41 thokan\u2019\u201dti.", "mil3.7.7:2.1" : "\u201cKallosi, bhante n\u0101gasen\u0101\u201dti.", "mil3.7.7:3.1" : "P\u0101papu\u00f1\u00f1\u0101na\u1e41 app\u0101nappabh\u0101vapa\u00f1ho sattamo."} | json_instruct | {"type": "object", "properties": {"mil3.7.7:0.1": {"type": "string"}, "mil3.7.7:0.2": {"type": "string"}, "mil3.7.7:0.3": {"type": "string"}, "mil3.7.7:1.1": {"type": "string"}, "mil3.7.7:1.2": {"type": "string"}, "mil3.7.7:1.3": {"type": "string"}, "mil3.7.7:1.4": {"type": "string"}, "mil3.7.7:1.5": {"type": "string"}, "mil3.7.7:1.6": {"type": "string"}, "mil3.7.7:1.7": {"type": "string"}, "mil3.7.7:1.8": {"type": "string"}, "mil3.7.7:2.1": {"type": "string"}, "mil3.7.7:3.1": {"type": "string"}}, "required": ["mil3.7.7:0.1", "mil3.7.7:0.2", "mil3.7.7:0.3", "mil3.7.7:1.1", "mil3.7.7:1.2", "mil3.7.7:1.3", "mil3.7.7:1.4", "mil3.7.7:1.5", "mil3.7.7:1.6", "mil3.7.7:1.7", "mil3.7.7:1.8", "mil3.7.7:2.1", "mil3.7.7:3.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"LPG_UI_URL": {"type": "string"}}, "required": ["LPG_UI_URL"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"LPG_UI_URL" : "http://localhost:3001"} | json_instruct | {"type": "object", "properties": {"LPG_UI_URL": {"type": "string"}}, "required": ["LPG_UI_URL"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"accessKeyId": {"type": "string"}, "secretAccessKey": {"type": "string"}, "region": {"type": "string"}}, "required": ["accessKeyId", "secretAccessKey", "region"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"accessKeyId" : "5TUBEIJp2ZUvBEh0M59T", "secretAccessKey" : "7obkhwWha/as9bxyq0a7tgzy67JE+RtItSyWrtaE", "region" : "us-west-2"} | json_instruct | {"type": "object", "properties": {"accessKeyId": {"type": "string"}, "secretAccessKey": {"type": "string"}, "region": {"type": "string"}}, "required": ["accessKeyId", "secretAccessKey", "region"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "ep_markdown.showMarkdown": {"type": "string"}}, "required": ["@metadata", "ep_markdown.showMarkdown"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["Besnik b"]}, "ep_markdown.showMarkdown" : "Shfaq Markdown"} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "ep_markdown.showMarkdown": {"type": "string"}}, "required": ["@metadata", "ep_markdown.showMarkdown"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"e" : ["\ufff9`Mikicaposan~ `ako~ `koni~ `a~ `mararaway~ `tilid~.\ufffa\ufffb\u6211\u628a\u9019\u4e9b\u932f\u5b57\u7701\u7565\u4e86\u3002"], "f" : "\u628a\u2026\u7701\u7565\u4e86\u3001\u5ffd\u7565\u4e86\u3002"}, {"e" : ["\ufff9`Mikicaposan~ `a~ `dademak~.\ufffa\ufffb\u5ffd\u7565\u7684\u4e8b\u60c5\u3002"], "f" : "\u6307\u6240\u7701\u7565\u7684\u3001\u5ffd\u7565\u7684(\u5c0d\u8c61)\u3002"}]}], "stem" : "kicapos", "t" : "mikicaposan"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "_from": {"type": "string"}, "_resolved": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "_from", "_resolved"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mangodb", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/redaphid/mangodb.git"}, "author" : "redaphid", "license" : "MIT", "bugs" : {"url" : "https://github.com/redaphid/mangodb/issues"}, "homepage" : "https://github.com/redaphid/mangodb", "_from" : "mangodb@1.0.0", "_resolved" : "http://registry.npm.taobao.org/mangodb/download/mangodb-1.0.0.tgz"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "_from": {"type": "string"}, "_resolved": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "_from", "_resolved"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"skills-technical-title": {"type": "string"}, "skills-professional-title": {"type": "string"}, "skills-technical-team-work": {"type": "string"}, "skills-technical-responsability": {"type": "string"}, "skills-technical-communication": {"type": "string"}}, "required": ["skills-technical-title", "skills-professional-title", "skills-technical-team-work", "skills-technical-responsability", "skills-technical-communication"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"skills-technical-title" : "Technical Skills", "skills-professional-title" : "Professional Skills", "skills-technical-team-work" : "Team Work", "skills-technical-responsability" : "Responsability", "skills-technical-communication" : "Communication"} | json_instruct | {"type": "object", "properties": {"skills-technical-title": {"type": "string"}, "skills-professional-title": {"type": "string"}, "skills-technical-team-work": {"type": "string"}, "skills-technical-responsability": {"type": "string"}, "skills-technical-communication": {"type": "string"}}, "required": ["skills-technical-title", "skills-professional-title", "skills-technical-team-work", "skills-technical-responsability", "skills-technical-communication"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"vidage.css": {"type": "string"}, "vidage.js": {"type": "string"}}, "required": ["vidage.css", "vidage.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vidage.css" : "sha512-Qip+ZngKW+yFE0QmycjW02b0gg0mJYhRfEnJCy374nDSjpwBXRehQRZJRh6/CqDzg/NbdWig5tG0NNcp7PSK0g==", "vidage.js" : "sha512-6+829PLH+VL4YJaqeIrHEYSlU3GctfC8lNsvX0f0zMHtW819HJ2o5H7k+q2hjZv4LQfEUs4I+pE8TZK/bFmuIw=="} | json_instruct | {"type": "object", "properties": {"vidage.css": {"type": "string"}, "vidage.js": {"type": "string"}}, "required": ["vidage.css", "vidage.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"player_id": {"type": "integer"}, "name": {"type": "string"}, "position": {"type": "string"}, "height": {"type": "string"}, "weight": {"type": "string"}, "current_team": {"type": "null"}, "birth_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_date": {"type": "null"}, "college": {"type": "string"}, "high_school": {"type": "string"}, "draft_team": {"type": "string"}, "draft_round": {"type": "string"}, "draft_position": {"type": "string"}, "draft_year": {"type": "string"}, "current_salary": {"type": "null"}, "hof_induction_year": {"type": "null"}}, "required": ["player_id", "name", "position", "height", "weight", "current_team", "birth_date", "birth_place", "death_date", "college", "high_school", "draft_team", "draft_round", "draft_position", "draft_year", "current_salary", "hof_induction_year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"player_id" : 2377, "name" : "Byron Braggs", "position" : "DE", "height" : "6-4", "weight" : "290", "current_team" : null, "birth_date" : "1959-10-10", "birth_place" : "Montgomery, AL", "death_date" : null, "college" : "Alabama", "high_school" : "George Washington Carver, AL", "draft_team" : "Green Bay Packers", "draft_round" : "5", "draft_position" : "117", "draft_year" : "1981", "current_salary" : null, "hof_induction_year" : null} | json_instruct | {"type": "object", "properties": {"player_id": {"type": "integer"}, "name": {"type": "string"}, "position": {"type": "string"}, "height": {"type": "string"}, "weight": {"type": "string"}, "current_team": {"type": "null"}, "birth_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_date": {"type": "null"}, "college": {"type": "string"}, "high_school": {"type": "string"}, "draft_team": {"type": "string"}, "draft_round": {"type": "string"}, "draft_position": {"type": "string"}, "draft_year": {"type": "string"}, "current_salary": {"type": "null"}, "hof_induction_year": {"type": "null"}}, "required": ["player_id", "name", "position", "height", "weight", "current_team", "birth_date", "birth_place", "death_date", "college", "high_school", "draft_team", "draft_round", "draft_position", "draft_year", "current_salary", "hof_induction_year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"m-dropdown-group": {"type": "object", "properties": {}, "required": []}}, "required": ["m-dropdown-group"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"m-dropdown-group" : {}} | json_instruct | {"type": "object", "properties": {"m-dropdown-group": {"type": "object", "properties": {}, "required": []}}, "required": ["m-dropdown-group"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"JugglingDangerously": {"type": "array", "items": {"type": "string"}}}, "required": ["JugglingDangerously"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"JugglingDangerously" : ["RealLife", "UpToEleven", "ChainsawGood", "DontTryThisAtHome", "WesternAnimation", "DiagonalCut", "TruthInTelevision", "JugglingLoadedGuns", "MarvelUniverse", "RealityIsUnrealistic", "TigerByTheTail", "OhNoNotAgain", "DistinctionWithoutADifference", "ImagineSpot", "DiscOneNuke", "RussianRoulette", "MinigameZone", "PullingThemselvesTogether", "WhatAnIdiot"]} | json_instruct | {"type": "object", "properties": {"JugglingDangerously": {"type": "array", "items": {"type": "string"}}}, "required": ["JugglingDangerously"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bl": {"type": "string"}, "coap": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "ip6addr": {"type": "string"}, "package.json": {"type": "string"}}, "required": ["bl", "coap", "cors", "express", "ip6addr", "package.json"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}}, "required": ["@types/node"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ti_wisun_webapp", "version" : "1.0.0", "description" : "Webserver App for TI Wi-SUN FAN Solution", "main" : "ti_wisunfan_webserver.js", "dependencies" : {"bl" : "^5.0.0", "coap" : "^0.25.0", "cors" : "^2.8.5", "express" : "^4.17.1", "ip6addr" : "^0.2.4", "package.json" : "^2.0.1"}, "devDependencies" : {"@types/node" : "14.0.27"}, "scripts" : {"test" : "node ti_wisunfan_webserver.js"}, "keywords" : ["TI", "Wi-SUN", "FAN"], "author" : "Texas Instruments Inc", "license" : "ISC"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bl": {"type": "string"}, "coap": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "ip6addr": {"type": "string"}, "package.json": {"type": "string"}}, "required": ["bl", "coap", "cors", "express", "ip6addr", "package.json"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}}, "required": ["@types/node"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.6.7": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.6.7"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["0.6.7"], "meta" : {"description" : "Wrapper for getmail, providing daemon mode and encrypted passwords", "homepage" : "http://forge.spalax.fr.eu.org/chval", "license" : "GPLv3 or any later version"}, "versions" : {"0.6.7" : {"sha256" : "0d9ffaeb9c715d37c9d0ba9a154eabe5e142ae8ff1f0184bf703a12aaae4d143", "url" : "https://files.pythonhosted.org/packages/33/2f/ff513daa5da0bd81aac42650a377279547deebf79cfbe58868f0da179fe8/chval-0.6.7.tar.gz"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.6.7": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.6.7"]}}, "required": ["latest_version", "meta", "versions"], "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "bin": {"type": "object", "properties": {"ffbt-init": {"type": "string"}}, "required": ["ffbt-init"]}, "dependencies": {"type": "object", "properties": {"yeoman-environment": {"type": "string"}, "yeoman-generator": {"type": "string"}}, "required": ["yeoman-environment", "yeoman-generator"]}}, "required": ["name", "version", "description", "repository", "author", "license", "bugs", "homepage", "bin", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ffbt-init", "version" : "1.0.1", "description" : "Bootstrap the web app with FFBT", "repository" : {"type" : "git", "url" : "git+https://github.com/fluix/ffbt-init.git"}, "author" : "Alexandr Rodik <rodik@readdle.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/fluix/ffbt-init/issues"}, "homepage" : "https://github.com/fluix/ffbt-init#readme", "bin" : {"ffbt-init" : "./index.js"}, "dependencies" : {"yeoman-environment" : "^2.6.0", "yeoman-generator" : "^4.2.0"}} | 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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "bin": {"type": "object", "properties": {"ffbt-init": {"type": "string"}}, "required": ["ffbt-init"]}, "dependencies": {"type": "object", "properties": {"yeoman-environment": {"type": "string"}, "yeoman-generator": {"type": "string"}}, "required": ["yeoman-environment", "yeoman-generator"]}}, "required": ["name", "version", "description", "repository", "author", "license", "bugs", "homepage", "bin", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"flags": {"type": "string"}, "pattern": {"type": "string"}}, "required": ["flags", "pattern"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"flags" : "-HanrEo", "pattern" : "twitter.*[1-9][0-9]+-[0-9a-zA-Z]{40}"} | json_instruct | {"type": "object", "properties": {"flags": {"type": "string"}, "pattern": {"type": "string"}}, "required": ["flags", "pattern"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 4273, "children" : [{"id" : 4274, "name" : "urban youth -- black"}], "name" : "urban youth"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this 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" : "Zamora, Tayug, Pangasinan, Ilocos Region (Region I), PH", "locale" : "ph.ilocos-region-region-i.pangasinan.tayug.zamora", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "11", "region_reference" : "1", "region_name" : "Ilocos Region (Region I)", "province_id" : "61", "province_reference" : "61", "province_name" : "Pangasinan", "city_id" : "1339", "city_reference" : "1281", "city_name" : "Tayug", "barangay_id" : "39493", "barangay_reference" : "33206", "barangay_name" : "Zamora"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[120.782448, 16.00359], [120.782784, 16.002251], [120.783379, 15.99992], [120.783684, 15.99684], [120.783249, 15.99312], [120.782509, 15.98987], [120.762611, 15.9928], [120.762917, 15.99302], [120.762192, 16.001011], [120.782448, 16.00359]]]]}} | 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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"client_id": {"type": "string"}, "acr_values": {"type": "string"}, "authority": {"type": "string"}, "ApiVersion": {"type": "string"}, "redirect_uri": {"type": "string"}, "response_type": {"type": "string"}, "scope": {"type": "string"}, "post_logout_redirect_uri": {"type": "string"}, "filterProtocolClaims": {"type": "boolean"}, "loadUserInfo": {"type": "boolean"}, "revokeAccessTokenOnSignout": {"type": "boolean"}, "accessTokenExpiringNotificationTime": {"type": "integer"}, "automaticSilentRenew": {"type": "boolean"}, "silent_redirect_uri": {"type": "string"}, "userName": {"type": "string"}, "password": {"type": "string"}}, "required": ["client_id", "acr_values", "authority", "ApiVersion", "redirect_uri", "response_type", "scope", "post_logout_redirect_uri", "filterProtocolClaims", "loadUserInfo", "revokeAccessTokenOnSignout", "accessTokenExpiringNotificationTime", "automaticSilentRenew", "silent_redirect_uri", "userName", "password"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"client_id" : "PLACEHOLDER_REPLACE_WITH_CLIENT_ID", "acr_values" : "tenant:PLACEHOLDER_REPLACE_WITH_TENANT_ID", "authority" : "https://uswe.datahub.connect.aveva.com/identity", "ApiVersion" : "v1", "redirect_uri" : "http://localhost:5004/callback.html", "response_type" : "code", "scope" : "openid ocsapi", "post_logout_redirect_uri" : "http://localhost:5004/index.html", "filterProtocolClaims" : true, "loadUserInfo" : true, "revokeAccessTokenOnSignout" : true, "accessTokenExpiringNotificationTime" : 60, "automaticSilentRenew" : true, "silent_redirect_uri" : "http://localhost:5004/silent-refresh.html", "userName" : "PLACEHOLDER_REPLACE_WITH_USERNAME_TEST_ONLY", "password" : "PLACEHOLDER_REPLACE_WITH_PASSWORD_TEST_ONLY"} | json_instruct | {"type": "object", "properties": {"client_id": {"type": "string"}, "acr_values": {"type": "string"}, "authority": {"type": "string"}, "ApiVersion": {"type": "string"}, "redirect_uri": {"type": "string"}, "response_type": {"type": "string"}, "scope": {"type": "string"}, "post_logout_redirect_uri": {"type": "string"}, "filterProtocolClaims": {"type": "boolean"}, "loadUserInfo": {"type": "boolean"}, "revokeAccessTokenOnSignout": {"type": "boolean"}, "accessTokenExpiringNotificationTime": {"type": "integer"}, "automaticSilentRenew": {"type": "boolean"}, "silent_redirect_uri": {"type": "string"}, "userName": {"type": "string"}, "password": {"type": "string"}}, "required": ["client_id", "acr_values", "authority", "ApiVersion", "redirect_uri", "response_type", "scope", "post_logout_redirect_uri", "filterProtocolClaims", "loadUserInfo", "revokeAccessTokenOnSignout", "accessTokenExpiringNotificationTime", "automaticSilentRenew", "silent_redirect_uri", "userName", "password"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {"type": "string"}, "kemasan": {"type": "string"}, "dosis": {"type": "string"}, "penyajian": {"type": "string"}, "pabrik": {"type": "string"}, "id": {"type": "string"}, "category_id": {"type": "string"}}, "required": ["name", "harga", "golongan", "kandungan", "indikasi", "kontraindikasi", "perhatian", "efeksamping", "indeksamanwanitahamil", "kemasan", "dosis", "penyajian", "pabrik", "id", "category_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "NEO IODINE LARUTAN 60 ML", "harga" : " Rp. 14.520/ kemasan", "golongan" : "http://medicastore.com/image_banner/obat_bebas_terbatas.gif", "kandungan" : "Iodin Povidon / povidone iodine", "indikasi" : "Infeksi kulit & luka, antiseptik kulit sebelum dan sesudah operasi.", "kontraindikasi" : "", "perhatian" : "Idiosinkrasi Iodin. Penggunaan berlebihan.", "efeksamping" : "", "indeksamanwanitahamil" : "", "kemasan" : "Solution 10 % x 60 mL.", "dosis" : "Gunakan pada daerah yang membutuhkan.", "penyajian" : "Tak ada pilihan", "pabrik" : "Combiphar.", "id" : "3992", "category_id" : "15"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {"type": "string"}, "kemasan": {"type": "string"}, "dosis": {"type": "string"}, "penyajian": {"type": "string"}, "pabrik": {"type": "string"}, "id": {"type": "string"}, "category_id": {"type": "string"}}, "required": ["name", "harga", "golongan", "kandungan", "indikasi", "kontraindikasi", "perhatian", "efeksamping", "indeksamanwanitahamil", "kemasan", "dosis", "penyajian", "pabrik", "id", "category_id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"status": {"type": "boolean"}, "message": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"uuid": {"type": "string"}, "metadata": {"type": "string"}, "rm": {"type": "string"}, "expireSet": {"type": "integer"}, "expireTimestamp": {"type": "integer"}, "deleteTimestamp": {"type": "integer"}, "timestamp": {"type": "integer"}, "chunks": {"type": "integer"}, "bucket": {"type": "string"}, "region": {"type": "string"}, "parent": {"type": "string"}, "version": {"type": "integer"}, "favorited": {"type": "integer"}}, "required": ["uuid", "metadata", "rm", "expireSet", "expireTimestamp", "deleteTimestamp", "timestamp", "chunks", "bucket", "region", "parent", "version", "favorited"]}}}, "required": ["status", "message", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : true, "message" : "Recent files fetched.", "data" : [{"uuid" : "53183d9c-d811-45b6-8b4c-cdea8392ca7d", "metadata" : "U2FsdGVkX19a30M4s1BWxSQEZnK0a59WyJCGCjFwrlPukYbMWGWhRlCd/+7cN6UdNr/lsy0GVY9KCiRaDz3mX6fqmuIzVnyD32XhNZWh+vEWu2ITqgeQWm4PVESP13G3dqoeAYNLiu8SVh1yeqrth3SQSVJ8g11pu3uas9ZO3h6ciqhcHst7Y73+9sblKA56", "rm" : "Q7iIAGULXOxNvs4JSt2LH6AGUXY96zQV", "expireSet" : 1, "expireTimestamp" : 4790101408, "deleteTimestamp" : 4790101408, "timestamp" : 1636501408, "chunks" : 1, "bucket" : "filen-1", "region" : "de-1", "parent" : "cf2af9a0-6f4e-485d-862c-0459f4662cf1", "version" : 1, "favorited" : 0}, {"uuid" : "af26328c-1ebf-4a92-b20a-ba3d5d08261c", "metadata" : "U2FsdGVkX1/1UYLIMbe5uwGXkbHbBRNzDL+Hz1L7E7kza0n6fsyk5waNpbS3HYb1ggFOP/TIyvtOZFzXY8PXWApWnqZLNMj4Rxf965Al7jx5DkuF2x3m2ZhAegMkeHf7c3mHLTjxOxh566WwI1LnBfyOGoT2jOsw2tbZZsql2TpiqyTkDn5SMrf6WEg7Me5jvn+hEMlgvPdZVS19XG9hkAsloRGzocIbAjxySw9mOH6URhfFICFdKBVQggL+vROv", "rm" : "XDmAPnnYHMQNT5yACLql9kEbNvS697yQ", "expireSet" : 1, "expireTimestamp" : 4788430583, "deleteTimestamp" : 4788430583, "timestamp" : 1634830584, "chunks" : 3, "bucket" : "filen-1", "region" : "de-1", "parent" : "cf2af9a0-6f4e-485d-862c-0459f4662cf1", "version" : 1, "favorited" : 0}]} | json_instruct | {"type": "object", "properties": {"status": {"type": "boolean"}, "message": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"uuid": {"type": "string"}, "metadata": {"type": "string"}, "rm": {"type": "string"}, "expireSet": {"type": "integer"}, "expireTimestamp": {"type": "integer"}, "deleteTimestamp": {"type": "integer"}, "timestamp": {"type": "integer"}, "chunks": {"type": "integer"}, "bucket": {"type": "string"}, "region": {"type": "string"}, "parent": {"type": "string"}, "version": {"type": "integer"}, "favorited": {"type": "integer"}}, "required": ["uuid", "metadata", "rm", "expireSet", "expireTimestamp", "deleteTimestamp", "timestamp", "chunks", "bucket", "region", "parent", "version", "favorited"]}}}, "required": ["status", "message", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "conditions": {"type": "array", "items": {}}, "level_available": {"type": "integer"}, "tier": {"type": "integer"}, "resources": {"type": "array", "items": {"type": "string"}}, "options": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "result": {"type": "array", "items": {}}, "displayed_result": {"type": "string"}}, "required": ["text", "result", "displayed_result"]}}}, "required": ["type", "description", "conditions", "level_available", "tier", "resources", "options"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "the_game", "description" : "Your journey leads you through a beautiful clearing in the midst of a dense forest. The sun is shining down on you and your troupe, causing the grass and surrounding shrubbery, still damp with the morning dew, to glisten as it dances in the breeze. You take a deep breath and, for that moment, you feel at one with your environment, with the world that, all too often, seems full of woe and violence. In the centre of the clearing is a singular tree, old and magnificent, providing shade and shelter to lively critters that frolic along its branches. Its sturdy trunk stands strong and defiant, a solitary bastion of hope in a world that seems to be forgetting the meaning of the word. Stuck to the trunk, with a rusty knife, is a single piece of parchment with something written on it. You approach to read the words of wisdom left by another clearly inspired by the beauty of this place. It reads; 'YOU LOST THE GAME...'", "conditions" : [], "level_available" : 1, "tier" : 1, "resources" : ["existing_unit:random1"], "options" : [{"text" : "Continue", "result" : [], "displayed_result" : "nothing"}, {"text" : "Cry out in senseless rage, then continue", "result" : ["morale:-1"], "displayed_result" : "-morale"}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "conditions": {"type": "array", "items": {}}, "level_available": {"type": "integer"}, "tier": {"type": "integer"}, "resources": {"type": "array", "items": {"type": "string"}}, "options": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "result": {"type": "array", "items": {}}, "displayed_result": {"type": "string"}}, "required": ["text", "result", "displayed_result"]}}}, "required": ["type", "description", "conditions", "level_available", "tier", "resources", "options"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"meta": {"type": "object", "properties": {"desc": {"type": "string"}, "desc_long": {"type": "string"}, "home": {"type": "string"}, "license": {"type": "object", "properties": {"deprecated": {"type": "boolean"}, "free": {"type": "boolean"}, "fullName": {"type": "string"}, "redistributable": {"type": "boolean"}, "shortName": {"type": "string"}, "spdxId": {"type": "string"}, "url": {"type": "string"}}, "required": ["deprecated", "free", "fullName", "redistributable", "shortName", "spdxId", "url"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"email": {"type": "string"}, "github": {"type": "string"}, "githubId": {"type": "integer"}, "name": {"type": "string"}}, "required": ["email", "github", "githubId", "name"]}}}, "required": ["desc", "desc_long", "home", "license", "maintainers"]}, "versions": {"type": "array", "items": {"type": "object", "properties": {"commits": {"type": "array", "items": {"type": "object", "properties": {"first": {"type": "string"}, "last": {"type": "string"}}, "required": ["first", "last"]}}, "name": {"type": "string"}}, "required": ["commits", "name"]}}}, "required": ["meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"meta" : {"desc" : "DKIM + ARC email signing/verification tools + Python module", "desc_long" : "Python module that implements DKIM (DomainKeys Identified Mail) email\nsigning and verification. It also provides a number of conv\u0454nient tools\nfor command line signing and verification, as well as generating new DKIM\nrecords. This version also supports the experimental Authenticated\nReceived Chain (ARC) protocol.\n", "home" : "https://launchpad.net/dkimpy", "license" : {"deprecated" : false, "free" : true, "fullName" : "BSD 3-clause \"New\" or \"Revised\" License", "redistributable" : true, "shortName" : "bsd3", "spdxId" : "BSD-3-Clause", "url" : "https://spdx.org/licenses/BSD-3-Clause.html"}, "maintainers" : [{"email" : "ml.software@leenaa.rs", "github" : "leenaars", "githubId" : 4158274, "name" : "Michiel Leenaars"}]}, "versions" : [{"commits" : [{"first" : "02ac13b563c082eaa51e8acdbe492a7961231836", "last" : "024f518e65ffbe64f0f044b194ad15ec2e973788"}], "name" : "1.0.5"}]} | json_instruct | {"type": "object", "properties": {"meta": {"type": "object", "properties": {"desc": {"type": "string"}, "desc_long": {"type": "string"}, "home": {"type": "string"}, "license": {"type": "object", "properties": {"deprecated": {"type": "boolean"}, "free": {"type": "boolean"}, "fullName": {"type": "string"}, "redistributable": {"type": "boolean"}, "shortName": {"type": "string"}, "spdxId": {"type": "string"}, "url": {"type": "string"}}, "required": ["deprecated", "free", "fullName", "redistributable", "shortName", "spdxId", "url"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"email": {"type": "string"}, "github": {"type": "string"}, "githubId": {"type": "integer"}, "name": {"type": "string"}}, "required": ["email", "github", "githubId", "name"]}}}, "required": ["desc", "desc_long", "home", "license", "maintainers"]}, "versions": {"type": "array", "items": {"type": "object", "properties": {"commits": {"type": "array", "items": {"type": "object", "properties": {"first": {"type": "string"}, "last": {"type": "string"}}, "required": ["first", "last"]}}, "name": {"type": "string"}}, "required": ["commits", "name"]}}}, "required": ["meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "parent_id": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}, "states": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "integer"}, "type": {"type": "string"}}, "required": ["name", "value", "type"]}}, "capabilities": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["name", "parameters"]}}, "site_id": {"type": "string"}, "name": {"type": "string"}, "available": {"type": "boolean"}}, "required": ["id", "type", "parent_id", "categories", "states", "capabilities", "site_id", "name", "available"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1", "type" : "roller_shutter_positionable_stateful_rs100", "parent_id" : "1234-5678-91011-121314", "categories" : ["actuator", "roller_shutter"], "states" : [{"name" : "position", "value" : 0, "type" : "integer"}], "capabilities" : [{"name" : "position_low_speed", "parameters" : [{"name" : "position", "type" : "integer"}]}, {"name" : "position", "parameters" : [{"name" : "position", "type" : "integer"}]}, {"name" : "close", "parameters" : []}, {"name" : "identify", "parameters" : []}, {"name" : "open", "parameters" : []}, {"name" : "stop", "parameters" : []}], "site_id" : "1234-5678-91011-121314", "name" : "Badezimmer EG", "available" : true} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "parent_id": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}, "states": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "integer"}, "type": {"type": "string"}}, "required": ["name", "value", "type"]}}, "capabilities": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["name", "parameters"]}}, "site_id": {"type": "string"}, "name": {"type": "string"}, "available": {"type": "boolean"}}, "required": ["id", "type", "parent_id", "categories", "states", "capabilities", "site_id", "name", "available"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "files": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepublishOnly": {"type": "string"}, "test": {"type": "string"}}, "required": ["prepublishOnly", "test"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["eslint", "mocha"]}}, "required": ["name", "version", "description", "keywords", "repository", "files", "author", "license", "main", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@funboxteam/eslint-plugin-no-only-tests", "version" : "4.0.1", "description" : "Disallow the use of describe.only() and it.only()", "keywords" : ["eslint", "eslintplugin", "eslint-plugin"], "repository" : {"type" : "git", "url" : "https://github.com/funbox/eslint-plugin-no-only-tests"}, "files" : ["lib/"], "author" : "Artem Frolkov <art.frolkov@gmail.com> (https://github.com/artfrolkov)", "license" : "MIT", "main" : "lib/index.js", "scripts" : {"prepublishOnly" : "lawyer", "test" : "mocha tests --recursive"}, "devDependencies" : {"eslint" : "5.16.0", "mocha" : "8.4.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "files": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepublishOnly": {"type": "string"}, "test": {"type": "string"}}, "required": ["prepublishOnly", "test"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["eslint", "mocha"]}}, "required": ["name", "version", "description", "keywords", "repository", "files", "author", "license", "main", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"api": {"type": "string"}, "auth": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "build-depends": {"type": "array", "items": {}}, "depends": {"type": "array", "items": {}}, "description": {"type": "string"}, "license": {"type": "string"}, "meta-version": {"type": "string"}, "name": {"type": "string"}, "perl": {"type": "string"}, "provides": {"type": "object", "properties": {"IO::Maildir": {"type": "string"}}, "required": ["IO::Maildir"]}, "resources": {"type": "array", "items": {}}, "source-url": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "test-depends": {"type": "array", "items": {}}, "version": {"type": "string"}}, "required": ["api", "auth", "authors", "build-depends", "depends", "description", "license", "meta-version", "name", "perl", "provides", "resources", "source-url", "tags", "test-depends", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"api" : "0", "auth" : "zef:neula", "authors" : ["Neula"], "build-depends" : [], "depends" : [], "description" : "Simple module for accessing maildirs", "license" : "Artistic-2.0", "meta-version" : "0", "name" : "IO::Maildir", "perl" : "6.d", "provides" : {"IO::Maildir" : "lib/IO/Maildir.rakumod"}, "resources" : [], "source-url" : "https://github.com/neula/IO-Maildir.git", "tags" : ["filesystem", "email", "IO"], "test-depends" : [], "version" : "0.0.2"} | json_instruct | {"type": "object", "properties": {"api": {"type": "string"}, "auth": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "build-depends": {"type": "array", "items": {}}, "depends": {"type": "array", "items": {}}, "description": {"type": "string"}, "license": {"type": "string"}, "meta-version": {"type": "string"}, "name": {"type": "string"}, "perl": {"type": "string"}, "provides": {"type": "object", "properties": {"IO::Maildir": {"type": "string"}}, "required": ["IO::Maildir"]}, "resources": {"type": "array", "items": {}}, "source-url": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "test-depends": {"type": "array", "items": {}}, "version": {"type": "string"}}, "required": ["api", "auth", "authors", "build-depends", "depends", "description", "license", "meta-version", "name", "perl", "provides", "resources", "source-url", "tags", "test-depends", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"media_id": {"type": "string"}, "local_id": {"type": "string"}, "title": {"type": "string"}, "thumbnail": {"type": "string"}, "desc": {"type": "string"}, "auto_desc": {"type": "object", "properties": {"translatedText": {"type": "string"}, "input": {"type": "string"}}, "required": ["translatedText", "input"]}}, "required": ["media_id", "local_id", "title", "thumbnail", "desc", "auto_desc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"media_id" : "77489586", "local_id" : "NSTF004\n", "title" : "File:Photo_from_the_STF_fair_1904_-_SMV_-_NSTF004.tif", "thumbnail" : "https://upload.wikimedia.org/wikipedia/commons/thumb/3/37/Photo_from_the_STF_fair_1904_-_SMV_-_NSTF004.tif/500px-Photo_from_the_STF_fair_1904_-_SMV_-_NSTF004.tif.jpg", "desc" : " Hilda Borgstr\u00f6m vid Roccoccost\u00e5ndet p\u00e5 Svenska teaterf\u00f6rbundets marknad \"H\u00f6stsol\" i Centralbadets tennishallar 1904. Skannat glasnegativ\n", "auto_desc" : {"translatedText" : "Hilda Borgstr\u00f6m at the Roccoccostand at the Swedish Theater Federation's market "Autumn Sun" in Centralbadet's tennis halls in 1904. Scanned glass negative", "input" : " Hilda Borgstr\u00f6m vid Roccoccost\u00e5ndet p\u00e5 Svenska teaterf\u00f6rbundets marknad \"H\u00f6stsol\" i Centralbadets tennishallar 1904. Skannat glasnegativ\n"}} | json_instruct | {"type": "object", "properties": {"media_id": {"type": "string"}, "local_id": {"type": "string"}, "title": {"type": "string"}, "thumbnail": {"type": "string"}, "desc": {"type": "string"}, "auto_desc": {"type": "object", "properties": {"translatedText": {"type": "string"}, "input": {"type": "string"}}, "required": ["translatedText", "input"]}}, "required": ["media_id", "local_id", "title", "thumbnail", "desc", "auto_desc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "points": {"type": "integer"}, "description": {"type": "string"}, "rewardItems": {"type": "array", "items": {}}, "icon": {"type": "string"}, "criteria": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}, "orderIndex": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["id", "description", "orderIndex", "max"]}}, "accountWide": {"type": "boolean"}, "factionId": {"type": "integer"}}, "required": ["id", "title", "points", "description", "rewardItems", "icon", "criteria", "accountWide", "factionId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 9207, "title" : "Goren Invasion", "points" : 5, "description" : "Successfully complete a Goren garrison invasion.", "rewardItems" : [], "icon" : "inv_elemental_primal_earth", "criteria" : [{"id" : 25327, "description" : "", "orderIndex" : 0, "max" : 1}], "accountWide" : false, "factionId" : 2} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "points": {"type": "integer"}, "description": {"type": "string"}, "rewardItems": {"type": "array", "items": {}}, "icon": {"type": "string"}, "criteria": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}, "orderIndex": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["id", "description", "orderIndex", "max"]}}, "accountWide": {"type": "boolean"}, "factionId": {"type": "integer"}}, "required": ["id", "title", "points", "description", "rewardItems", "icon", "criteria", "accountWide", "factionId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"batch_size": {"type": "integer"}, "n_steps": {"type": "integer"}, "gamma": {"type": "number"}, "learning_rate": {"type": "number"}, "ent_coef": {"type": "number"}, "clip_range": {"type": "number"}, "n_epochs": {"type": "integer"}, "gae_lambda": {"type": "number"}, "max_grad_norm": {"type": "number"}, "vf_coef": {"type": "number"}, "net_arch": {"type": "string"}, "activation_fn": {"type": "string"}, "agent_indicator": {"type": "string"}}, "required": ["batch_size", "n_steps", "gamma", "learning_rate", "ent_coef", "clip_range", "n_epochs", "gae_lambda", "max_grad_norm", "vf_coef", "net_arch", "activation_fn", "agent_indicator"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"batch_size" : 8, "n_steps" : 32, "gamma" : 0.995, "learning_rate" : 0.000136359, "ent_coef" : 0.0986783, "clip_range" : 0.2, "n_epochs" : 1, "gae_lambda" : 0.8, "max_grad_norm" : 0.8, "vf_coef" : 0.358549, "net_arch" : "small", "activation_fn" : "tanh", "agent_indicator" : "invert-replace"} | json_instruct | {"type": "object", "properties": {"batch_size": {"type": "integer"}, "n_steps": {"type": "integer"}, "gamma": {"type": "number"}, "learning_rate": {"type": "number"}, "ent_coef": {"type": "number"}, "clip_range": {"type": "number"}, "n_epochs": {"type": "integer"}, "gae_lambda": {"type": "number"}, "max_grad_norm": {"type": "number"}, "vf_coef": {"type": "number"}, "net_arch": {"type": "string"}, "activation_fn": {"type": "string"}, "agent_indicator": {"type": "string"}}, "required": ["batch_size", "n_steps", "gamma", "learning_rate", "ent_coef", "clip_range", "n_epochs", "gae_lambda", "max_grad_norm", "vf_coef", "net_arch", "activation_fn", "agent_indicator"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"packages": {"type": "object", "properties": {"wpackagist-plugin/katalyst-timthumb": {"type": "object", "properties": {"1.0": {"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.0", "dev-trunk"]}}, "required": ["wpackagist-plugin/katalyst-timthumb"]}}, "required": ["packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"packages" : {"wpackagist-plugin/katalyst-timthumb" : {"1.0" : {"name" : "wpackagist-plugin/katalyst-timthumb", "version" : "1.0", "version_normalized" : "1.0.0.0", "uid" : 188434, "dist" : {"type" : "zip", "url" : "https://downloads.wordpress.org/plugin/katalyst-timthumb.1.0.zip"}, "source" : {"type" : "svn", "url" : "https://plugins.svn.wordpress.org/katalyst-timthumb/", "reference" : "tags/1.0"}, "homepage" : "https://wordpress.org/plugins/katalyst-timthumb/", "require" : {"composer/installers" : "~1.0"}, "type" : "wordpress-plugin"}, "dev-trunk" : {"name" : "wpackagist-plugin/katalyst-timthumb", "version" : "dev-trunk", "version_normalized" : "9999999-dev", "uid" : 188435, "time" : "2013-02-07 02:33:52", "dist" : {"type" : "zip", "url" : "https://downloads.wordpress.org/plugin/katalyst-timthumb.zip?timestamp=1360204432"}, "source" : {"type" : "svn", "url" : "https://plugins.svn.wordpress.org/katalyst-timthumb/", "reference" : "trunk"}, "homepage" : "https://wordpress.org/plugins/katalyst-timthumb/", "require" : {"composer/installers" : "~1.0"}, "type" : "wordpress-plugin"}}}} | json_instruct | {"type": "object", "properties": {"packages": {"type": "object", "properties": {"wpackagist-plugin/katalyst-timthumb": {"type": "object", "properties": {"1.0": {"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.0", "dev-trunk"]}}, "required": ["wpackagist-plugin/katalyst-timthumb"]}}, "required": ["packages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Naturdenkmal": {"type": "boolean"}, "Naturdenkmal_Eigentum": {"type": "string"}, "nummer": {"type": "string"}, "objectid": {"type": "string"}, "baumbezeichnung_deutsch": {"type": "string"}, "baumbezeichnung_botanisch": {"type": "string"}}, "required": ["Naturdenkmal", "Naturdenkmal_Eigentum", "nummer", "objectid", "baumbezeichnung_deutsch", "baumbezeichnung_botanisch"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"Naturdenkmal" : true, "Naturdenkmal_Eigentum" : "privat", "nummer" : "Naturdenkmal-102", "objectid" : "Naturdenkmal-47", "baumbezeichnung_deutsch" : "Platane", "baumbezeichnung_botanisch" : "Platanus x hispanica"}, "geometry" : {"type" : "Point", "coordinates" : [15.444977981629926, 47.08331485165268]}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Naturdenkmal": {"type": "boolean"}, "Naturdenkmal_Eigentum": {"type": "string"}, "nummer": {"type": "string"}, "objectid": {"type": "string"}, "baumbezeichnung_deutsch": {"type": "string"}, "baumbezeichnung_botanisch": {"type": "string"}}, "required": ["Naturdenkmal", "Naturdenkmal_Eigentum", "nummer", "objectid", "baumbezeichnung_deutsch", "baumbezeichnung_botanisch"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "commit": {"type": "object", "properties": {"sha": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha", "url"]}}, "required": ["name", "commit"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "master", "commit" : {"sha" : "8f1314fc3c8284d8c6d5886d473db98f2126071c", "url" : "https://api.github.com/repos/cloudbeers/yolo/commits/8f1314fc3c8284d8c6d5886d473db98f2126071c"}}, {"name" : "stephenc-patch-1", "commit" : {"sha" : "095e69602bb95a278505e937e41d505ac3cdd263", "url" : "https://api.github.com/repos/cloudbeers/yolo/commits/095e69602bb95a278505e937e41d505ac3cdd263"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "commit": {"type": "object", "properties": {"sha": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha", "url"]}}, "required": ["name", "commit"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}, "egis": {"type": "null"}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1", "egis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\u5de5\u5ee0\u540d\u7a31" : "\u6dc2\u7d18\u98df\u54c1\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "66004673", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u81fa\u4e2d\u5e02\u8c50\u539f\u5340\u5357\u6751\u91cc\u5713\u74b0\u6771\u8def892\u5df79\u865f1\u6a13", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u81fa\u4e2d\u5e02\u8c50\u539f\u5340\u5357\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u738b\u6c9b\u6e05", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "53360952", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "1050621", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["08\u98df\u54c1\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["089\u5176\u4ed6\u98df\u54c1"], "egis" : null} | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}, "egis": {"type": "null"}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1", "egis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1998, 6], [1999, 9], [2001, 5], [2005, 6], [2006, 6]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "null"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "University of Music L\u00fcbeck", "alt_name" : "Musikhochschule L\u00fcbeck", "country" : "Germany", "state" : null, "address" : {"street" : "Grosse Petersgrube 17-29", "city" : "L\u00fcbeck", "province" : null, "postal_code" : "23552"}, "contact" : {"telephone" : "+49(451) 1505-0", "website" : "http://www.mh-luebeck.de", "email" : "info@mh-luebeck.de", "fax" : "+49(451) 1505-300"}, "funding" : "Public", "languages" : null, "academic_year" : "October to September (October-March; April-September)", "accrediting_agency" : null} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "null"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"access_token": {"type": "string"}, "token_type": {"type": "string"}, "expires_in": {"type": "integer"}, "refresh_token": {"type": "string"}}, "required": ["access_token", "token_type", "expires_in", "refresh_token"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"access_token" : "760822cb-2dec-4275-8da8-fa8f5680e8d4", "token_type" : "bearer", "expires_in" : 300, "refresh_token" : "46463dd6-cdbb-440d-88fc-b10a34f68b26"} | json_instruct | {"type": "object", "properties": {"access_token": {"type": "string"}, "token_type": {"type": "string"}, "expires_in": {"type": "integer"}, "refresh_token": {"type": "string"}}, "required": ["access_token", "token_type", "expires_in", "refresh_token"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"molecule_structure": {"type": "string"}, "definition": {"type": "string"}, "virus_id": {"type": "string"}, "isolate_id": {"type": "string"}, "_id": {"type": "string"}, "host": {"type": "null"}}, "required": ["molecule_structure", "definition", "virus_id", "isolate_id", "_id", "host"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"molecule_structure" : "linear", "definition" : "Mint virus 1, complete genome", "virus_id" : "028b7cda", "isolate_id" : "x2eb1nc8", "_id" : "NC_006944", "host" : null}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"molecule_structure": {"type": "string"}, "definition": {"type": "string"}, "virus_id": {"type": "string"}, "isolate_id": {"type": "string"}, "_id": {"type": "string"}, "host": {"type": "null"}}, "required": ["molecule_structure", "definition", "virus_id", "isolate_id", "_id", "host"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["box-shadow", "delaunify", "eaze-alert", "frontend-npm-goodies"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}, "egis": {"type": "null"}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1", "egis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\u5de5\u5ee0\u540d\u7a31" : "\u7acb\u77e9\u5be6\u696d\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "T1500009", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u82b1\u84ee\u7e23\u5409\u5b89\u9109\u5357\u6d77\u4e8c\u8857276\u865f", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u82b1\u84ee\u7e23\u5409\u5b89\u9109", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u5289\u570b\u5bf6", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "16075364", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "1051018", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["25\u91d1\u5c6c\u88fd\u54c1\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["252\u91d1\u5c6c\u7d50\u69cb\u53ca\u5efa\u7bc9\u7d44\u4ef6"], "egis" : null} | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}, "egis": {"type": "null"}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1", "egis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01010940": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01010940"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Topology", "objects" : {"E01010940" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00055142", "LAD11CD" : "E08000033"}, "arcs" : [[0, 1, 2, 3, 4]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00055152", "LAD11CD" : "E08000033"}, "arcs" : [[5, 6, -5, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00055155", "LAD11CD" : "E08000033"}, "arcs" : [[-6, 8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00055165", "LAD11CD" : "E08000033"}, "arcs" : [[-3, 9, 10]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00055166", "LAD11CD" : "E08000033"}, "arcs" : [[-10, -2, 11]]}]}}, "arcs" : [[[7221, 3102], [-458, 552], [-913, 735], [-761, 261], [84, 54], [732, 148], [14, 353], [-594, 355], [602, 53], [368, 520], [-966, 186], [-7, 361], [-1006, 722], [-1101, -319], [-294, 366]], [[2921, 7449], [1986, 858]], [[4907, 8307], [1737, 557]], [[6644, 8864], [-43, -1890], [1779, 197], [-432, -1868], [230, -352], [1243, -477]], [[9421, 4474], [-824, -71], [-977, -995], [619, -909], [-1018, 603]], [[6679, 152], [1142, 354], [223, 474], [-717, 683], [-402, -336], [-747, -125]], [[6178, 1202], [-668, 571], [307, 121], [272, -426], [290, 7], [-227, 494], [807, 154], [-52, 288], [521, 225], [-207, 466]], [[9421, 4474], [244, -173], [-420, -155], [754, -811], [-626, -231], [572, -622], [-1203, -448], [909, -1737], [-1655, -117], [-85, 212], [-890, -392], [-342, 152]], [[6679, 152], [-218, -93], [-220, 367], [-389, -110], [-344, 314], [256, 91], [-224, 399], [638, 82]], [[4907, 8307], [-840, 575], [-395, -214], [-410, 287]], [[3262, 8955], [155, 90], [1925, 824], [634, 130], [1156, -169], [-106, -162], [465, -121], [-555, -177], [-292, -506]], [[2921, 7449], [-1970, -900], [140, -156], [-33, -8], [-771, 729], [-287, 348], [1766, 433], [1496, 1060]]], "transform" : {"scale" : [1.4125969255948719e-06, 1.3140610593446225e-06], "translate" : [-1.886447609477349, 53.7366465177261]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01010940": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01010940"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "request": {"type": "string"}, "sync-request": {"type": "string"}, "body-parser": {"type": "string"}, "underscore": {"type": "string"}, "underscore.string": {"type": "string"}, "consolidate": {"type": "string"}, "qs": {"type": "string"}, "randomstring": {"type": "string"}, "nosql": {"type": "string"}, "base64url": {"type": "string"}, "cors": {"type": "string"}, "jsrsasign": {"type": "string"}}, "required": ["express", "request", "sync-request", "body-parser", "underscore", "underscore.string", "consolidate", "qs", "randomstring", "nosql", "base64url", "cors", "jsrsasign"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"express" : "^4.17.1", "request" : "^2.58.0", "sync-request" : "^6.1.0", "body-parser" : "^1.19.0", "underscore" : "^1.11.0", "underscore.string" : "^3.3.5", "consolidate" : "^0.16.0", "qs" : "^6.9.4", "randomstring" : "^1.1.5", "nosql" : "^6.1.0", "base64url" : "^3.0.1", "cors" : "^2.8.5", "jsrsasign" : "^10.0.0"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "request": {"type": "string"}, "sync-request": {"type": "string"}, "body-parser": {"type": "string"}, "underscore": {"type": "string"}, "underscore.string": {"type": "string"}, "consolidate": {"type": "string"}, "qs": {"type": "string"}, "randomstring": {"type": "string"}, "nosql": {"type": "string"}, "base64url": {"type": "string"}, "cors": {"type": "string"}, "jsrsasign": {"type": "string"}}, "required": ["express", "request", "sync-request", "body-parser", "underscore", "underscore.string", "consolidate", "qs", "randomstring", "nosql", "base64url", "cors", "jsrsasign"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}, "ascent": {"type": "integer"}, "height": {"type": "integer"}, "chars": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "file", "ascent", "height", "chars"]}}}, "required": ["providers"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"providers" : [{"type" : "bitmap", "file" : "mb:gui/fonts/soulbound.png", "ascent" : 15, "height" : 20, "chars" : ["\uc001"]}]} | json_instruct | {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}, "ascent": {"type": "integer"}, "height": {"type": "integer"}, "chars": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "file", "ascent", "height", "chars"]}}}, "required": ["providers"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test-ci": {"type": "string"}}, "required": ["test", "test-ci"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}, "jest-canvas-mock": {"type": "string"}}, "required": ["jest", "jest-canvas-mock"]}, "jest": {"type": "object", "properties": {"collectCoverage": {"type": "boolean"}, "collectCoverageFrom": {"type": "array", "items": {"type": "string"}}, "setupFiles": {"type": "array", "items": {"type": "string"}}}, "required": ["collectCoverage", "collectCoverageFrom", "setupFiles"]}, "dependencies": {"type": "object", "properties": {"stats.js": {"type": "string"}}, "required": ["stats.js"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "repository", "license", "bugs", "homepage", "devDependencies", "jest", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@jam3/stats", "version" : "1.0.1", "description" : "Default Performance Monitor @ Jam3", "main" : "src/index.js", "scripts" : {"test" : "jest --watch", "test-ci" : "jest --ci"}, "keywords" : ["monitor", "performance", "stats", "memory", "fps"], "repository" : {"type" : "git", "url" : "git+https://github.com/Jam3/stats.git"}, "license" : "MIT", "bugs" : {"url" : "https://github.com/Jam3/stats/issues"}, "homepage" : "https://github.com/Jam3/stats#readme", "devDependencies" : {"jest" : "^24.0.0", "jest-canvas-mock" : "^2.0.0-alpha.2"}, "jest" : {"collectCoverage" : true, "collectCoverageFrom" : ["src/**/*.js", "!**/node_modules/**"], "setupFiles" : ["jest-canvas-mock"]}, "dependencies" : {"stats.js" : "^0.17.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"}, "test-ci": {"type": "string"}}, "required": ["test", "test-ci"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}, "jest-canvas-mock": {"type": "string"}}, "required": ["jest", "jest-canvas-mock"]}, "jest": {"type": "object", "properties": {"collectCoverage": {"type": "boolean"}, "collectCoverageFrom": {"type": "array", "items": {"type": "string"}}, "setupFiles": {"type": "array", "items": {"type": "string"}}}, "required": ["collectCoverage", "collectCoverageFrom", "setupFiles"]}, "dependencies": {"type": "object", "properties": {"stats.js": {"type": "string"}}, "required": ["stats.js"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "repository", "license", "bugs", "homepage", "devDependencies", "jest", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "04", "provinceId" : "74", "regencyId" : "08", "name" : "Rante Angin"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101735303, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "fe9f05069abec2989e9e544e1507b556", "wof:id" : 101735303, "wof:repo" : "whosonfirst-data-admin-ca"}, "bbox" : [-64.88044, 46.68073, -64.88044, 46.68073], "geometry" : {"coordinates" : [-64.88044, 46.68073], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"station" : [{"pref_cd" : 31, "line_cd" : 11616, "line_name" : "JR\u5c71\u9670\u672c\u7dda(\u8c4a\u5ca1\uff5e\u7c73\u5b50)", "station_cd" : 1161638, "station_g_cd" : 1161638, "station_name" : "\u5927\u5c71\u53e3", "lon" : 133.456718, "lat" : 35.485045}]} | json_instruct | {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"engine.io.js": {"type": "string"}, "engine.io.min.js": {"type": "string"}}, "required": ["engine.io.js", "engine.io.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"engine.io.js" : "sha512-JJ3mszkf8uBch64CeWUt1L50zf/A+zATx1a6bYjf0UK/CfO9zVTKaBhgtgBKBHY6izGzqeJn1Ydh4HnVk9Getg==", "engine.io.min.js" : "sha512-XepByjrCp4CX6HzKmKDp/gW6KciMdhA4QAly900UemDULR9P9xU/C89PxRFqNXNQrsEYT/19DRwXw1snxOF78g=="} | json_instruct | {"type": "object", "properties": {"engine.io.js": {"type": "string"}, "engine.io.min.js": {"type": "string"}}, "required": ["engine.io.js", "engine.io.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-json": {"type": "string"}, "spatie/array-to-xml": {"type": "string"}}, "required": ["php", "ext-json", "spatie/array-to-xml"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ApiResponse\\": {"type": "string"}, "Tests\\": {"type": "string"}}, "required": ["ApiResponse\\", "Tests\\"]}}, "required": ["psr-4"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "phpstan/phpstan": {"type": "string"}}, "required": ["phpunit/phpunit", "phpstan/phpstan"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "analyze": {"type": "string"}}, "required": ["test", "analyze"]}, "scripts-descriptions": {"type": "object", "properties": {"test": {"type": "string"}, "analyse": {"type": "string"}}, "required": ["test", "analyse"]}}, "required": ["name", "description", "type", "license", "authors", "minimum-stability", "require", "autoload", "require-dev", "scripts", "scripts-descriptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "guil95/api-response", "description" : "Lib for responses api", "type" : "library", "license" : "Apache-2.0", "authors" : [{"name" : "Guilherme Rodrigues", "email" : "guilhermerodriguestb@gmail.com"}], "minimum-stability" : "dev", "require" : {"php" : ">=7.1.0", "ext-json" : "*", "spatie/array-to-xml" : "2.8.0"}, "autoload" : {"psr-4" : {"ApiResponse\\" : "src/", "Tests\\" : "tests"}}, "require-dev" : {"phpunit/phpunit" : "^8", "phpstan/phpstan" : "^0.11.0@dev"}, "scripts" : {"test" : "./vendor/bin/phpunit --bootstrap vendor/autoload.php tests", "analyze" : "vendor/bin/phpstan analyse src --level 5"}, "scripts-descriptions" : {"test" : "Test code", "analyse" : "Code analysis"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-json": {"type": "string"}, "spatie/array-to-xml": {"type": "string"}}, "required": ["php", "ext-json", "spatie/array-to-xml"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ApiResponse\\": {"type": "string"}, "Tests\\": {"type": "string"}}, "required": ["ApiResponse\\", "Tests\\"]}}, "required": ["psr-4"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "phpstan/phpstan": {"type": "string"}}, "required": ["phpunit/phpunit", "phpstan/phpstan"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "analyze": {"type": "string"}}, "required": ["test", "analyze"]}, "scripts-descriptions": {"type": "object", "properties": {"test": {"type": "string"}, "analyse": {"type": "string"}}, "required": ["test", "analyse"]}}, "required": ["name", "description", "type", "license", "authors", "minimum-stability", "require", "autoload", "require-dev", "scripts", "scripts-descriptions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404424867, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "0d6ddbab8ae30e772563d76e920e9096", "wof:id" : 404424867, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-0.41002143463438, 44.43196174551588, -0.35100012871351, 44.46831844640359], "geometry" : {"coordinates" : [[[-0.35761993475918, 44.43614037221755], [-0.3810057105134, 44.4366954107636], [-0.38815733427837, 44.43222283487508], [-0.39750981775241, 44.43196174551588], [-0.41002143463438, 44.43571078353345], [-0.40009679552464, 44.44633438173977], [-0.40901575974833, 44.45365446449728], [-0.40668303465669, 44.45627655339486], [-0.4017849062906, 44.45620263468972], [-0.39616747985698, 44.46195332563421], [-0.38332630131804, 44.46706974776844], [-0.36874228863375, 44.46831844640359], [-0.36386424981234, 44.4679628816459], [-0.35100012871351, 44.45345206628291], [-0.36089143079537, 44.44823124608073], [-0.35761993475918, 44.43614037221755]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["jsonschema2form-nested", "typeshave"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"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"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}, "34": {"type": "string"}, "35": {"type": "string"}, "36": {"type": "string"}, "37": {"type": "string"}, "38": {"type": "string"}, "39": {"type": "string"}, "40": {"type": "string"}, "41": {"type": "string"}, "42": {"type": "string"}, "43": {"type": "string"}, "44": {"type": "string"}, "45": {"type": "string"}, "46": {"type": "string"}, "47": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"edges" : [[16, 46], [3, 16], [14, 7], [34, 16], [19, 7], [29, 16], [39, 16], [1, 16], [7, 4], [35, 16], [23, 16], [16, 10], [16, 38], [16, 28], [6, 16], [4, 44], [16, 11], [27, 16], [27, 16], [16, 42], [33, 15], [16, 27], [5, 16], [18, 16], [16, 42], [16, 39], [16, 41], [22, 8], [44, 16], [16, 0], [16, 9], [20, 16], [10, 16], [16, 14], [7, 36], [24, 31], [16, 10], [44, 16], [7, 12], [16, 29], [2, 16], [6, 17], [25, 41], [18, 16], [16, 5], [44, 16], [16, 23], [16, 7], [16, 45], [13, 26], [30, 16], [42, 16], [16, 20], [37, 16], [42, 16], [16, 29], [16, 32], [24, 5], [10, 16], [16, 43], [40, 16], [23, 16], [16, 47], [21, 16]], "features" : {"0" : "1", "1" : "1", "2" : "1", "3" : "1", "4" : "2", "5" : "3", "6" : "2", "7" : "6", "8" : "1", "9" : "1", "10" : "4", "11" : "1", "12" : "1", "13" : "1", "14" : "2", "15" : "1", "16" : "51", "17" : "1", "18" : "2", "19" : "1", "20" : "2", "21" : "1", "22" : "1", "23" : "3", "24" : "2", "25" : "1", "26" : "1", "27" : "3", "28" : "1", "29" : "3", "30" : "1", "31" : "1", "32" : "1", "33" : "1", "34" : "1", "35" : "1", "36" : "1", "37" : "1", "38" : "1", "39" : "2", "40" : "1", "41" : "2", "42" : "4", "43" : "1", "44" : "4", "45" : "1", "46" : "1", "47" : "1"}} | json_instruct | {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"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"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}, "34": {"type": "string"}, "35": {"type": "string"}, "36": {"type": "string"}, "37": {"type": "string"}, "38": {"type": "string"}, "39": {"type": "string"}, "40": {"type": "string"}, "41": {"type": "string"}, "42": {"type": "string"}, "43": {"type": "string"}, "44": {"type": "string"}, "45": {"type": "string"}, "46": {"type": "string"}, "47": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47"]}}, "required": ["edges", "features"], "$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" : "2f45da7125cb3f16058d1051b061906f4afc25a1"} | 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": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["imop-league-api"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["gogs-migrate", "yapm"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationGroupId" : 1120256, "stations" : ["1120256"]} | json_instruct | {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"url": {"type": "string"}, "date_of_publication": {"type": "string"}, "headline": {"type": "string"}, "main_text": {"type": "string"}, "key_terms": {"type": "array", "items": {"type": "string"}}}, "required": ["url", "date_of_publication", "headline", "main_text", "key_terms"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"url" : "https://www.who.int/csr/don/2000_09_18/en/", "date_of_publication" : "2000-09-18", "headline" : "2000 - Rift Valley fever in Saudi Arabia", "main_text" : "As of 17 September, the Health Ministry of Saudi Arabia reported 16 deaths in humans, 14 males and 2 females, from Rift Valley fever in the Jizan region in southwestern Saudi Arabia. Laboratory confirmation of the disease was made by the WHO Collaborating Centre at the Centers for Disease Control and Prevention in Atlanta, Georgia, United States. A total of 38 suspected cases has been reported. No additional cases have been reported in the past two days. The Health Ministry is implementing control measures, including the rapid disposal of dead animals and intensive application of insecticides to eradicate mosquitoes and larvae. Health education messages about handling sick and dead animals and ways to avoid being bitten by mosquitoes are also being disseminated to the population in the affected region. The Yemen Ministry of Health sent a team to the area bordering Saudi Arabia to intensify surveillance for human and animal disease. No suspect cases have been reported in Yemen. Prior to this report, Rift Valley fever has been confined to the African continent.", "key_terms" : ["fever", "rift valley fever"]} | json_instruct | {"type": "object", "properties": {"url": {"type": "string"}, "date_of_publication": {"type": "string"}, "headline": {"type": "string"}, "main_text": {"type": "string"}, "key_terms": {"type": "array", "items": {"type": "string"}}}, "required": ["url", "date_of_publication", "headline", "main_text", "key_terms"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"actors": {"type": "array", "items": {}}, "countries": {"type": "array", "items": {}}, "enb_end_date": {"type": "string"}, "enb_long_title": {"type": "string"}, "enb_short_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_url": {"type": "string"}, "id": {"type": "string"}, "section_title": {"type": "string"}, "sentences": {"type": "array", "items": {"type": "string"}}, "subtype": {"type": "string"}, "topics": {"type": "array", "items": {}}, "type": {"type": "string"}}, "required": ["actors", "countries", "enb_end_date", "enb_long_title", "enb_short_title", "enb_start_date", "enb_url", "id", "section_title", "sentences", "subtype", "topics", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"actors" : [], "countries" : [], "enb_end_date" : "19-Dec-09", "enb_long_title" : "Copenhagen Climate Change Conference", "enb_short_title" : "COP 15", "enb_start_date" : "07-Dec-09", "enb_url" : "http://www.iisd.ca/vol12/enb12459e.html", "id" : "enb12459e_146", "section_title" : "A BRIEF ANALYSIS OF THE COPENHAGEN CLIMATE CHANGE CONFERENCE", "sentences" : ["The UN Climate Change Conference in Copenhagen was, in many ways, an historic event.", "It marked the culmination of two years of intensive negotiations under the United Nations Framework Convention on Climate Change (UNFCCC) and the Bali Roadmap, which was agreed by the thirteenth Conference of the Parties (COP 13) in December 2007.", "Millions of people around the world hoped that Hopenhagen would be a turning point in the battle against climate change.", "The high-level segment brought together 115 Heads of State and Government, and was widely reported as one of the largest high-level gathering outside New York.", "More than 40,000 people applied for accreditation for the Conference, far exceeding the 15,000 capacity of the Conference venue.", "Large, and at times violent, demonstrations took place in Copenhagen during the Conference as people urged the world s leaders to reach a meaningful agreement.", "There is little doubt that the Copenhagen Conference left its mark in history - never before has climate change featured so prominently on the international agenda.", "However, feelings about the outcome are, at best, mixed and some even consider the Conference to be a failure.", "This brief analysis focuses on the Copenhagen outcome, both in terms of substance and process, examining what the outcome might mean for the UNFCCC process, and most importantly, for the battle against climate change."], "subtype" : "ANALYSIS", "topics" : [], "type" : ""} | json_instruct | {"type": "object", "properties": {"actors": {"type": "array", "items": {}}, "countries": {"type": "array", "items": {}}, "enb_end_date": {"type": "string"}, "enb_long_title": {"type": "string"}, "enb_short_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_url": {"type": "string"}, "id": {"type": "string"}, "section_title": {"type": "string"}, "sentences": {"type": "array", "items": {"type": "string"}}, "subtype": {"type": "string"}, "topics": {"type": "array", "items": {}}, "type": {"type": "string"}}, "required": ["actors", "countries", "enb_end_date", "enb_long_title", "enb_short_title", "enb_start_date", "enb_url", "id", "section_title", "sentences", "subtype", "topics", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101870607, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "8c4000c107eaaa7aa9031fc4ef5cf173", "wof:id" : 101870607, "wof:repo" : "whosonfirst-data-admin-gl"}, "bbox" : [-52.21667, 64.8, -52.21667, 64.8], "geometry" : {"coordinates" : [-52.21667, 64.8], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"node-sass": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node-sass", "npm"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "sass-docs": {"type": "string"}, "sass": {"type": "string"}}, "required": ["dev", "sass-docs", "sass"]}, "license": {"type": "string"}, "private": {"type": "boolean"}}, "required": ["name", "author", "version", "main", "repository", "keywords", "dependencies", "scripts", "license", "private"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mob-site-ui", "author" : "Beatriz", "version" : "1.0.0", "main" : "index.js", "repository" : {"type" : "git", "url" : "https://github.com/Bia96/mob-site-ui.git"}, "keywords" : ["sass", "setup", "boilerplate", "framework", "ui", "css framework"], "dependencies" : {"node-sass" : "^4.11.0", "npm" : "^6.11.2"}, "scripts" : {"dev" : "http-server", "sass-docs" : "node-sass -w -r ./src/scss/ -o ./docs/css/", "sass" : "node-sass ./src/scss/ -o ./dist/css/ -w -r --source-map-embed --source-map-contents --output-style expanded | node-sass ./src/scss/main.scss ./dist/css/main.min.css -w --output-style compressed"}, "license" : "MIT", "private" : false} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"node-sass": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node-sass", "npm"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "sass-docs": {"type": "string"}, "sass": {"type": "string"}}, "required": ["dev", "sass-docs", "sass"]}, "license": {"type": "string"}, "private": {"type": "boolean"}}, "required": ["name", "author", "version", "main", "repository", "keywords", "dependencies", "scripts", "license", "private"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"code": {"type": "string"}, "description": {"type": "string"}, "label": {"type": "string"}, "language": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["code", "description", "label", "language", "uuid"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : "696", "description" : "", "label" : "Taken niet bijzonder aangepast aan het personeel", "language" : "NL", "uuid" : "69fc1ee1-4591-11e9-9173-0800277f0571"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "description": {"type": "string"}, "label": {"type": "string"}, "language": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["code", "description", "label", "language", "uuid"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"foo": {"type": "string"}, "undeclared": {"type": "string"}}, "required": ["foo", "undeclared"]}, "installConfig": {"type": "object", "properties": {"pnp": {"type": "boolean"}}, "required": ["pnp"]}}, "required": ["dependencies", "installConfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"foo" : "link:./lib", "undeclared" : "link:./undeclared-dependency"}, "installConfig" : {"pnp" : true}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"foo": {"type": "string"}, "undeclared": {"type": "string"}}, "required": ["foo", "undeclared"]}, "installConfig": {"type": "object", "properties": {"pnp": {"type": "boolean"}}, "required": ["pnp"]}}, "required": ["dependencies", "installConfig"], "$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"}, "swift_version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "string"}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "swift_version", "summary", "description", "homepage", "license", "authors", "social_media_url", "platforms", "source", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "LSCircleProgressView", "version" : "0.0.7", "swift_version" : "4.1", "summary" : "Circled Progress View.", "description" : "LSCircleProgressView is circle or arc shaped version of progress view.", "homepage" : "https://github.com/2sem/LSCircleProgressView", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : "YoungJun Lee", "social_media_url" : "http://www.facebook.com/youngjun.lee.3998", "platforms" : {"ios" : "10.0"}, "source" : {"git" : "https://github.com/2sem/LSCircleProgressView.git", "tag" : "0.0.7"}, "source_files" : ["LSCircleProgressView/**/*.swift", "**/*.{h,m}"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "swift_version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "string"}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "swift_version", "summary", "description", "homepage", "license", "authors", "social_media_url", "platforms", "source", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "2008", "provinceId" : "17", "regencyId" : "09", "districtId" : "11", "name" : "Taba Lagan"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"country": {"type": "string"}, "countryName": {"type": "string"}, "dateFormatSymbols": {"type": "object", "properties": {"am_pm": {"type": "array", "items": {"type": "string"}}, "day_name": {"type": "array", "items": {"type": "string"}}, "day_short": {"type": "array", "items": {"type": "string"}}, "era": {"type": "array", "items": {"type": "string"}}, "era_name": {"type": "array", "items": {"type": "string"}}, "month_name": {"type": "array", "items": {"type": "string"}}, "month_short": {"type": "array", "items": {"type": "string"}}, "order_full": {"type": "string"}, "order_long": {"type": "string"}, "order_medium": {"type": "string"}, "order_short": {"type": "string"}}, "required": ["am_pm", "day_name", "day_short", "era", "era_name", "month_name", "month_short", "order_full", "order_long", "order_medium", "order_short"]}, "decimalFormatSymbols": {"type": "object", "properties": {"decimal_separator": {"type": "string"}, "grouping_separator": {"type": "string"}, "minus": {"type": "string"}}, "required": ["decimal_separator", "grouping_separator", "minus"]}, "languageCode": {"type": "string"}, "languageName": {"type": "string"}, "locale": {"type": "string"}, "localeUnderscore": {"type": "string"}, "localeName": {"type": "string"}}, "required": ["country", "countryName", "dateFormatSymbols", "decimalFormatSymbols", "languageCode", "languageName", "locale", "localeUnderscore", "localeName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"country" : "TZ", "countryName" : "Tanzania", "dateFormatSymbols" : {"am_pm" : ["Muhi", "Chilo"], "day_name" : ["Liduva lyapili", "Liduva lyatatu", "Liduva lyanchechi", "Liduva lyannyano", "Liduva lyannyano na linji", "Liduva lyannyano na mavili", "Liduva litandi"], "day_short" : ["Ll2", "Ll3", "Ll4", "Ll5", "Ll6", "Ll7", "Ll1"], "era" : ["AY", "NY"], "era_name" : ["Akanapawa Yesu", "Nankuida Yesu"], "month_name" : ["Mwedi Ntandi", "Mwedi wa Pili", "Mwedi wa Tatu", "Mwedi wa Nchechi", "Mwedi wa Nnyano", "Mwedi wa Nnyano na Umo", "Mwedi wa Nnyano na Mivili", "Mwedi wa Nnyano na Mitatu", "Mwedi wa Nnyano na Nchechi", "Mwedi wa Nnyano na Nnyano", "Mwedi wa Nnyano na Nnyano na U", "Mwedi wa Nnyano na Nnyano na M"], "month_short" : ["Jan", "Feb", "Mac", "Apr", "Mei", "Jun", "Jul", "Ago", "Sep", "Okt", "Nov", "Des"], "order_full" : "MDY", "order_long" : "MDY", "order_medium" : "MDY", "order_short" : "MDY"}, "decimalFormatSymbols" : {"decimal_separator" : ".", "grouping_separator" : ",", "minus" : "-"}, "languageCode" : "kde", "languageName" : "Chimakonde", "locale" : "kde-TZ", "localeUnderscore" : "kde_TZ", "localeName" : "Chimakonde (Tanzania)"} | json_instruct | {"type": "object", "properties": {"country": {"type": "string"}, "countryName": {"type": "string"}, "dateFormatSymbols": {"type": "object", "properties": {"am_pm": {"type": "array", "items": {"type": "string"}}, "day_name": {"type": "array", "items": {"type": "string"}}, "day_short": {"type": "array", "items": {"type": "string"}}, "era": {"type": "array", "items": {"type": "string"}}, "era_name": {"type": "array", "items": {"type": "string"}}, "month_name": {"type": "array", "items": {"type": "string"}}, "month_short": {"type": "array", "items": {"type": "string"}}, "order_full": {"type": "string"}, "order_long": {"type": "string"}, "order_medium": {"type": "string"}, "order_short": {"type": "string"}}, "required": ["am_pm", "day_name", "day_short", "era", "era_name", "month_name", "month_short", "order_full", "order_long", "order_medium", "order_short"]}, "decimalFormatSymbols": {"type": "object", "properties": {"decimal_separator": {"type": "string"}, "grouping_separator": {"type": "string"}, "minus": {"type": "string"}}, "required": ["decimal_separator", "grouping_separator", "minus"]}, "languageCode": {"type": "string"}, "languageName": {"type": "string"}, "locale": {"type": "string"}, "localeUnderscore": {"type": "string"}, "localeName": {"type": "string"}}, "required": ["country", "countryName", "dateFormatSymbols", "decimalFormatSymbols", "languageCode", "languageName", "locale", "localeUnderscore", "localeName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"top-string": {"type": "string"}, "top-int": {"type": "integer"}, "top-bool": {"type": "boolean"}, "top-double": {"type": "number"}, "top-list": {"type": "array", "items": {"type": "string"}}, "top-dict": {"type": "object", "properties": {"key1": {"type": "string"}, "key2": {"type": "string"}, "key3": {"type": "string"}}, "required": ["key1", "key2", "key3"]}, "nested-list": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "nested-dict": {"type": "object", "properties": {"key1": {"type": "object", "properties": {"key1-subkey1": {"type": "string"}, "key1-subkey2": {"type": "string"}}, "required": ["key1-subkey1", "key1-subkey2"]}, "key2": {"type": "object", "properties": {"key2-subkey1": {"type": "string"}, "key2-subkey2": {"type": "string"}}, "required": ["key2-subkey1", "key2-subkey2"]}}, "required": ["key1", "key2"]}}, "required": ["top-string", "top-int", "top-bool", "top-double", "top-list", "top-dict", "nested-list", "nested-dict"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"top-string" : "bob", "top-int" : 10, "top-bool" : true, "top-double" : 1.234, "top-list" : ["item1", "item2", "item3"], "top-dict" : {"key1" : "value1", "key2" : "value2", "key3" : "value3"}, "nested-list" : [["nested-item1-subitem1", "nested-item1-subitem2"], ["nested-item2-subitem1", "nested-item2-subitem2"]], "nested-dict" : {"key1" : {"key1-subkey1" : "value1-1", "key1-subkey2" : "value1-2"}, "key2" : {"key2-subkey1" : "value2-1", "key2-subkey2" : "value2-2"}}} | json_instruct | {"type": "object", "properties": {"top-string": {"type": "string"}, "top-int": {"type": "integer"}, "top-bool": {"type": "boolean"}, "top-double": {"type": "number"}, "top-list": {"type": "array", "items": {"type": "string"}}, "top-dict": {"type": "object", "properties": {"key1": {"type": "string"}, "key2": {"type": "string"}, "key3": {"type": "string"}}, "required": ["key1", "key2", "key3"]}, "nested-list": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "nested-dict": {"type": "object", "properties": {"key1": {"type": "object", "properties": {"key1-subkey1": {"type": "string"}, "key1-subkey2": {"type": "string"}}, "required": ["key1-subkey1", "key1-subkey2"]}, "key2": {"type": "object", "properties": {"key2-subkey1": {"type": "string"}, "key2-subkey2": {"type": "string"}}, "required": ["key2-subkey1", "key2-subkey2"]}}, "required": ["key1", "key2"]}}, "required": ["top-string", "top-int", "top-bool", "top-double", "top-list", "top-dict", "nested-list", "nested-dict"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "sloc": {"type": "integer"}, "lloc": {"type": "integer"}, "functions": {"type": "integer"}, "deliveredBugs": {"type": "number"}, "maintainability": {"type": "number"}, "lintErrors": {"type": "integer"}, "difficulty": {"type": "number"}}, "required": ["date", "sloc", "lloc", "functions", "deliveredBugs", "maintainability", "lintErrors", "difficulty"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"date" : "Mon, 18 Feb 2019 21:51:02 GMT", "sloc" : 208, "lloc" : 98, "functions" : 22, "deliveredBugs" : 1.691, "maintainability" : 73.288, "lintErrors" : 19, "difficulty" : 31.54}, {"date" : "Thu, 21 Feb 2019 12:48:26 GMT", "sloc" : 208, "lloc" : 98, "functions" : 22, "deliveredBugs" : 1.691, "maintainability" : 73.288, "lintErrors" : 19, "difficulty" : 31.54}, {"date" : "Fri, 22 Feb 2019 15:25:14 GMT", "sloc" : 214, "lloc" : 99, "functions" : 23, "deliveredBugs" : 1.708, "maintainability" : 73.691, "lintErrors" : 19, "difficulty" : 31.456}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "sloc": {"type": "integer"}, "lloc": {"type": "integer"}, "functions": {"type": "integer"}, "deliveredBugs": {"type": "number"}, "maintainability": {"type": "number"}, "lintErrors": {"type": "integer"}, "difficulty": {"type": "number"}}, "required": ["date", "sloc", "lloc", "functions", "deliveredBugs", "maintainability", "lintErrors", "difficulty"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"subscriptions": {"type": "object", "properties": {"amount": {"type": "integer"}, "created_at": {"type": "string"}, "currency": {"type": "string"}, "day_of_month": {"type": "null"}, "end_at": {"type": "null"}, "id": {"type": "string"}, "interval": {"type": "integer"}, "interval_unit": {"type": "string"}, "links": {"type": "object", "properties": {"mandate": {"type": "string"}}, "required": ["mandate"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "month": {"type": "null"}, "name": {"type": "null"}, "start_at": {"type": "string"}, "status": {"type": "string"}, "upcoming_payments": {"type": "array", "items": {"type": "object", "properties": {"amount": {"type": "integer"}, "charge_date": {"type": "string"}}, "required": ["amount", "charge_date"]}}}, "required": ["amount", "created_at", "currency", "day_of_month", "end_at", "id", "interval", "interval_unit", "links", "metadata", "month", "name", "start_at", "status", "upcoming_payments"]}}, "required": ["subscriptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"subscriptions" : {"amount" : 1000, "created_at" : "2015-04-20T13:20:43.273Z", "currency" : "GBP", "day_of_month" : null, "end_at" : null, "id" : "SB000011EYZVP7", "interval" : 1, "interval_unit" : "monthly", "links" : {"mandate" : "MD00001PEYCSQF"}, "metadata" : {}, "month" : null, "name" : null, "start_at" : "2015-04-23", "status" : "active", "upcoming_payments" : [{"amount" : 1000, "charge_date" : "2015-04-23"}, {"amount" : 1000, "charge_date" : "2015-05-26"}, {"amount" : 1000, "charge_date" : "2015-06-23"}, {"amount" : 1000, "charge_date" : "2015-07-23"}, {"amount" : 1000, "charge_date" : "2015-08-24"}, {"amount" : 1000, "charge_date" : "2015-09-23"}, {"amount" : 1000, "charge_date" : "2015-10-23"}, {"amount" : 1000, "charge_date" : "2015-11-23"}, {"amount" : 1000, "charge_date" : "2015-12-23"}, {"amount" : 1000, "charge_date" : "2016-01-25"}]}} | json_instruct | {"type": "object", "properties": {"subscriptions": {"type": "object", "properties": {"amount": {"type": "integer"}, "created_at": {"type": "string"}, "currency": {"type": "string"}, "day_of_month": {"type": "null"}, "end_at": {"type": "null"}, "id": {"type": "string"}, "interval": {"type": "integer"}, "interval_unit": {"type": "string"}, "links": {"type": "object", "properties": {"mandate": {"type": "string"}}, "required": ["mandate"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "month": {"type": "null"}, "name": {"type": "null"}, "start_at": {"type": "string"}, "status": {"type": "string"}, "upcoming_payments": {"type": "array", "items": {"type": "object", "properties": {"amount": {"type": "integer"}, "charge_date": {"type": "string"}}, "required": ["amount", "charge_date"]}}}, "required": ["amount", "created_at", "currency", "day_of_month", "end_at", "id", "interval", "interval_unit", "links", "metadata", "month", "name", "start_at", "status", "upcoming_payments"]}}, "required": ["subscriptions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "title" : "Amyklai", "id" : "570074", "bbox" : [22.437225, 37.026007, 22.437225, 37.026007], "description" : "Amyklai was an ancient settlement located near Sparta in the plain by the Eurotas river to the east of the Taygetus mountains.", "names" : ["Amyklai"], "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [22.437225, 37.026007]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [22.437225, 37.026007]}, "id" : "darmc-location-24025", "type" : "Feature", "properties" : {"description" : "1M scale point location", "location_precision" : "precise", "title" : "DARMC location 24025", "link" : "http://pleiades.stoa.org/places/570074/darmc-location-24025"}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "names", "features"], "$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"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "devDependencies": {"type": "object", "properties": {"parcel-bundler": {"type": "string"}}, "required": ["parcel-bundler"]}, "dependencies": {"type": "object", "properties": {"random-seed": {"type": "string"}}, "required": ["random-seed"]}}, "required": ["name", "version", "description", "repository", "author", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "challenge-generator", "version" : "0.0.0", "description" : "A Challenge Generator For Binding Of Isaac", "repository" : "git@github.com:cookiej91/challenge-generator.git", "author" : "Josh Cook (cookiej91)", "license" : "MIT", "scripts" : {"start" : "parcel html/index.html", "build" : "parcel build --public-url . html/index.html"}, "devDependencies" : {"parcel-bundler" : "^1.12.2"}, "dependencies" : {"random-seed" : "^0.3.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "devDependencies": {"type": "object", "properties": {"parcel-bundler": {"type": "string"}}, "required": ["parcel-bundler"]}, "dependencies": {"type": "object", "properties": {"random-seed": {"type": "string"}}, "required": ["random-seed"]}}, "required": ["name", "version", "description", "repository", "author", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"media_id": {"type": "string"}, "local_id": {"type": "string"}, "title": {"type": "string"}, "thumbnail": {"type": "string"}, "desc": {"type": "string"}, "auto_desc": {"type": "object", "properties": {"translatedText": {"type": "string"}, "input": {"type": "string"}}, "required": ["translatedText", "input"]}}, "required": ["media_id", "local_id", "title", "thumbnail", "desc", "auto_desc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"media_id" : "77462533", "local_id" : "NJ015\n", "title" : "File:Maja_Johansson_in_Kalle_Munter_at_S\u00f6dra_teatern_1906_-_SMV_-_NJ015.tif", "thumbnail" : "https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/Maja_Johansson_in_Kalle_Munter_at_S\u00f6dra_teatern_1906_-_SMV_-_NJ015.tif/500px-Maja_Johansson_in_Kalle_Munter_at_S\u00f6dra_teatern_1906_-_SMV_-_NJ015.tif.jpg", "desc" : " Maja Johansson som Dagmar i revyn Kalle Munter, S\u00f6dra teatern 1906. Skannat glasnegativ\n", "auto_desc" : {"translatedText" : "Maja Johansson as Dagmar in the review Kalle Munter, S\u00f6dra teatern 1906. Scanned glass negative", "input" : " Maja Johansson som Dagmar i revyn Kalle Munter, S\u00f6dra teatern 1906. Skannat glasnegativ\n"}} | json_instruct | {"type": "object", "properties": {"media_id": {"type": "string"}, "local_id": {"type": "string"}, "title": {"type": "string"}, "thumbnail": {"type": "string"}, "desc": {"type": "string"}, "auto_desc": {"type": "object", "properties": {"translatedText": {"type": "string"}, "input": {"type": "string"}}, "required": ["translatedText", "input"]}}, "required": ["media_id", "local_id", "title", "thumbnail", "desc", "auto_desc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "userDefined": {"type": "boolean"}}, "required": ["text", "userDefined"]}}, "isTemplate": {"type": "boolean"}, "count": {"type": "integer"}, "updated": {"type": "integer"}}, "required": ["id", "data", "isTemplate", "count", "updated"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "c7f444d0-fd4c-4545-b3f7-11c1707446e3", "data" : [{"text" : "g triple s vision misson", "userDefined" : false}], "isTemplate" : false, "count" : 0, "updated" : 0}, {"id" : "44b783b0-8476-40ac-8abe-2ab380350a02", "data" : [{"text" : "vision and mission of g triple s", "userDefined" : false}], "isTemplate" : false, "count" : 0, "updated" : 0}, {"id" : "e3562149-7b01-49a8-89bc-b56bd5674547", "data" : [{"text" : "vision and mission of g triple s ietw", "userDefined" : false}], "isTemplate" : false, "count" : 0, "updated" : 0}, {"id" : "98778f77-5487-44c7-9b26-63136d47330d", "data" : [{"text" : "vision and ", "userDefined" : false}, {"text" : "mission", "meta" : "@sys.ignore", "userDefined" : false}, {"text" : " of college", "userDefined" : false}], "isTemplate" : false, "count" : 0, "updated" : 0}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "userDefined": {"type": "boolean"}}, "required": ["text", "userDefined"]}}, "isTemplate": {"type": "boolean"}, "count": {"type": "integer"}, "updated": {"type": "integer"}}, "required": ["id", "data", "isTemplate", "count", "updated"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "/*\nCopyright (c) 2018-2020 Uber Technologies, Inc.\n\nThis source code is licensed under the MIT license found in the\nLICENSE file in the root directory of this source tree.\n*/\nimport { ThemeContext } from './theme-provider.js';\nexport { createThemedStyled, createThemedWithStyle, createThemedUseStyletron, styled, withStyle, useStyletron, withWrapper } from './styled.js';\nexport { hexToRgb, expandBorderStyles } from './util.js';\nexport { default as ThemeProvider } from './theme-provider.js';\nexport var ThemeConsumer = ThemeContext.Consumer;", "map" : {"version" : 3, "sources" : ["D:/React/Portfolio RJs/node_modules/baseui/esm/styles/index.js"], "names" : ["ThemeContext", "createThemedStyled", "createThemedWithStyle", "createThemedUseStyletron", "styled", "withStyle", "useStyletron", "withWrapper", "hexToRgb", "expandBorderStyles", "default", "ThemeProvider", "ThemeConsumer", "Consumer"], "mappings" : "AAAA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,YAAT,QAA6B,qBAA7B;AACA,SAASC,kBAAT,EAA6BC,qBAA7B,EAAoDC,wBAApD,EAA8EC,MAA9E,EAAsFC,SAAtF,EAAiGC,YAAjG,EAA+GC,WAA/G,QAAkI,aAAlI;AACA,SAASC,QAAT,EAAmBC,kBAAnB,QAA6C,WAA7C;AACA,SAASC,OAAO,IAAIC,aAApB,QAAyC,qBAAzC;AACA,OAAO,IAAIC,aAAa,GAAGZ,YAAY,CAACa,QAAjC", "sourcesContent" : ["/*\nCopyright (c) 2018-2020 Uber Technologies, Inc.\n\nThis source code is licensed under the MIT license found in the\nLICENSE file in the root directory of this source tree.\n*/\nimport { ThemeContext } from './theme-provider.js';\nexport { createThemedStyled, createThemedWithStyle, createThemedUseStyletron, styled, withStyle, useStyletron, withWrapper } from './styled.js';\nexport { hexToRgb, expandBorderStyles } from './util.js';\nexport { default as ThemeProvider } from './theme-provider.js';\nexport var ThemeConsumer = ThemeContext.Consumer;"]}, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["id", "name", "description", "image", "attributes"]}, "attributeRarities": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}, "count": {"type": "integer"}, "ratio": {"type": "number"}, "ratioScore": {"type": "number"}}, "required": ["trait_type", "value", "count", "ratio", "ratioScore"]}}, "rarityScore": {"type": "number"}, "rank": {"type": "integer"}}, "required": ["nft", "attributeRarities", "rarityScore", "rank"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nft" : {"id" : "726", "name" : "PixelFreak #00726", "description" : "They call us ugly, and misfits, but we prefer to call ourselves freaks", "image" : "ipfs://QmUUk8hu8CptYarCHCUTGqqre7Zr3kopehK3sY37SaDXJY", "attributes" : [{"trait_type" : "pet", "value" : "None"}, {"trait_type" : "body", "value" : "Model D"}, {"trait_type" : "eyes", "value" : "Ford"}, {"trait_type" : "head", "value" : "Squary"}, {"trait_type" : "nose", "value" : "None"}, {"trait_type" : "extra", "value" : "None"}, {"trait_type" : "mouth", "value" : "Roni"}, {"trait_type" : "background", "value" : "RandomColor"}, {"trait_type" : "Trait Count", "value" : "8"}]}, "attributeRarities" : [{"trait_type" : "pet", "value" : "None", "count" : 9511, "ratio" : 0.9511, "ratioScore" : 1.0514141520344864}, {"trait_type" : "body", "value" : "Model D", "count" : 163, "ratio" : 0.0163, "ratioScore" : 61.34969325153375}, {"trait_type" : "eyes", "value" : "Ford", "count" : 318, "ratio" : 0.0318, "ratioScore" : 31.446540880503143}, {"trait_type" : "head", "value" : "Squary", "count" : 660, "ratio" : 0.066, "ratioScore" : 15.15151515151515}, {"trait_type" : "nose", "value" : "None", "count" : 2022, "ratio" : 0.2022, "ratioScore" : 4.945598417408506}, {"trait_type" : "extra", "value" : "None", "count" : 874, "ratio" : 0.0874, "ratioScore" : 11.441647597254004}, {"trait_type" : "mouth", "value" : "Roni", "count" : 591, "ratio" : 0.0591, "ratioScore" : 16.920473773265652}, {"trait_type" : "background", "value" : "RandomColor", "count" : 9595, "ratio" : 0.9595, "ratioScore" : 1.0422094841063054}, {"trait_type" : "Trait Count", "value" : "8", "count" : 10000, "ratio" : 1, "ratioScore" : 1}], "rarityScore" : 144.349092707621, "rank" : 8652} | json_instruct | {"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["id", "name", "description", "image", "attributes"]}, "attributeRarities": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}, "count": {"type": "integer"}, "ratio": {"type": "number"}, "ratioScore": {"type": "number"}}, "required": ["trait_type", "value", "count", "ratio", "ratioScore"]}}, "rarityScore": {"type": "number"}, "rank": {"type": "integer"}}, "required": ["nft", "attributeRarities", "rarityScore", "rank"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404382597, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "a88926b8ecb45fd96df0d530996a5eeb", "wof:id" : 404382597, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [4.74526730435982, 47.34344422767816, 4.79864615469976, 47.37746239969204], "geometry" : {"coordinates" : [[[4.75035650494516, 47.34344422767816], [4.75373258350387, 47.35310908943209], [4.74526730435982, 47.36170968950168], [4.74531062430272, 47.36833623982403], [4.77177523595034, 47.37746239969204], [4.77669659070866, 47.37716216531878], [4.77683710370682, 47.37380138044821], [4.77583338799767, 47.37071020397637], [4.79683528214239, 47.36418329795455], [4.79864615469976, 47.36127384311611], [4.78039413224368, 47.35597218142166], [4.7668755680018, 47.345832434704], [4.75035650494516, 47.34344422767816]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 5129, "redacted" : false, "hash" : 3868422851, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"offline": {"type": "string"}}, "required": ["offline"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"serverless-offline": {"type": "string"}}, "required": ["serverless-offline"]}, "dependencies": {"type": "object", "properties": {"mysql2": {"type": "string"}, "sequelize": {"type": "string"}}, "required": ["mysql2", "sequelize"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "kral-pay-test-service", "version" : "1.0.0", "description" : "", "main" : "handler.js", "scripts" : {"offline" : "sls offline start --skipCacheInvalidation"}, "keywords" : [], "author" : "Adnan Rahi\u0107", "license" : "MIT", "devDependencies" : {"serverless-offline" : "^3.31.3"}, "dependencies" : {"mysql2" : "^1.6.4", "sequelize" : "^4.41.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"offline": {"type": "string"}}, "required": ["offline"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"serverless-offline": {"type": "string"}}, "required": ["serverless-offline"]}, "dependencies": {"type": "object", "properties": {"mysql2": {"type": "string"}, "sequelize": {"type": "string"}}, "required": ["mysql2", "sequelize"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localities" : ["Pomona, KS"], "state" : "KS", "postal_code" : "66076", "locality" : "Pomona, KS", "lat" : 38.632455, "region" : {"fips" : "20", "abbr" : "KS", "name" : "Kansas"}, "city" : "Pomona", "type" : "STANDARD", "lng" : -95.443013, "counties" : [{"fips" : "059", "name" : "Franklin County"}]} | json_instruct | {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "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" : "TIMOR TENGAH UTARA", "originalFilename" : "IMG_0001.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 261638, "noUrut" : 1, "nama" : "ADRIANUS MAGNUS KOBESI, SH", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TIMOR TENGAH UTARA", "originalFilename" : "foto landelinus banu.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 262219, "noUrut" : 2, "nama" : "LANDELINUS BANU", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TIMOR TENGAH UTARA", "originalFilename" : "ERNAWATI FOTO.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 263790, "noUrut" : 3, "nama" : "ERNAWATHI THEODORIS SONBAY", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "TIMOR TENGAH UTARA", "originalFilename" : "foto heribertus naif.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 262683, "noUrut" : 4, "nama" : "HERIBERTUS NAIF", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TIMOR TENGAH UTARA", "originalFilename" : "foto kristina susanti sene.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 262986, "noUrut" : 5, "nama" : "KRISTINA SUSANTI SENE", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "TIMOR TENGAH UTARA", "originalFilename" : "foto thomas.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 262490, "noUrut" : 6, "nama" : "THOMAS DIDIMUS OPAT", "stringJenisKelamin" : "Laki-Laki"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "object", "properties": {"1DjUq8hd2jYZgc5uNhQEtWUVZjMHkMQkpU": {"type": "string"}}, "required": ["1DjUq8hd2jYZgc5uNhQEtWUVZjMHkMQkpU"]}, "user": {"type": "array", "items": {"type": "object", "properties": {"avatar": {"type": "string"}, "date_added": {"type": "integer"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "user_name": {"type": "string"}}, "required": ["avatar", "date_added", "hub", "intro", "user_name"]}}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"address" : "1UDbADib99KE9d3qZ87NqJF2QLTHmMkoV", "cert_auth_type" : "web", "cert_sign" : "G2Y7I+0Vw8v8s6vG1iZ36hF33K2JofRiQu90jBZedcVY6SsxYObN7SrdoL7jeMjIXUoUlru5TDvxI0xPapIe1G4=", "cert_user_id" : "alek@zeroid.bit", "files" : {}, "inner_path" : "data/userdb/1DjUq8hd2jYZgc5uNhQEtWUVZjMHkMQkpU/content.json", "modified" : 1470908998.335, "signs" : {"1DjUq8hd2jYZgc5uNhQEtWUVZjMHkMQkpU" : "HE2wvnKhPLaIpNmsnF9RsuSktQ/Iqg7WHxCx1ZXRIiJIbVQAs4T3d6sTJNQ6flhXeV2fchBNVCW3mWHoLbmuh7c="}, "user" : [{"avatar" : "png", "date_added" : 1470906036, "hub" : "1BLueGvui1GdbtsjcKqCf4F67uKfritG49", "intro" : "Professor, you're the professor do something!!", "user_name" : "Alek"}]} | json_instruct | {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "object", "properties": {"1DjUq8hd2jYZgc5uNhQEtWUVZjMHkMQkpU": {"type": "string"}}, "required": ["1DjUq8hd2jYZgc5uNhQEtWUVZjMHkMQkpU"]}, "user": {"type": "array", "items": {"type": "object", "properties": {"avatar": {"type": "string"}, "date_added": {"type": "integer"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "user_name": {"type": "string"}}, "required": ["avatar", "date_added", "hub", "intro", "user_name"]}}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs", "user"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"e" : ["\ufff9`Mikono~ `to~ `kolol~.\ufffa\ufffb\u5f13\u80cc\uff0c\u5f4e\u8170\u3002", "\ufff9`Mikono~ `to~ `singsi~.\ufffa\ufffb\u5411\u8001\u5e2b\u97a0\u8eac\u3002"], "f" : "\u5f4e\u8170\uff0c\u5f13\u80cc\u3002"}]}], "stem" : "kono", "t" : "mikono"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"663": {"type": "string"}, "665": {"type": "string"}}, "required": ["663", "665"]}, "timeto": {"type": "object", "properties": {"663": {"type": "number"}, "665": {"type": "number"}}, "required": ["663", "665"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 664, "title" : ["[Sylvarraend Road]"], "description" : ["The winding hills give way to an advancing forest off to the northwest, with the road cutting through the middle like a carving knife. Small game trails crisscross the fields nearby, entering and exiting the road itself only to appear again on the other side."], "paths" : ["Obvious paths: southeast, northwest"], "location" : "Sylvarraend Road", "wayto" : {"663" : "northwest", "665" : "southeast"}, "timeto" : {"663" : 0.2, "665" : 0.2}, "image" : "en-sylvarraend-1264234799.png", "image_coords" : [539, 684, 549, 694]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"663": {"type": "string"}, "665": {"type": "string"}}, "required": ["663", "665"]}, "timeto": {"type": "object", "properties": {"663": {"type": "number"}, "665": {"type": "number"}}, "required": ["663", "665"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"js-sha3": {"type": "string"}}, "required": ["js-sha3"]}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-connect": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-watch": {"type": "string"}}, "required": ["gulp", "gulp-concat", "gulp-connect", "gulp-uglify", "gulp-watch"]}}, "required": ["name", "version", "description", "keywords", "author", "license", "repository", "main", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "lapti-pow-captcha", "version" : "1.1.0", "description" : "Proof-of-Work captcha without external service calls", "keywords" : ["captcha", "pow", "proof-of-work"], "author" : {"name" : "Phil Filippak", "email" : "xenohunter@yandex.ru", "url" : "https://github.com/xenohunter"}, "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/xenohunter/lapti-pow-captcha.git"}, "main" : "build/lapti-pow-captcha.min.js", "dependencies" : {"js-sha3" : "0.7.0"}, "devDependencies" : {"gulp" : "^4.0.2", "gulp-concat" : "^2.6.1", "gulp-connect" : "^5.7.0", "gulp-uglify" : "^3.0.2", "gulp-watch" : "^5.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"js-sha3": {"type": "string"}}, "required": ["js-sha3"]}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-connect": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-watch": {"type": "string"}}, "required": ["gulp", "gulp-concat", "gulp-connect", "gulp-uglify", "gulp-watch"]}}, "required": ["name", "version", "description", "keywords", "author", "license", "repository", "main", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.