input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"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"}, "gitHead": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "_id": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "_shasum": {"type": "string"}, "_from": {"type": "string"}, "_npmVersion": {"type": "string"}, "_nodeVersion": {"type": "string"}, "_npmUser": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "dist": {"type": "object", "properties": {"shasum": {"type": "string"}, "tarball": {"type": "string"}}, "required": ["shasum", "tarball"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "directories": {"type": "object", "properties": {}, "required": []}, "_resolved": {"type": "string"}}, "required": ["name", "version", "description", "main", "repository", "homepage", "keywords", "author", "license", "gitHead", "bugs", "_id", "scripts", "_shasum", "_from", "_npmVersion", "_nodeVersion", "_npmUser", "dist", "maintainers", "directories", "_resolved"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "https-browserify", "version" : "0.0.1", "description" : "https module compatability for browserify", "main" : "index.js", "repository" : {"type" : "git", "url" : "git://github.com/substack/https-browserify.git"}, "homepage" : "https://github.com/substack/https-browserify", "keywords" : ["https", "browser", "browserify"], "author" : {"name" : "James Halliday", "email" : "mail@substack.net", "url" : "http://substack.net"}, "license" : "MIT", "gitHead" : "7ce43143cc6dd3e5576a977fd49d7e25f35bfdb8", "bugs" : {"url" : "https://github.com/substack/https-browserify/issues"}, "_id" : "https-browserify@0.0.1", "scripts" : {}, "_shasum" : "3f91365cabe60b77ed0ebba24b454e3e09d95a82", "_from" : "https-browserify@0.0.1", "_npmVersion" : "2.9.0", "_nodeVersion" : "1.8.4", "_npmUser" : {"name" : "feross", "email" : "feross@feross.org"}, "dist" : {"shasum" : "3f91365cabe60b77ed0ebba24b454e3e09d95a82", "tarball" : "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.1.tgz"}, "maintainers" : [{"name" : "feross", "email" : "feross@feross.org"}, {"name" : "ptarjan", "email" : "npm@paulisageek.com"}, {"name" : "substack", "email" : "substack@gmail.com"}], "directories" : {}, "_resolved" : "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.1.tgz"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"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"}, "gitHead": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "_id": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "_shasum": {"type": "string"}, "_from": {"type": "string"}, "_npmVersion": {"type": "string"}, "_nodeVersion": {"type": "string"}, "_npmUser": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "dist": {"type": "object", "properties": {"shasum": {"type": "string"}, "tarball": {"type": "string"}}, "required": ["shasum", "tarball"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "directories": {"type": "object", "properties": {}, "required": []}, "_resolved": {"type": "string"}}, "required": ["name", "version", "description", "main", "repository", "homepage", "keywords", "author", "license", "gitHead", "bugs", "_id", "scripts", "_shasum", "_from", "_npmVersion", "_nodeVersion", "_npmUser", "dist", "maintainers", "directories", "_resolved"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"globals": {"type": "object", "properties": {"JEST_CONFIG_GLOBAL": {"type": "string"}}, "required": ["JEST_CONFIG_GLOBAL"]}, "testEnvironment": {"type": "string"}, "testURL": {"type": "string"}, "transform": {"type": "object", "properties": {}, "required": []}}, "required": ["globals", "testEnvironment", "testURL", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"globals" : {"JEST_CONFIG_GLOBAL" : "JEST_CONFIG_GLOBAL_VALUE"}, "testEnvironment" : "node", "testURL" : "http://localhost", "transform" : {}} | json_instruct | {"type": "object", "properties": {"globals": {"type": "object", "properties": {"JEST_CONFIG_GLOBAL": {"type": "string"}}, "required": ["JEST_CONFIG_GLOBAL"]}, "testEnvironment": {"type": "string"}, "testURL": {"type": "string"}, "transform": {"type": "object", "properties": {}, "required": []}}, "required": ["globals", "testEnvironment", "testURL", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includePath": {"type": "array", "items": {"type": "string"}}, "defines": {"type": "array", "items": {}}, "cppStandard": {"type": "string"}}, "required": ["name", "includePath", "defines", "cppStandard"]}}, "version": {"type": "integer"}}, "required": ["configurations", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"configurations" : [{"name" : "Linux", "includePath" : ["${default}", "${workspaceFolder}/src"], "defines" : [], "cppStandard" : "gnu++17"}], "version" : 4} | json_instruct | {"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includePath": {"type": "array", "items": {"type": "string"}}, "defines": {"type": "array", "items": {}}, "cppStandard": {"type": "string"}}, "required": ["name", "includePath", "defines", "cppStandard"]}}, "version": {"type": "integer"}}, "required": ["configurations", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {"type": "object", "properties": {"hash": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "transactionIndex": {"type": "integer"}, "confirmations": {"type": "null"}, "from": {"type": "string"}, "gasPrice": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "nonce": {"type": "integer"}, "data": {"type": "string"}, "r": {"type": "string"}, "s": {"type": "string"}, "v": {"type": "integer"}, "creates": {"type": "null"}, "raw": {"type": "string"}, "networkId": {"type": "integer"}, "chainId": {"type": "integer"}}, "required": ["hash", "blockHash", "blockNumber", "transactionIndex", "confirmations", "from", "gasPrice", "gasLimit", "to", "value", "nonce", "data", "r", "s", "v", "creates", "raw", "networkId", "chainId"]}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0xaae905e328c3ce6dc3a28c31e3e8892a6705ffb25bb51090ff681da35121de6a", "parentHash" : "0xbd30c56f69ba92aaa71bc1518bfbffb9d233b0d58c7f23f91dba1dfb99793823", "number" : 73387, "timestamp" : 1439368469, "nonce" : "0x38966b0c54f1a321", "difficulty" : 2199158487711, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x5208"}, "miner" : "0xe6A7a1d47ff21B6321162AEA7C6CB457D5476Bca", "extraData" : "0x476574682f76312e302e312d38326566323666362f6c696e75782f676f312e34", "transactions" : [{"hash" : "0xa959799d8ba7fe32a559126c2935b2c4f413f724b33bf5c79461b1c5ebf7f056", "blockHash" : "0xaae905e328c3ce6dc3a28c31e3e8892a6705ffb25bb51090ff681da35121de6a", "blockNumber" : 73387, "transactionIndex" : 0, "confirmations" : null, "from" : "0xD41dBAC94e7B5d3aCDc4B6FFf6FC5Af9Cd60578a", "gasPrice" : {"_hex" : "0xd9c429901"}, "gasLimit" : {"_hex" : "0x5208"}, "to" : "0x32Be343B94f860124dC4fEe278FDCBD38C102D88", "value" : {"_hex" : "0xddc5a39698ea800"}, "nonce" : 0, "data" : "0x", "r" : "0x781d24664880e814093df23542c53f2647368cce7b80ca76ee2635a1298b8aaf", "s" : "0x6e6ae9f1149302bce8552211e46d4993fa28e925aa6a1e6e9617846573c33512", "v" : 28, "creates" : null, "raw" : "0xf86c80850d9c4299018252089432be343b94f860124dc4fee278fdcbd38c102d88880ddc5a39698ea800801ca0781d24664880e814093df23542c53f2647368cce7b80ca76ee2635a1298b8aafa06e6ae9f1149302bce8552211e46d4993fa28e925aa6a1e6e9617846573c33512", "networkId" : 0, "chainId" : 0}]} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {"type": "object", "properties": {"hash": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "transactionIndex": {"type": "integer"}, "confirmations": {"type": "null"}, "from": {"type": "string"}, "gasPrice": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "nonce": {"type": "integer"}, "data": {"type": "string"}, "r": {"type": "string"}, "s": {"type": "string"}, "v": {"type": "integer"}, "creates": {"type": "null"}, "raw": {"type": "string"}, "networkId": {"type": "integer"}, "chainId": {"type": "integer"}}, "required": ["hash", "blockHash", "blockNumber", "transactionIndex", "confirmations", "from", "gasPrice", "gasLimit", "to", "value", "nonce", "data", "r", "s", "v", "creates", "raw", "networkId", "chainId"]}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$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"}, "build": {"type": "object", "properties": {"dockerfile": {"type": "string"}}, "required": ["dockerfile"]}, "settings": {"type": "object", "properties": {"terminal.integrated.shell.linux": {"type": "string"}}, "required": ["terminal.integrated.shell.linux"]}, "extensions": {"type": "array", "items": {"type": "string"}}, "remoteUser": {"type": "string"}}, "required": ["name", "build", "settings", "extensions", "remoteUser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Arch Linux", "build" : {"dockerfile" : "Dockerfile"}, "settings" : {"terminal.integrated.shell.linux" : "/bin/bash"}, "extensions" : ["ms-vscode.cpptools", "ms-python.python", "marus25.cortex-debug", "npclaudiu.vscode-gn", "persidskiy.vscode-gnformat"], "remoteUser" : "tianlan"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "build": {"type": "object", "properties": {"dockerfile": {"type": "string"}}, "required": ["dockerfile"]}, "settings": {"type": "object", "properties": {"terminal.integrated.shell.linux": {"type": "string"}}, "required": ["terminal.integrated.shell.linux"]}, "extensions": {"type": "array", "items": {"type": "string"}}, "remoteUser": {"type": "string"}}, "required": ["name", "build", "settings", "extensions", "remoteUser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 10422, "name" : "CTV Deobfuscate", "description" : "CTV is probably the worst TV channel in Canada. Unfortunately, even the most stalwart of CTV avoiders will occasionally feel an unswerveable urge to go to their site. This will protect you on your quest!", "user" : {"id" : 9577, "name" : "Gandalf Cunningham", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2008-09-09T15:49:44.000Z", "weekly_install_count" : 0, "total_install_count" : 167, "rating" : null, "after_screenshot_name" : "https://userstyles.org/auto_style_screenshots/10422-after.png?r=1533513934", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2008-09-09T15:49:44.000Z", "category" : "site", "raw_subcategory" : "ctv", "subcategory" : "ctv", "additional_info" : null, "style_tags" : [], "css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"ctv.ca\") {\r\n#footIcons, #footTopNav, #footBottomNav, #footCopyRight {display:none !important}\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/10422/ctv-deobfuscate.user.js", "style_settings" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"appid": {"type": "string"}, "name": {"type": "string"}, "website": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "enhanced": {"type": "boolean"}, "tile_background": {"type": "string"}, "icon": {"type": "string"}}, "required": ["appid", "name", "website", "license", "description", "enhanced", "tile_background", "icon"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"appid" : "11915e3ab4fbb44453d956eb4d5163cad8050d6b", "name" : "WebTools", "website" : "https://github.com/ukdtom/WebTools.bundle", "license" : "Mozilla Public License 2.0", "description" : "WebTools is a collection of tools for Plex Media Server. Like the Unsupported AppStore (UAS)", "enhanced" : false, "tile_background" : "dark", "icon" : "webtools.png"} | json_instruct | {"type": "object", "properties": {"appid": {"type": "string"}, "name": {"type": "string"}, "website": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "enhanced": {"type": "boolean"}, "tile_background": {"type": "string"}, "icon": {"type": "string"}}, "required": ["appid", "name", "website", "license", "description", "enhanced", "tile_background", "icon"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Title": {"type": "string"}, "FullTitle": {"type": "string"}, "Slug": {"type": "string"}, "Type": {"type": "string"}, "Year": {"type": "integer"}, "ImageUrl": {"type": "string"}, "ExternalIds": {"type": "object", "properties": {"Tmdb": {"type": "string"}, "Imdb": {"type": "string"}, "Tvdb": {"type": "null"}}, "required": ["Tmdb", "Imdb", "Tvdb"]}, "Plot": {"type": "string"}, "Tagline": {"type": "string"}, "Directors": {"type": "string"}, "Writers": {"type": "string"}, "Stars": {"type": "string"}, "Genres": {"type": "string"}, "RuntimeMinutes": {"type": "integer"}, "Runtime": {"type": "string"}, "ContentRating": {"type": "string"}}, "required": ["Title", "FullTitle", "Slug", "Type", "Year", "ImageUrl", "ExternalIds", "Plot", "Tagline", "Directors", "Writers", "Stars", "Genres", "RuntimeMinutes", "Runtime", "ContentRating"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Title" : "The Freddie Mercury Tribute: Concert for AIDS Awareness", "FullTitle" : "The Freddie Mercury Tribute: Concert for AIDS Awareness (1992)", "Slug" : "the-freddie-mercury-tribute-concert-for-aids-awareness-1992", "Type" : "Movie", "Year" : 1992, "ImageUrl" : "Movie/the-freddie-mercury-tribute-concert-for-aids-awareness-1992/cover.jpg", "ExternalIds" : {"Tmdb" : "34490", "Imdb" : "tt0103999", "Tvdb" : null}, "Plot" : "A live concert in tribute to Freddie Mercury, former lead singer of Queen. Mercury died of AIDS and so some of the proceeds of this concert went to AIDS research. Features performers such as Metallica, Def Leppard, Elton John, Axl Rose, Extreme, George Michael, and many others. Performers alternate between doing their own hits, covering Queen songs, or jamming with the surviving members of Queen.", "Tagline" : "", "Directors" : "David Mallet", "Writers" : "", "Stars" : "Freddie Mercury, Queen, David Bowie", "Genres" : "Documentary, Music", "RuntimeMinutes" : 175, "Runtime" : "2h 55min", "ContentRating" : "Unrated"} | json_instruct | {"type": "object", "properties": {"Title": {"type": "string"}, "FullTitle": {"type": "string"}, "Slug": {"type": "string"}, "Type": {"type": "string"}, "Year": {"type": "integer"}, "ImageUrl": {"type": "string"}, "ExternalIds": {"type": "object", "properties": {"Tmdb": {"type": "string"}, "Imdb": {"type": "string"}, "Tvdb": {"type": "null"}}, "required": ["Tmdb", "Imdb", "Tvdb"]}, "Plot": {"type": "string"}, "Tagline": {"type": "string"}, "Directors": {"type": "string"}, "Writers": {"type": "string"}, "Stars": {"type": "string"}, "Genres": {"type": "string"}, "RuntimeMinutes": {"type": "integer"}, "Runtime": {"type": "string"}, "ContentRating": {"type": "string"}}, "required": ["Title", "FullTitle", "Slug", "Type", "Year", "ImageUrl", "ExternalIds", "Plot", "Tagline", "Directors", "Writers", "Stars", "Genres", "RuntimeMinutes", "Runtime", "ContentRating"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"half=upper,open=false": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "half=lower,open=false": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "half=upper,open=true": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "half=lower,open=true": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["half=upper,open=false", "half=lower,open=false", "half=upper,open=true", "half=lower,open=true"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"half=upper,open=false" : {"model" : "arfo:block/tall_savanna_grass_top"}, "half=lower,open=false" : {"model" : "arfo:block/tall_savanna_grass_bottom"}, "half=upper,open=true" : {"model" : "arfo:block/tall_savanna_grass_top_down"}, "half=lower,open=true" : {"model" : "arfo:block/tall_savanna_grass_bottom_down"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"half=upper,open=false": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "half=lower,open=false": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "half=upper,open=true": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "half=lower,open=true": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["half=upper,open=false", "half=lower,open=false", "half=upper,open=true", "half=lower,open=true"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "torque": {"type": "integer"}, "revolutions": {"type": "integer"}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "ingredient": {"type": "string"}}, "required": ["type", "torque", "revolutions", "result", "ingredient"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "thermionics:hammer_mill", "torque" : 8, "revolutions" : 20, "result" : {"item" : "minecraft:gravel"}, "ingredient" : "minecraft:cobblestone"} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "torque": {"type": "integer"}, "revolutions": {"type": "integer"}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "ingredient": {"type": "string"}}, "required": ["type", "torque", "revolutions", "result", "ingredient"], "$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"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "11", "provinceId" : "35", "regencyId" : "26", "name" : "Kwanyar"} | 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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "image": {"type": "string"}}, "required": ["id", "image"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "1", "image" : "/assets/img/brand-logo/brand-logo-1.png"}, {"id" : "2", "image" : "/assets/img/brand-logo/brand-logo-2.png"}, {"id" : "3", "image" : "/assets/img/brand-logo/brand-logo-3.png"}, {"id" : "4", "image" : "/assets/img/brand-logo/brand-logo-4.png"}, {"id" : "5", "image" : "/assets/img/brand-logo/brand-logo-5.png"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "image": {"type": "string"}}, "required": ["id", "image"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["nidam"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Train": {"type": "object", "properties": {"batch_size": {"type": "integer"}, "training_epochs": {"type": "integer"}, "learning_rate": {"type": "number"}, "weight_decay": {"type": "number"}, "datatype": {"type": "string"}, "labels_per_sample": {"type": "integer"}, "feature_size": {"type": "integer"}, "n_samples": {"type": "integer"}, "n_classes": {"type": "array", "items": {"type": "integer"}}, "val_ratio": {"type": "number"}, "test_ratio": {"type": "number"}, "optimizer": {"type": "string"}}, "required": ["batch_size", "training_epochs", "learning_rate", "weight_decay", "datatype", "labels_per_sample", "feature_size", "n_samples", "n_classes", "val_ratio", "test_ratio", "optimizer"]}, "Prune": {"type": "object", "properties": {"pruning_perc": {"type": "array", "items": {"type": "number"}}, "optimizers": {"type": "string"}, "learning_rates": {"type": "array", "items": {"type": "number"}}, "retrain_epochs": {"type": "array", "items": {"type": "integer"}}, "pruning_rounds": {"type": "integer"}}, "required": ["pruning_perc", "optimizers", "learning_rates", "retrain_epochs", "pruning_rounds"]}}, "required": ["Train", "Prune"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Train" : {"batch_size" : 64, "training_epochs" : 1500, "learning_rate" : 0.0005, "weight_decay" : 0.0005, "datatype" : "sum_hierlabel", "labels_per_sample" : 3, "feature_size" : 50, "n_samples" : 2000, "n_classes" : [3, 5, 7], "val_ratio" : 0.2, "test_ratio" : 0.2, "optimizer" : "Adam"}, "Prune" : {"pruning_perc" : [75.0, 30.0, 15.0, 15.0], "optimizers" : "Adam", "learning_rates" : [0.0005, 0.0005, 0.0005, 0.0005], "retrain_epochs" : [200, 1000, 2500, 5000], "pruning_rounds" : 3}} | json_instruct | {"type": "object", "properties": {"Train": {"type": "object", "properties": {"batch_size": {"type": "integer"}, "training_epochs": {"type": "integer"}, "learning_rate": {"type": "number"}, "weight_decay": {"type": "number"}, "datatype": {"type": "string"}, "labels_per_sample": {"type": "integer"}, "feature_size": {"type": "integer"}, "n_samples": {"type": "integer"}, "n_classes": {"type": "array", "items": {"type": "integer"}}, "val_ratio": {"type": "number"}, "test_ratio": {"type": "number"}, "optimizer": {"type": "string"}}, "required": ["batch_size", "training_epochs", "learning_rate", "weight_decay", "datatype", "labels_per_sample", "feature_size", "n_samples", "n_classes", "val_ratio", "test_ratio", "optimizer"]}, "Prune": {"type": "object", "properties": {"pruning_perc": {"type": "array", "items": {"type": "number"}}, "optimizers": {"type": "string"}, "learning_rates": {"type": "array", "items": {"type": "number"}}, "retrain_epochs": {"type": "array", "items": {"type": "integer"}}, "pruning_rounds": {"type": "integer"}}, "required": ["pruning_perc", "optimizers", "learning_rates", "retrain_epochs", "pruning_rounds"]}}, "required": ["Train", "Prune"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "statements": {"type": "array", "items": {"type": "object", "properties": {"__comment": {"type": "string"}, "query": {"type": "string"}, "iterative": {"type": "boolean"}}, "required": ["__comment", "query", "iterative"]}}}, "required": ["name", "statements"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "EC2 Instances assume IAM roles", "statements" : [{"__comment" : "Create STS_ASSUMEROLE_ALLOW realtionship from ec2 instance to the associated iaminstance iam role", "query" : "MATCH (aa:AWSAccount)-[:RESOURCE]->(i:EC2Instance)\nWITH SPLIT(i.iaminstanceprofile, '/')[-1] AS role_name, aa, i\nMATCH (aa)-[:RESOURCE]->(r:AWSRole)\nWHERE r.arn ENDS WITH role_name\nMERGE (i)-[:STS_ASSUMEROLE_ALLOW]->(r)", "iterative" : false}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "statements": {"type": "array", "items": {"type": "object", "properties": {"__comment": {"type": "string"}, "query": {"type": "string"}, "iterative": {"type": "boolean"}}, "required": ["__comment", "query", "iterative"]}}}, "required": ["name", "statements"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "demo": {"type": "string"}}, "required": ["url", "name", "description", "author", "demo"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"url" : "https://github.com/jenaro94/e11ty-collected-notes", "name" : "11ty-Collected-Notes", "description" : "11ty + Collected Notes API", "author" : "jenaroc", "demo" : "https://11tynotes.netlify.app/"} | json_instruct | {"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "demo": {"type": "string"}}, "required": ["url", "name", "description", "author", "demo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}, "city": {"type": "string"}, "state": {"type": "string"}, "code": {"type": "string"}, "country": {"type": "string"}, "phone": {"type": "string"}, "geo": {"type": "object", "properties": {"loc": {"type": "array", "items": {"type": "string"}}, "accuracy": {"type": "string"}}, "required": ["loc", "accuracy"]}, "updated": {"type": "string"}}, "required": ["_id", "name", "address", "city", "state", "code", "country", "phone", "geo", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "brewery_Sam_Choy's_Breakfast,_Lunch,_Crab_&_Big_Aloha_Brewery", "name" : "Sam Choy's Breakfast, Lunch, Crab & Big Aloha Brewery", "address" : ["580 North Nimitz Highway"], "city" : "Honolulu", "state" : "Hawaii", "code" : "96817", "country" : "United States", "phone" : "1-808-545-7979", "geo" : {"loc" : ["-157.858", "21.3069"], "accuracy" : "APPROXIMATE"}, "updated" : "2010-07-22 20:00:20"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}, "city": {"type": "string"}, "state": {"type": "string"}, "code": {"type": "string"}, "country": {"type": "string"}, "phone": {"type": "string"}, "geo": {"type": "object", "properties": {"loc": {"type": "array", "items": {"type": "string"}}, "accuracy": {"type": "string"}}, "required": ["loc", "accuracy"]}, "updated": {"type": "string"}}, "required": ["_id", "name", "address", "city", "state", "code", "country", "phone", "geo", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Nitry", "circ" : "2\u00e8me circonscription", "dpt" : "Yonne", "inscrits" : 270, "abs" : 140, "votants" : 130, "blancs" : 15, "nuls" : 1, "exp" : 114, "res" : [{"nuance" : "UDI", "nom" : "M. Andr\u00e9 VILLIERS", "voix" : 76}, {"nuance" : "REM", "nom" : "M. Jean-Yves CAULLET", "voix" : 38}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"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", "connectsWith", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "title" : "Ramla bay villa", "id" : "170572802", "bbox" : [14.2835669, 36.0611956, 14.2835669, 36.0611956], "description" : "A villa maritima discovered in 1910-11.", "connectsWith" : ["462213", "462462"], "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [14.2835669, 36.0611956]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [14.2835669, 36.0611956]}, "id" : "osm-location-of-ramla-bay-roman-villa", "type" : "Feature", "properties" : {"description" : "Representative location based on OpenStreetMap.", "location_precision" : "precise", "title" : "OSM location of Ramla bay Roman villa", "link" : "http://pleiades.stoa.org/places/170572802/osm-location-of-ramla-bay-roman-villa"}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"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", "connectsWith", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d353-155", "text" : ";h&m 9, 1950\nDoi Kblson\nHadio\u00bbTV Sopemrlsor\nTbs Uolvwrslty <if Coineetieut\nStorrs^ Conmotiaut\nDost Hr. ^iMit\nAppnrsntly oust lottcrs regarding SnCBTGBQtllGr YOlSt FAMILY X]ICCMB orossod in\ntha mall.\n7hi0 8\u00abrl98 haa dafloltaly bean aohadulad Yer dlstrlbutim bagiiming with\ntha first SundiQr in Ootohar. Will it be possible for ystt to either update\nprogram oe^ or record a whole new prograaa o\u00bbe bgr oiir deadline data of\nSeptember 1? Or, if tl^se altaraatires aare ie^possibla, would you gite us\npermission to edit program one?\nSim^ the amounoemeut of our fall sohedule Is due any time now, I would\nappreciate learning if the series will be available for use in tha fall.\nAlsOf we will be ha^ipy to 3?eceive the BMurter tapes for all of the prognass\nat your earliest oonvenieBoe.\nSincerely^\nBEU/dfc\nR^Dsrt S. Haderwood^ Svt\nnetwork Manager"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"shape": {"type": "string"}, "rotation": {"type": "integer"}, "hash": {"type": "integer"}, "center": {"type": "array", "items": {"type": "number"}}, "axes": {"type": "array", "items": {"type": "integer"}}, "area": {"type": "number"}, "perimeter": {"type": "number"}, "eccentricity": {"type": "number"}}, "required": ["shape", "rotation", "hash", "center", "axes", "area", "perimeter", "eccentricity"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"shape" : "ellipse", "rotation" : 175, "hash" : -7797147848480717275, "center" : [100.0, 100.0], "axes" : [43, 7], "area" : 945.6193887305277, "perimeter" : 178.14328785796528, "eccentricity" : 0.9866606249114617} | json_instruct | {"type": "object", "properties": {"shape": {"type": "string"}, "rotation": {"type": "integer"}, "hash": {"type": "integer"}, "center": {"type": "array", "items": {"type": "number"}}, "axes": {"type": "array", "items": {"type": "integer"}}, "area": {"type": "number"}, "perimeter": {"type": "number"}, "eccentricity": {"type": "number"}}, "required": ["shape", "rotation", "hash", "center", "axes", "area", "perimeter", "eccentricity"], "$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"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "clean": {"type": "string"}, "build": {"type": "string"}, "build:prepare": {"type": "string"}, "build:TW": {"type": "string"}, "build:clean": {"type": "string"}, "rebuild": {"type": "string"}, "serve:start": {"type": "string"}, "serve:stop": {"type": "string"}, "serve:open-browser-delayed": {"type": "string"}, "serve:listen-changes": {"type": "string"}, "serve": {"type": "string"}, "copyTWinfo": {"type": "string"}}, "required": ["test", "clean", "build", "build:prepare", "build:TW", "build:clean", "rebuild", "serve:start", "serve:stop", "serve:open-browser-delayed", "serve:listen-changes", "serve", "copyTWinfo"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@mdi/svg": {"type": "string"}, "chartist": {"type": "string"}, "chokidar-cli": {"type": "string"}, "lodash": {"type": "string"}, "open-cli": {"type": "string"}, "semver": {"type": "string"}, "simple-git": {"type": "string"}, "tiddlywiki": {"type": "string"}}, "required": ["@mdi/svg", "chartist", "chokidar-cli", "lodash", "open-cli", "semver", "simple-git", "tiddlywiki"]}}, "required": ["name", "version", "description", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gettingsebdoing", "version" : "1.4.0", "description" : "Getting Seb Doing", "scripts" : {"test" : "npm run build", "clean" : "rm -rf build", "build" : "npm run build:prepare && npm run build:TW", "build:prepare" : "mkdir -p build/tiddlers && cp tiddlywiki.info build/ && node bin/updateVersion.js", "build:TW" : "tiddlywiki ++./plugin build --verbose --output build/gh-pages/ --load deps --build index", "build:clean" : "npm run clean && npm run build", "rebuild" : "npm run build:clean", "serve:start" : "npm run serve:stop && tiddlywiki ++./plugin build --verbose --listen || echo killed", "serve:stop" : "pkill -f \"node `which tiddlywiki`\" || echo nothing running", "serve:open-browser-delayed" : "sleep 2 && open-cli http://127.0.0.1:8080 --background &", "serve:listen-changes" : "chokidar \"plugin/**/*.tid\" \"plugin/**/*.js\" -c \"npm run build && npm run serve:start\" --initial", "serve" : "npm run serve:open-browser-delayed && npm run serve:listen-changes", "copyTWinfo" : "cp node_modules/tiddlywiki/editions/server/tiddlywiki.info ."}, "repository" : {"type" : "git", "url" : "git+https://github.com/sebastianovide/GettingSebDoing.git"}, "author" : "Sebastian Ovide", "license" : "MIT", "bugs" : {"url" : "https://github.com/sebastianovide/GettingSebDoing/issues"}, "homepage" : "https://github.com/sebastianovide/GettingSebDoing#readme", "dependencies" : {"@mdi/svg" : "^5.9.55", "chartist" : "^0.11.4", "chokidar-cli" : "^2.0.0", "lodash" : "^4.17.21", "open-cli" : "^6", "semver" : "^7.3.5", "simple-git" : "^2.37.0", "tiddlywiki" : "^5.1.23"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "clean": {"type": "string"}, "build": {"type": "string"}, "build:prepare": {"type": "string"}, "build:TW": {"type": "string"}, "build:clean": {"type": "string"}, "rebuild": {"type": "string"}, "serve:start": {"type": "string"}, "serve:stop": {"type": "string"}, "serve:open-browser-delayed": {"type": "string"}, "serve:listen-changes": {"type": "string"}, "serve": {"type": "string"}, "copyTWinfo": {"type": "string"}}, "required": ["test", "clean", "build", "build:prepare", "build:TW", "build:clean", "rebuild", "serve:start", "serve:stop", "serve:open-browser-delayed", "serve:listen-changes", "serve", "copyTWinfo"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@mdi/svg": {"type": "string"}, "chartist": {"type": "string"}, "chokidar-cli": {"type": "string"}, "lodash": {"type": "string"}, "open-cli": {"type": "string"}, "semver": {"type": "string"}, "simple-git": {"type": "string"}, "tiddlywiki": {"type": "string"}}, "required": ["@mdi/svg", "chartist", "chokidar-cli", "lodash", "open-cli", "semver", "simple-git", "tiddlywiki"]}}, "required": ["name", "version", "description", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 1709050023, "parent" : 1709050, "name" : "BINTANG SELATAN", "latitude" : null, "longitude" : null, "postal" : [38371], "children" : []} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "Wedlock", "definitions" : ["The state of being married."], "parts-of-speech" : "Noun"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"month": {"type": "array", "items": {"type": "string"}}, "weekdays": {"type": "array", "items": {"type": "string"}}, "shortDatePattern": {"type": "string"}, "longDatePattern": {"type": "string"}, "shortTimePattern": {"type": "string"}, "longTimePattern": {"type": "string"}}, "required": ["month", "weekdays", "shortDatePattern", "longDatePattern", "shortTimePattern", "longTimePattern"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"month" : ["januar", "februar", "mars", "apr\u00edl", "mai", "juni", "juli", "august", "september", "oktober", "november", "desember", ""], "weekdays" : ["sunnudagur", "m\u00e1nadagur", "t\u00fdsdagur", "mikudagur", "h\u00f3sdagur", "fr\u00edggjadagur", "leygardagur"], "shortDatePattern" : "dd-MM-yyyy", "longDatePattern" : "dddd dd MMMM yyyy", "shortTimePattern" : "HH:mm", "longTimePattern" : "HH:mm:ss"} | json_instruct | {"type": "object", "properties": {"month": {"type": "array", "items": {"type": "string"}}, "weekdays": {"type": "array", "items": {"type": "string"}}, "shortDatePattern": {"type": "string"}, "longDatePattern": {"type": "string"}, "shortTimePattern": {"type": "string"}, "longTimePattern": {"type": "string"}}, "required": ["month", "weekdays", "shortDatePattern", "longDatePattern", "shortTimePattern", "longTimePattern"], "$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"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "b.json"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "Description"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features" : [{"type" : "Feature", "properties" : {"Name" : "TERRA ROXA", "Description" : "TERRA ROXA / PR"}, "geometry" : {"type" : "LineString", "coordinates" : [[-53.958606909481254, -24.120355810372303], [-53.966574697764024, -24.369824681064127], [-53.96726244980215, -24.389786236445616], [-54.12102983365986, -24.3899481764671], [-54.171760822304066, -24.3774871935791], [-54.17449049763832, -24.340348285844694], [-54.14805138995962, -24.31743375616287], [-54.1414389186711, -24.294601180799813], [-54.17897960302622, -24.276207948637875], [-54.163387271605245, -24.247379050902452], [-54.168006716636626, -24.061018316042407], [-54.09845869121557, -24.025030304005266], [-54.05583403950925, -24.036549734482605], [-54.017240134824306, -24.015327178506425], [-53.99841500684704, -23.98570595826334], [-53.966207385862106, -24.00242607280495], [-53.968059659225844, -24.023575202733355], [-53.98962251326833, -24.065350010394635], [-53.988630868619616, -24.126709857873607], [-53.958606909481254, -24.120355810372303]]}}]} | json_instruct | {"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"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "Description"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$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": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "import React from 'react';\nimport createSvgIcon from './utils/createSvgIcon';\nexport default createSvgIcon(React.createElement(React.Fragment, null, React.createElement(\"path\", {\n fill: \"none\",\n d: \"M0 0h24v24H0V0z\"\n}), React.createElement(\"path\", {\n d: \"M11.15 3.4L7.43 9.48c-.41.66.07 1.52.85 1.52h7.43c.78 0 1.26-.86.85-1.52L12.85 3.4c-.39-.64-1.31-.64-1.7 0z\"\n}), React.createElement(\"circle\", {\n cx: \"17.5\",\n cy: \"17.5\",\n r: \"4.5\"\n}), React.createElement(\"path\", {\n d: \"M4 21.5h6c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1z\"\n})), 'CategoryRounded');", "map" : null, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"topic": {"type": "string"}, "msg": {"type": "object", "properties": {"state": {"type": "string"}, "distance": {"type": "string"}}, "required": ["state", "distance"]}}, "required": ["topic", "msg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"topic" : "weasleyclock/bryn", "msg" : {"state" : "lost", "distance" : "500"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"topic": {"type": "string"}, "msg": {"type": "object", "properties": {"state": {"type": "string"}, "distance": {"type": "string"}}, "required": ["state", "distance"]}}, "required": ["topic", "msg"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01014196": {"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": ["E01014196"]}, "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" : {"E01014196" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00071671", "LAD11CD" : "E06000020"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00071672", "LAD11CD" : "E06000020"}, "arcs" : [[4, 5, -3, 6, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00071673", "LAD11CD" : "E06000020"}, "arcs" : [[-4, -6, 8, 9]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00071674", "LAD11CD" : "E06000020"}, "arcs" : [[-9, -5, 10]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00071677", "LAD11CD" : "E06000020"}, "arcs" : [[11, -7, -2]]}]}}, "arcs" : [[[5856, 4578], [-30, 607], [-286, -6], [-49, -320], [127, -136], [-248, -50], [34, 585], [-255, 283], [293, 293], [-60, 365], [102, 68], [39, -264], [428, 124], [151, 282]], [[6102, 6409], [161, -88], [-2, -489]], [[6261, 5832], [-161, -152], [121, -249], [505, 86], [-165, -241], [49, -178], [377, 23], [-33, -672], [-235, 70], [-46, -321], [-140, 133]], [[6533, 4331], [28, 481], [-350, 210], [-225, -46], [9, -391], [-139, -7]], [[6163, 2707], [-49, 673]], [[6114, 3380], [330, 393], [-38, 439], [127, 119]], [[6261, 5832], [990, 571], [287, -143], [71, 983]], [[7609, 7243], [51, -1], [822, -52], [758, 859], [94, 455], [272, 292], [393, -8796], [-833, 197], [-85, 735], [-576, 1613], [-421, 461], [-552, 75], [-340, -612], [-501, 510], [-528, -272]], [[6114, 3380], [-125, -25], [-56, 279], [-175, -396], [-78, 286], [-447, 283]], [[5233, 3807], [536, 400], [87, 371]], [[6163, 2707], [-177, -95], [-1390, -724], [-121, -58], [1, 226], [141, 568], [-374, 477], [21, 189], [-663, -101], [-894, 1222], [-428, 742], [-78, 911], [-485, -609], [-553, -1210], [-1163, -2212], [296, 2927], [234, 2268], [637, 2771], [720, -2296], [63, -1130], [399, -357], [1591, 396], [324, -752], [231, -712], [-15, -643], [301, -293], [-68, -116], [520, -289]], [[6102, 6409], [-1, 254], [323, 147], [-206, 156], [-4, 342], [417, 340], [95, -619], [883, 214]]], "transform" : {"scale" : [3.494914530922325e-06, 1.31402151022328e-06], "translate" : [-2.452520919098524, 52.65030934861501]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01014196": {"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": ["E01014196"]}, "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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ilm.remove_policy": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}, "patterns": {"type": "array", "items": {"type": "string"}}, "documentation": {"type": "string"}}, "required": ["methods", "patterns", "documentation"]}}, "required": ["ilm.remove_policy"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ilm.remove_policy" : {"methods" : ["POST"], "patterns" : ["{indices}/_ilm/remove"], "documentation" : "https://www.elastic.co/guide/en/elasticsearch/reference/current/ilm-remove-policy.html"}} | json_instruct | {"type": "object", "properties": {"ilm.remove_policy": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}, "patterns": {"type": "array", "items": {"type": "string"}}, "documentation": {"type": "string"}}, "required": ["methods", "patterns", "documentation"]}}, "required": ["ilm.remove_policy"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localities" : ["Cramerton, NC"], "state" : "NC", "postal_code" : "28032", "locality" : "Cramerton, NC", "lat" : 35.233033, "region" : {"fips" : "37", "abbr" : "NC", "name" : "North Carolina"}, "city" : "Cramerton", "type" : "STANDARD", "lng" : -81.079513, "counties" : [{"fips" : "071", "name" : "Gaston 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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"calAffiliated": {"type": "boolean"}, "templateKey": {"type": "string"}, "date": {"type": "string"}, "url": {"type": "string"}, "title": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "id": {"type": "string"}, "image": {"type": "string"}, "description": {"type": "string"}}, "required": ["calAffiliated", "templateKey", "date", "url", "title", "tags", "id", "image", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"calAffiliated" : true, "templateKey" : "ird-resource", "date" : "2020-11-18T23:56:07.878Z", "url" : "https://career.berkeley.edu/handshake", "title" : "Handshake", "tags" : ["Alumni Networks"], "id" : "937ec141-7fe5-43b0-aa8c-12d603e84b47", "image" : "/img/handshake-logo.png", "description" : "Handshake uses cutting edge technology to help Berkeley students more easily connect with employers and source jobs, internships, event information, and On-Campus Recruiting (OCR) opportunities. "} | json_instruct | {"type": "object", "properties": {"calAffiliated": {"type": "boolean"}, "templateKey": {"type": "string"}, "date": {"type": "string"}, "url": {"type": "string"}, "title": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "id": {"type": "string"}, "image": {"type": "string"}, "description": {"type": "string"}}, "required": ["calAffiliated", "templateKey", "date", "url", "title", "tags", "id", "image", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[[79.84545841723212, 7.330541813999677], [79.84569412774576, 7.32858310529708], [79.84569412774576, 7.326624396594481], [79.84569412774576, 7.325840913113442], [79.84569412774576, 7.325449171372922], [79.84569412774576, 7.325057429632403], [79.84569412774576, 7.324273946151363], [79.84569412774576, 7.323098720929805], [79.84475128569123, 7.323490462670324], [79.8431013120958, 7.323490462670324], [79.841687049014, 7.323490462670324], [79.8402727859322, 7.323490462670324], [79.83932994387767, 7.323098720929805], [79.83932994387767, 7.323490462670324], [79.83862281233677, 7.324273946151363], [79.83791568079587, 7.325449171372922], [79.83767997028224, 7.325449171372922], [79.83720854925497, 7.326624396594481], [79.83650141771408, 7.328191363556559], [79.83626570720044, 7.329366588778118], [79.8360299966868, 7.330933555740197], [79.83697283874133, 7.330933555740197], [79.83862281233677, 7.330933555740197], [79.84003707541856, 7.330933555740197], [79.84145133850036, 7.330933555740197], [79.8431013120958, 7.330933555740197], [79.84498699620485, 7.330541813999677], [79.84545841723212, 7.330541813999677]]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "$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": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"name" : "Carbon County", "name_long" : "Carbon County, UT", "fips" : "49007", "state_code_int" : 49, "state_code_postal" : "UT", "state_code_iso" : "US-UT", "county_code" : 7, "population" : 20463, "countrylevel_id" : "fips:49007", "census_data" : {"COUNTYNS" : "01448018", "AFFGEOID" : "0500000US49007", "LSAD" : "06", "ALAND" : 3831067717, "AWATER" : 15844443}, "center_lat" : 39.65, "center_lon" : -110.59, "area_m2" : 3846912160, "timezone" : "America/Denver"}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-111.247, 39.813], [-110.858, 39.813], [-109.977, 39.806], [-109.883, 39.806], [-109.962, 39.726], [-110.038, 39.567], [-110.024, 39.469], [-110.024, 39.469], [-111.078, 39.47], [-111.081, 39.467], [-111.085, 39.522], [-111.132, 39.614], [-111.159, 39.596], [-111.247, 39.704], [-111.247, 39.813]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"party_count": {"type": "integer"}, "compute_parties": {"type": "array", "items": {"type": "integer"}}, "input_parties": {"type": "array", "items": {"type": "integer"}}, "preprocessing": {"type": "boolean"}}, "required": ["party_count", "compute_parties", "input_parties", "preprocessing"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"party_count" : 15, "compute_parties" : [1, 2, 3, 4, 5], "input_parties" : [6, 7, 8, 9, 10, 11, 12, 13, 14, 15], "preprocessing" : false} | json_instruct | {"type": "object", "properties": {"party_count": {"type": "integer"}, "compute_parties": {"type": "array", "items": {"type": "integer"}}, "input_parties": {"type": "array", "items": {"type": "integer"}}, "preprocessing": {"type": "boolean"}}, "required": ["party_count", "compute_parties", "input_parties", "preprocessing"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft.AspNetCore": {"type": "string"}}, "required": ["Default", "Microsoft.AspNetCore"]}}, "required": ["LogLevel"]}, "BaseUrl": {"type": "string"}, "RootPath": {"type": "string"}}, "required": ["Logging", "BaseUrl", "RootPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft.AspNetCore" : "Warning"}}, "BaseUrl" : "https://localhost:44362", "RootPath" : "E:\\Dev\\Amadare\\PluginRepoService\\PluginRepoService\\data"} | json_instruct | {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft.AspNetCore": {"type": "string"}}, "required": ["Default", "Microsoft.AspNetCore"]}}, "required": ["LogLevel"]}, "BaseUrl": {"type": "string"}, "RootPath": {"type": "string"}}, "required": ["Logging", "BaseUrl", "RootPath"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "short_name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "minimum_chrome_version": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "19": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "19", "48", "128"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "css": {"type": "array", "items": {"type": "string"}}, "run_at": {"type": "string"}}, "required": ["matches", "js", "css", "run_at"]}}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["manifest_version", "name", "short_name", "description", "version", "minimum_chrome_version", "icons", "content_scripts", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"manifest_version" : 2, "name" : "Hide unwanted streams on Twitch", "short_name" : "Hide streams", "description" : "Blocks content that you don't want to see on twitch.tv, such as channels, games, videos etc.", "version" : "1.3.29", "minimum_chrome_version" : "18", "icons" : {"16" : "images/icon-hide-16.png", "19" : "images/icon-hide-19.png", "48" : "images/icon-hide-48.png", "128" : "images/icon-hide-128b.png"}, "content_scripts" : [{"matches" : ["*://*.twitch.tv/*"], "js" : ["vendor/jquery-1.11.2.min.js", "vendor/promise-6.1.0.min.js", "content.js"], "css" : ["content.css"], "run_at" : "document_start"}], "permissions" : ["storage", "*://*.twitch.tv/*"]} | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "short_name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "minimum_chrome_version": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "19": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "19", "48", "128"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "css": {"type": "array", "items": {"type": "string"}}, "run_at": {"type": "string"}}, "required": ["matches", "js", "css", "run_at"]}}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["manifest_version", "name", "short_name", "description", "version", "minimum_chrome_version", "icons", "content_scripts", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"count": {"type": "integer"}, "412031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "259041": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "999920": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "353031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "439021": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "352010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "412031", "259041", "N.A.//", "999920", "353031", "439021", "352010"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"count" : 12, "412031" : {"count" : 1}, "259041" : {"count" : 1}, "N.A.//" : {"count" : 6}, "999920" : {"count" : 1}, "353031" : {"count" : 1}, "439021" : {"count" : 1}, "352010" : {"count" : 1}} | json_instruct | {"type": "object", "properties": {"count": {"type": "integer"}, "412031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "259041": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "999920": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "353031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "439021": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "352010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "412031", "259041", "N.A.//", "999920", "353031", "439021", "352010"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"leaf_type": {"type": "string"}, "branching_factor": {"type": "number"}, "bark_type": {"type": "string"}, "height": {"type": "number"}}, "required": ["leaf_type", "branching_factor", "bark_type", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"leaf_type" : "small", "branching_factor" : 1.0, "bark_type" : "naked", "height" : 5.6} | json_instruct | {"type": "object", "properties": {"leaf_type": {"type": "string"}, "branching_factor": {"type": "number"}, "bark_type": {"type": "string"}, "height": {"type": "number"}}, "required": ["leaf_type", "branching_factor", "bark_type", "height"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"apis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "method": {"type": "string"}, "return": {"type": "string"}, "params": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["name", "required", "type"]}}}, "required": ["name", "method", "return", "params"]}}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["apis", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"apis" : [{"name" : "#get", "method" : "GET", "return" : "PlaceTopic", "params" : [{"name" : "icon_size", "required" : false, "type" : "placetopic_icon_size"}]}], "fields" : [{"name" : "count", "type" : "unsigned int"}, {"name" : "has_children", "type" : "bool"}, {"name" : "icon_url", "type" : "string"}, {"name" : "id", "type" : "string"}, {"name" : "name", "type" : "string"}, {"name" : "parent_ids", "type" : "list<string>"}, {"name" : "plural_name", "type" : "string"}, {"name" : "top_subtopic_names", "type" : "list<string>"}]} | json_instruct | {"type": "object", "properties": {"apis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "method": {"type": "string"}, "return": {"type": "string"}, "params": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["name", "required", "type"]}}}, "required": ["name", "method", "return", "params"]}}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["apis", "fields"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "citethispage": {"type": "string"}, "citethispage-desc": {"type": "string"}, "citethispage-link": {"type": "string"}, "tooltip-citethispage": {"type": "string"}, "citethispage-change-submit": {"type": "string"}, "citethispage-change-target": {"type": "string"}}, "required": ["@metadata", "citethispage", "citethispage-desc", "citethispage-link", "tooltip-citethispage", "citethispage-change-submit", "citethispage-change-target"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["Hanberke"]}, "citethispage" : "Sitirle", "citethispage-desc" : "[[Special:Cite|Sitirle]] \u00fd\u00f6rite sahypasyny we gural sandygy \u00e7ykgydyny go\u015f\u00fdar", "citethispage-link" : "Sahypany sitirle", "tooltip-citethispage" : "Bu sahypany n\u00e4hili sitirlemelidigi hakda maglumat", "citethispage-change-submit" : "Sitirle", "citethispage-change-target" : "Sahypa:"} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "citethispage": {"type": "string"}, "citethispage-desc": {"type": "string"}, "citethispage-link": {"type": "string"}, "tooltip-citethispage": {"type": "string"}, "citethispage-change-submit": {"type": "string"}, "citethispage-change-target": {"type": "string"}}, "required": ["@metadata", "citethispage", "citethispage-desc", "citethispage-link", "tooltip-citethispage", "citethispage-change-submit", "citethispage-change-target"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"qs": {"type": "string"}, "formidable": {"type": "string"}, "mime": {"type": "string"}}, "required": ["qs", "formidable", "mime"]}, "devDependencies": {"type": "object", "properties": {"express": {"type": "string"}, "should": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["express", "should", "mocha"]}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "keywords", "author", "dependencies", "devDependencies", "main", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tiagent", "version" : "0.4.1", "description" : "elegant progressive ajax client", "keywords" : ["http", "ajax", "request", "agent"], "author" : "TJ Holowaychuk <tj@vision-media.ca>", "dependencies" : {"qs" : "0.4.2", "formidable" : "1.0.9", "mime" : "1.2.5"}, "devDependencies" : {"express" : "2.5.x", "should" : "*", "mocha" : "*"}, "main" : "index", "engines" : {"node" : ">= 0.4.0 < 0.7.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"qs": {"type": "string"}, "formidable": {"type": "string"}, "mime": {"type": "string"}}, "required": ["qs", "formidable", "mime"]}, "devDependencies": {"type": "object", "properties": {"express": {"type": "string"}, "should": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["express", "should", "mocha"]}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "keywords", "author", "dependencies", "devDependencies", "main", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 32619, "cartId" : "73114dfb-76d7-43df-be66-c424a91e6ddb", "preferredProducts" : [3320, 1132, 4795, 3702, 3971], "productReviews" : [{"productId" : 2858, "reviewText" : "heard about this on timba radio, decided to give it a try.", "reviewDate" : "2016-07-28T03:50:18.0861545+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"label": {"type": "string"}, "priority": {"type": "integer"}, "limit": {"type": "integer"}, "action": {"type": "string"}}, "required": ["label", "priority", "limit", "action"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"label" : "greeting", "priority" : 2, "limit" : 30, "action" : "greet"} | json_instruct | {"type": "object", "properties": {"label": {"type": "string"}, "priority": {"type": "integer"}, "limit": {"type": "integer"}, "action": {"type": "string"}}, "required": ["label", "priority", "limit", "action"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"0-19": {"type": "string"}, "20-29": {"type": "string"}, "30-39": {"type": "string"}, "40-49": {"type": "string"}, "50-59": {"type": "string"}, "60-69": {"type": "string"}, "70-79": {"type": "string"}, "80+": {"type": "string"}, "Unknown": {"type": "string"}}, "required": ["0-19", "20-29", "30-39", "40-49", "50-59", "60-69", "70-79", "80+", "Unknown"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"0-19" : "0", "20-29" : "0", "30-39" : "54.63", "40-49" : "163.89", "50-59" : "437.04", "60-69" : "983.34", "70-79" : "1475.01", "80+" : "2294.46", "Unknown" : "0"} | json_instruct | {"type": "object", "properties": {"0-19": {"type": "string"}, "20-29": {"type": "string"}, "30-39": {"type": "string"}, "40-49": {"type": "string"}, "50-59": {"type": "string"}, "60-69": {"type": "string"}, "70-79": {"type": "string"}, "80+": {"type": "string"}, "Unknown": {"type": "string"}}, "required": ["0-19", "20-29", "30-39", "40-49", "50-59", "60-69", "70-79", "80+", "Unknown"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"gameName": {"type": "string"}, "gamePreviewGIF": {"type": "string"}, "savingEnabled": {"type": "string"}, "buttonArrangement": {"type": "array", "items": {"type": "string"}}}, "required": ["gameName", "gamePreviewGIF", "savingEnabled", "buttonArrangement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"gameName" : "UnitTest", "gamePreviewGIF" : "varun.gif", "savingEnabled" : "true", "buttonArrangement" : ["1 Player", "2 Player"]} | json_instruct | {"type": "object", "properties": {"gameName": {"type": "string"}, "gamePreviewGIF": {"type": "string"}, "savingEnabled": {"type": "string"}, "buttonArrangement": {"type": "array", "items": {"type": "string"}}}, "required": ["gameName", "gamePreviewGIF", "savingEnabled", "buttonArrangement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"attackers": {"type": "array", "items": {"type": "object", "properties": {"alliance_id": {"type": "integer"}, "character_id": {"type": "integer"}, "corporation_id": {"type": "integer"}, "damage_done": {"type": "integer"}, "final_blow": {"type": "boolean"}, "security_status": {"type": "integer"}, "ship_type_id": {"type": "integer"}, "weapon_type_id": {"type": "integer"}}, "required": ["alliance_id", "character_id", "corporation_id", "damage_done", "final_blow", "security_status", "ship_type_id", "weapon_type_id"]}}, "killmail_id": {"type": "integer"}, "killmail_time": {"type": "string"}, "solar_system_id": {"type": "integer"}, "victim": {"type": "object", "properties": {"alliance_id": {"type": "integer"}, "character_id": {"type": "integer"}, "corporation_id": {"type": "integer"}, "damage_taken": {"type": "integer"}, "position": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}}, "required": ["x", "y", "z"]}, "ship_type_id": {"type": "integer"}}, "required": ["alliance_id", "character_id", "corporation_id", "damage_taken", "position", "ship_type_id"]}}, "required": ["attackers", "killmail_id", "killmail_time", "solar_system_id", "victim"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"attackers" : [{"alliance_id" : 99007916, "character_id" : 92746046, "corporation_id" : 98257549, "damage_done" : 439, "final_blow" : true, "security_status" : 5, "ship_type_id" : 12034, "weapon_type_id" : 27359}], "killmail_id" : 71244493, "killmail_time" : "2018-07-14T10:53:05-07:00", "solar_system_id" : 30003680, "victim" : {"alliance_id" : 99007362, "character_id" : 2113322775, "corporation_id" : 98509938, "damage_taken" : 439, "position" : {"x" : -5785265731135.833, "y" : -167315802049.47644, "z" : -2677330609561.013}, "ship_type_id" : 670}} | json_instruct | {"type": "object", "properties": {"attackers": {"type": "array", "items": {"type": "object", "properties": {"alliance_id": {"type": "integer"}, "character_id": {"type": "integer"}, "corporation_id": {"type": "integer"}, "damage_done": {"type": "integer"}, "final_blow": {"type": "boolean"}, "security_status": {"type": "integer"}, "ship_type_id": {"type": "integer"}, "weapon_type_id": {"type": "integer"}}, "required": ["alliance_id", "character_id", "corporation_id", "damage_done", "final_blow", "security_status", "ship_type_id", "weapon_type_id"]}}, "killmail_id": {"type": "integer"}, "killmail_time": {"type": "string"}, "solar_system_id": {"type": "integer"}, "victim": {"type": "object", "properties": {"alliance_id": {"type": "integer"}, "character_id": {"type": "integer"}, "corporation_id": {"type": "integer"}, "damage_taken": {"type": "integer"}, "position": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}}, "required": ["x", "y", "z"]}, "ship_type_id": {"type": "integer"}}, "required": ["alliance_id", "character_id", "corporation_id", "damage_taken", "position", "ship_type_id"]}}, "required": ["attackers", "killmail_id", "killmail_time", "solar_system_id", "victim"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "OPAQUE: Protecting Path Privacy in Directions Search.", "fields" : ["obfuscation", "server", "collusion", "path expression", "shortest path problem"], "abstract" : "Directions search returns the shortest path from a source to a destination on a road network. However, the search interests of users may be exposed to the service providers, thus raising privacy concerns. For instance, a path query that finds a path from a resident address to a clinic may lead to a deduction about \"who is related to what disease\". To protect user privacy from accessing directions search services, we introduce the OPAQUE system, which consists of two major components: (1) an obfuscator that formulates obfuscated path queries by mixing true and fake sources/destinations; and (2) an obfuscated path query processor installed in the server for obfuscated path query processing. OPAQUE reduces the likelihood of path queries being revealed and allows retrieval of requested paths. We propose two types of obfuscated path queries, namely, independently obfuscated path query and shared obfuscated path query to strike a balance between privacy protection strength and query processing overhead, and to enhance privacy protection against collusion attacks.", "citation" : "Citations (4)", "departments" : ["Pennsylvania State University", "Pennsylvania State University", "Dept. of Comput ... niv., Hong Kong", "Sch. of Inf. Sy ... niv., Singapore"], "authors" : ["Ken C. K. Lee.....http://dblp.org/pers/hd/l/Lee:Ken_C=_K=", "Wang-Chien Lee.....http://dblp.org/pers/hd/l/Lee:Wang=Chien", "Hong Va Leong.....http://dblp.org/pers/hd/l/Leong:Hong_Va", "Baihua Zheng.....http://dblp.org/pers/hd/z/Zheng:Baihua"], "conf" : "icde", "year" : "2009", "pages" : 4} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3507160006", "district_id" : "3507160", "name" : "PANGGUNGREJO"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"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", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "title" : "Le Castella", "id" : "452289", "bbox" : [17.022757, 38.909729, 17.022757, 38.909729], "description" : "An ancient place, cited: BAtlas 46 F4 Le Castella", "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [17.022757, 38.909729]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [17.022757, 38.909729]}, "id" : "darmc-location-7060", "type" : "Feature", "properties" : {"description" : "500K scale point location", "location_precision" : "precise", "title" : "DARMC location 7060", "link" : "http://pleiades.stoa.org/places/452289/darmc-location-7060"}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"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", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 10962, "cartId" : "17daf708-2dbd-4fae-9747-1df48f0d036c", "preferredProducts" : [2989, 3133, 1365, 765, 330, 2514, 4936, 4494, 4960], "productReviews" : [{"productId" : 4926, "reviewText" : "I saw one of these in Canada and I bought one.", "reviewDate" : "2017-02-23T07:21:57.6472562+02:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "type": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"magic-string": {"type": "string"}, "svelte": {"type": "string"}, "tape": {"type": "string"}}, "required": ["magic-string", "svelte", "tape"]}}, "required": ["name", "version", "description", "main", "type", "directories", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "svelte-preprocess-class-directive", "version" : "0.0.1", "description" : "A svelte preprocessor that adds syntactic sugar for multiple css classes in the class directive", "main" : "src/index.js", "type" : "commonjs", "directories" : {"test" : "test"}, "scripts" : {"test" : "node test/index.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/paulovieira/svelte-preprocess-class-directive.git"}, "keywords" : ["svelte", "svelte-preprocessor"], "author" : "Paulo Vieira", "license" : "MIT", "bugs" : {"url" : "https://github.com/paulovieira/svelte-preprocess-class-directive/issues"}, "homepage" : "https://github.com/paulovieira/svelte-preprocess-class-directive#readme", "dependencies" : {}, "devDependencies" : {"magic-string" : "0.x.x", "svelte" : "3.x.x", "tape" : "^5.3.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "type": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"magic-string": {"type": "string"}, "svelte": {"type": "string"}, "tape": {"type": "string"}}, "required": ["magic-string", "svelte", "tape"]}}, "required": ["name", "version", "description", "main", "type", "directories", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"kind": {"type": "string"}, "apiVersion": {"type": "string"}, "spec": {"type": "object", "properties": {"signature": {"type": "object", "properties": {"format": {"type": "string"}, "content": {"type": "string"}, "publicKey": {"type": "object", "properties": {"content": {"type": "string"}}, "required": ["content"]}}, "required": ["format", "content", "publicKey"]}, "data": {"type": "object", "properties": {"content": {"type": "string"}, "hash": {"type": "object", "properties": {"algorithm": {"type": "string"}, "value": {"type": "string"}}, "required": ["algorithm", "value"]}}, "required": ["content", "hash"]}, "extraData": {"type": "string"}}, "required": ["signature", "data", "extraData"]}}, "required": ["kind", "apiVersion", "spec"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"kind" : "rekord", "apiVersion" : "0.0.1", "spec" : {"signature" : {"format" : "pgp", "content" : "%SIG%", "publicKey" : {"content" : "%PUB%"}}, "data" : {"content" : "%ART%", "hash" : {"algorithm" : "sha256", "value" : "%HASH%"}}, "extraData" : "%ART%"}} | json_instruct | {"type": "object", "properties": {"kind": {"type": "string"}, "apiVersion": {"type": "string"}, "spec": {"type": "object", "properties": {"signature": {"type": "object", "properties": {"format": {"type": "string"}, "content": {"type": "string"}, "publicKey": {"type": "object", "properties": {"content": {"type": "string"}}, "required": ["content"]}}, "required": ["format", "content", "publicKey"]}, "data": {"type": "object", "properties": {"content": {"type": "string"}, "hash": {"type": "object", "properties": {"algorithm": {"type": "string"}, "value": {"type": "string"}}, "required": ["algorithm", "value"]}}, "required": ["content", "hash"]}, "extraData": {"type": "string"}}, "required": ["signature", "data", "extraData"]}}, "required": ["kind", "apiVersion", "spec"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["ndarray-bit"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1982, 5], [1983, 5], [1984, 5], [1985, 11], [1987, 8], [1988, 6], [1989, 13], [1990, 20], [1991, 17], [1992, 23], [1993, 28], [1994, 26], [1995, 22], [1996, 22], [1997, 34], [1998, 36], [1999, 30], [2000, 33], [2001, 36], [2002, 35], [2003, 38], [2004, 50], [2005, 59], [2006, 54], [2007, 75], [2008, 75], [2009, 48], [2010, 38], [2011, 30], [2012, 32], [2013, 18], [2014, 24]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"plugin_name": {"type": "string"}, "hadoop_version": {"type": "string"}, "node_processes": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "floating_ip_pool": {"type": "string"}, "flavor_id": {"type": "string"}, "auto_security_group": {"type": "string"}, "security_groups": {"type": "string"}, "is_protected": {"type": "boolean"}}, "required": ["plugin_name", "hadoop_version", "node_processes", "name", "floating_ip_pool", "flavor_id", "auto_security_group", "security_groups", "is_protected"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"plugin_name" : "mapr", "hadoop_version" : "5.1.0.mrv2", "node_processes" : ["FileServer", "NodeManager"], "name" : "mapr-510mr2-default-worker", "floating_ip_pool" : "{floating_ip_pool}", "flavor_id" : "{flavor_id}", "auto_security_group" : "{auto_security_group}", "security_groups" : "{security_groups}", "is_protected" : true} | json_instruct | {"type": "object", "properties": {"plugin_name": {"type": "string"}, "hadoop_version": {"type": "string"}, "node_processes": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "floating_ip_pool": {"type": "string"}, "flavor_id": {"type": "string"}, "auto_security_group": {"type": "string"}, "security_groups": {"type": "string"}, "is_protected": {"type": "boolean"}}, "required": ["plugin_name", "hadoop_version", "node_processes", "name", "floating_ip_pool", "flavor_id", "auto_security_group", "security_groups", "is_protected"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Version": {"type": "string"}, "Statement": {"type": "array", "items": {"type": "object", "properties": {"Sid": {"type": "string"}, "Action": {"type": "array", "items": {"type": "string"}}, "Effect": {"type": "string"}, "Resource": {"type": "array", "items": {"type": "string"}}}, "required": ["Sid", "Action", "Effect", "Resource"]}}}, "required": ["Version", "Statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Version" : "2012-10-17", "Statement" : [{"Sid" : "Stmt1631614199182", "Action" : ["logs:CreateLogGroup", "logs:CreateLogStream", "logs:PutLogEvents", "dynamodb:BatchWriteItem", "dynamodb:GetItem", "dynamodb:PutItem", "dynamodb:UpdateItem", "sqs:GetQueueUrl", "sqs:ListQueues", "sqs:SendMessage", "lambda:InvokeFunction"], "Effect" : "Allow", "Resource" : ["arn:aws:logs:*:*:log-group:/aws/lambda/predict:*", "arn:aws:dynamodb:*:*:table/users", "arn:aws:lambda:*:*:function:predictor", "arn:aws:sqs:*:*:notifications"]}]} | json_instruct | {"type": "object", "properties": {"Version": {"type": "string"}, "Statement": {"type": "array", "items": {"type": "object", "properties": {"Sid": {"type": "string"}, "Action": {"type": "array", "items": {"type": "string"}}, "Effect": {"type": "string"}, "Resource": {"type": "array", "items": {"type": "string"}}}, "required": ["Sid", "Action", "Effect", "Resource"]}}}, "required": ["Version", "Statement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"framework": {"type": "object", "properties": {}, "required": []}}, "required": ["framework"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"framework" : {}} | json_instruct | {"type": "object", "properties": {"framework": {"type": "object", "properties": {}, "required": []}}, "required": ["framework"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "minimum-stability": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/console": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}, "vlucas/phpdotenv": {"type": "string"}, "icanboogie/inflector": {"type": "string"}, "guillermoandrae/php-repository": {"type": "string"}}, "required": ["php", "symfony/console", "guzzlehttp/guzzle", "vlucas/phpdotenv", "icanboogie/inflector", "guillermoandrae/php-repository"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"App\\": {"type": "string"}}, "required": ["App\\"]}}, "required": ["psr-4"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}}, "required": ["phpunit/phpunit", "squizlabs/php_codesniffer"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Test\\": {"type": "string"}}, "required": ["Test\\"]}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {"check-style": {"type": "array", "items": {"type": "string"}}, "check-coverage": {"type": "array", "items": {"type": "string"}}, "test": {"type": "array", "items": {"type": "string"}}, "post-install-cmd": {"type": "array", "items": {"type": "string"}}}, "required": ["check-style", "check-coverage", "test", "post-install-cmd"]}}, "required": ["name", "description", "license", "minimum-stability", "authors", "require", "autoload", "require-dev", "autoload-dev", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "guillermoandrae/php-cli-skeleton", "description" : "Skeleton for PHP CLI projects.", "license" : "MIT", "minimum-stability" : "dev", "authors" : [{"name" : "Guillermo A. Fisher", "email" : "me@guillermoandraefisher.com"}], "require" : {"php" : "^7.1", "symfony/console" : "^4.0", "guzzlehttp/guzzle" : "^6.3", "vlucas/phpdotenv" : "^2.4", "icanboogie/inflector" : "^1.4", "guillermoandrae/php-repository" : "dev-master"}, "autoload" : {"psr-4" : {"App\\" : "src/"}}, "require-dev" : {"phpunit/phpunit" : "^7.1", "squizlabs/php_codesniffer" : "^3.2"}, "autoload-dev" : {"psr-4" : {"Test\\" : "tests/"}}, "scripts" : {"check-style" : ["phpcbf --standard=PSR2 --extensions=php src tests", "phpcs --standard=PSR2 --extensions=php src tests"], "check-coverage" : ["phpunit --coverage-text --coverage-clover=./clover.xml"], "test" : ["@check-style", "@check-coverage"], "post-install-cmd" : ["php -r \"file_exists('.env') || copy('.env.example', '.env');\""]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "minimum-stability": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "symfony/console": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}, "vlucas/phpdotenv": {"type": "string"}, "icanboogie/inflector": {"type": "string"}, "guillermoandrae/php-repository": {"type": "string"}}, "required": ["php", "symfony/console", "guzzlehttp/guzzle", "vlucas/phpdotenv", "icanboogie/inflector", "guillermoandrae/php-repository"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"App\\": {"type": "string"}}, "required": ["App\\"]}}, "required": ["psr-4"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}}, "required": ["phpunit/phpunit", "squizlabs/php_codesniffer"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Test\\": {"type": "string"}}, "required": ["Test\\"]}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {"check-style": {"type": "array", "items": {"type": "string"}}, "check-coverage": {"type": "array", "items": {"type": "string"}}, "test": {"type": "array", "items": {"type": "string"}}, "post-install-cmd": {"type": "array", "items": {"type": "string"}}}, "required": ["check-style", "check-coverage", "test", "post-install-cmd"]}}, "required": ["name", "description", "license", "minimum-stability", "authors", "require", "autoload", "require-dev", "autoload-dev", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-bootstrap": {"type": "string"}, "angular-cookies": {"type": "string"}, "angular-loader": {"type": "string"}, "angular-route": {"type": "string"}, "bootstrap": {"type": "string"}, "tether": {"type": "string"}, "jquery": {"type": "string"}, "angular-animate": {"type": "string"}, "components-font-awesome": {"type": "string"}, "bootstrap-datepicker": {"type": "string"}}, "required": ["angular", "angular-bootstrap", "angular-cookies", "angular-loader", "angular-route", "bootstrap", "tether", "jquery", "angular-animate", "components-font-awesome", "bootstrap-datepicker"]}}, "required": ["name", "description", "main", "authors", "license", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "sourceapp", "description" : "Sourceapp project with AngularJS", "main" : "", "authors" : ["Teemu <teemu.kaunisto@cs.tamk.fi>"], "license" : "MIT", "homepage" : "", "dependencies" : {"angular" : "^1.6.6", "angular-bootstrap" : "^2.5.0", "angular-cookies" : "^1.6.6", "angular-loader" : "~1.5.0", "angular-route" : "~1.5.0", "bootstrap" : "v4.0.0-alpha.6", "tether" : "^1.4.0", "jquery" : "^3.2.1", "angular-animate" : "^1.6.6", "components-font-awesome" : "^4.7.0", "bootstrap-datepicker" : "^1.7.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-bootstrap": {"type": "string"}, "angular-cookies": {"type": "string"}, "angular-loader": {"type": "string"}, "angular-route": {"type": "string"}, "bootstrap": {"type": "string"}, "tether": {"type": "string"}, "jquery": {"type": "string"}, "angular-animate": {"type": "string"}, "components-font-awesome": {"type": "string"}, "bootstrap-datepicker": {"type": "string"}}, "required": ["angular", "angular-bootstrap", "angular-cookies", "angular-loader", "angular-route", "bootstrap", "tether", "jquery", "angular-animate", "components-font-awesome", "bootstrap-datepicker"]}}, "required": ["name", "description", "main", "authors", "license", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-f4fh-29cp-vmcg", "modified" : "2022-05-01T18:25:38Z", "published" : "2022-05-01T18:25:38Z", "aliases" : ["CVE-2007-4639"], "details" : "EnterpriseDB Advanced Server 8.2 does not properly handle certain debugging function calls that occur before a call to pldbg_create_listener, which allows remote authenticated users to cause a denial of service (daemon crash) and possibly execute arbitrary code via a SELECT statement that invokes a pldbg_ function, as demonstrated by (1) pldbg_get_stack and (2) pldbg_abort_target, which triggers use of an uninitialized pointer.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2007-4639"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/36328"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/26640"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/archive/1/478057/100/0/threaded"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/25481"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2007/3040"}], "database_specific" : {"cwe_ids" : ["CWE-94"], "severity" : "MODERATE", "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "mappingIndex": {"type": "integer"}, "redacted": {"type": "boolean"}, "scope": {"type": "integer"}, "aggregationType": {"type": "integer"}}, "required": ["index", "hash", "blacklisted", "mappingIndex", "redacted", "scope", "aggregationType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 6529, "hash" : 4078257848, "blacklisted" : false, "mappingIndex" : 0, "redacted" : false, "scope" : 0, "aggregationType" : 0} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "mappingIndex": {"type": "integer"}, "redacted": {"type": "boolean"}, "scope": {"type": "integer"}, "aggregationType": {"type": "integer"}}, "required": ["index", "hash", "blacklisted", "mappingIndex", "redacted", "scope", "aggregationType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"extends": {"type": "string"}, "rules": {"type": "object", "properties": {"max-nesting-depth": {"type": "integer"}, "selector-class-pattern": {"type": "string"}}, "required": ["max-nesting-depth", "selector-class-pattern"]}}, "required": ["extends", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : "stylelint-config-sass-guidelines", "rules" : {"max-nesting-depth" : 2, "selector-class-pattern" : "^(?:(?:o|c|u|t|s|is|has|_|js|qa)-)?[a-zA-Z0-9]+(?:-[a-zA-Z0-9]+)*(?:__[a-zA-Z0-9]+(?:-[a-zA-Z0-9]+)*)?(?:--[a-zA-Z0-9]+(?:-[a-zA-Z0-9]+)*)?(?:\\[.+\\])?$"}} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "rules": {"type": "object", "properties": {"max-nesting-depth": {"type": "integer"}, "selector-class-pattern": {"type": "string"}}, "required": ["max-nesting-depth", "selector-class-pattern"]}}, "required": ["extends", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"$schema": {"type": "string"}, "version": {"type": "string"}, "bundles": {"type": "object", "properties": {"match-maker-web-part": {"type": "object", "properties": {"components": {"type": "array", "items": {"type": "object", "properties": {"entrypoint": {"type": "string"}, "manifest": {"type": "string"}}, "required": ["entrypoint", "manifest"]}}}, "required": ["components"]}}, "required": ["match-maker-web-part"]}, "externals": {"type": "object", "properties": {}, "required": []}, "localizedResources": {"type": "object", "properties": {"MatchMakerWebPartStrings": {"type": "string"}}, "required": ["MatchMakerWebPartStrings"]}}, "required": ["$schema", "version", "bundles", "externals", "localizedResources"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "https://developer.microsoft.com/json-schemas/spfx-build/config.2.0.schema.json", "version" : "2.0", "bundles" : {"match-maker-web-part" : {"components" : [{"entrypoint" : "./lib/webparts/matchMaker/MatchMakerWebPart.js", "manifest" : "./src/webparts/matchMaker/MatchMakerWebPart.manifest.json"}]}}, "externals" : {}, "localizedResources" : {"MatchMakerWebPartStrings" : "lib/webparts/matchMaker/loc/{locale}.js"}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "version": {"type": "string"}, "bundles": {"type": "object", "properties": {"match-maker-web-part": {"type": "object", "properties": {"components": {"type": "array", "items": {"type": "object", "properties": {"entrypoint": {"type": "string"}, "manifest": {"type": "string"}}, "required": ["entrypoint", "manifest"]}}}, "required": ["components"]}}, "required": ["match-maker-web-part"]}, "externals": {"type": "object", "properties": {}, "required": []}, "localizedResources": {"type": "object", "properties": {"MatchMakerWebPartStrings": {"type": "string"}}, "required": ["MatchMakerWebPartStrings"]}}, "required": ["$schema", "version", "bundles", "externals", "localizedResources"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["type", "ingredients", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "minecraft:crafting_shapeless", "ingredients" : [{"item" : "horse_tack:blanket_white_trimmed_blue"}, {"item" : "horse_tack:halter_blue"}], "result" : {"item" : "horse_tack:blanket_whiteblue_halter"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["type", "ingredients", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"manufacturer" : "Techpad", "market_name" : "Techpad_Kids_7", "codename" : "Techpad_Kids_7", "model" : "Techpad_Kids_7"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"jsonrpc": {"type": "string"}, "method": {"type": "string"}, "params": {"type": "object", "properties": {"auth": {"type": "string"}, "identity": {"type": "object", "properties": {"ethereum_address": {"type": "string"}, "uuid": {"type": "string"}, "player_name": {"type": "string"}}, "required": ["ethereum_address", "uuid", "player_name"]}, "linked": {"type": "boolean"}, "after_identity_id": {"type": "string"}, "limit": {"type": "string"}}, "required": ["auth", "identity", "linked", "after_identity_id", "limit"]}, "id": {"type": "string"}}, "required": ["jsonrpc", "method", "params", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jsonrpc" : "2.0", "method" : "get", "params" : {"auth" : "xxxxxxxx", "identity" : {"ethereum_address" : "0x0000000000000000000000000000000000000000", "uuid" : "069a79f4-44e9-4726-a5be-fca90e38aaf5", "player_name" : "notch"}, "linked" : true, "after_identity_id" : "1234567", "limit" : "50"}, "id" : "1"} | json_instruct | {"type": "object", "properties": {"jsonrpc": {"type": "string"}, "method": {"type": "string"}, "params": {"type": "object", "properties": {"auth": {"type": "string"}, "identity": {"type": "object", "properties": {"ethereum_address": {"type": "string"}, "uuid": {"type": "string"}, "player_name": {"type": "string"}}, "required": ["ethereum_address", "uuid", "player_name"]}, "linked": {"type": "boolean"}, "after_identity_id": {"type": "string"}, "limit": {"type": "string"}}, "required": ["auth", "identity", "linked", "after_identity_id", "limit"]}, "id": {"type": "string"}}, "required": ["jsonrpc", "method", "params", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "jsonrpc": {"type": "string"}, "result": {"type": "string"}}, "required": ["id", "jsonrpc", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 71, "jsonrpc" : "2.0", "result" : "0x123"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "jsonrpc": {"type": "string"}, "result": {"type": "string"}}, "required": ["id", "jsonrpc", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Vendor": {"type": "boolean"}, "Enable": {"type": "array", "items": {"type": "string"}}, "Skip": {"type": "array", "items": {"type": "string"}}, "Deadline": {"type": "string"}}, "required": ["Vendor", "Enable", "Skip", "Deadline"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Vendor" : true, "Enable" : ["vet", "vetshadow", "ineffassign", "deadcode", "errcheck", "goconst", "megacheck"], "Skip" : ["pkg/client", "pkg/apis/shipper/v1alpha1"], "Deadline" : "300s"} | json_instruct | {"type": "object", "properties": {"Vendor": {"type": "boolean"}, "Enable": {"type": "array", "items": {"type": "string"}}, "Skip": {"type": "array", "items": {"type": "string"}}, "Deadline": {"type": "string"}}, "required": ["Vendor", "Enable", "Skip", "Deadline"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"url": {"type": "string"}, "rev": {"type": "string"}, "date": {"type": "string"}, "path": {"type": "string"}, "sha256": {"type": "string"}, "fetchSubmodules": {"type": "boolean"}, "deepClone": {"type": "boolean"}, "leaveDotGit": {"type": "boolean"}}, "required": ["url", "rev", "date", "path", "sha256", "fetchSubmodules", "deepClone", "leaveDotGit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"url" : "https://github.com/nixos/nixpkgs.git", "rev" : "2bb5ff0da2fc8a37ffb81ffe99b8552bbe5abf83", "date" : "2021-02-17T20:18:30-08:00", "path" : "/nix/store/0cxsz0m41i37zr5mzcn0kp653ca3x4g8-nixpkgs-2bb5ff0", "sha256" : "1dslxrwh6y3dcjqxbnrfdcfyddjzvldzy6i6kz0lhgyf4i20jybk", "fetchSubmodules" : false, "deepClone" : false, "leaveDotGit" : false} | json_instruct | {"type": "object", "properties": {"url": {"type": "string"}, "rev": {"type": "string"}, "date": {"type": "string"}, "path": {"type": "string"}, "sha256": {"type": "string"}, "fetchSubmodules": {"type": "boolean"}, "deepClone": {"type": "boolean"}, "leaveDotGit": {"type": "boolean"}}, "required": ["url", "rev", "date", "path", "sha256", "fetchSubmodules", "deepClone", "leaveDotGit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1986, 7], [1989, 6], [1991, 11], [1992, 12], [1993, 11], [1994, 9], [1995, 14], [1996, 11], [1997, 7], [1998, 6], [1999, 7], [2000, 11], [2002, 14], [2003, 7], [2004, 8], [2006, 5], [2009, 7], [2011, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 5994, "citation_title" : "Business Cycles: Theory, Evidence and Implications", "citation_author" : ["Russell W. Cooper"], "citation_publication_date" : "1997-04-01", "issue_date" : "1997-04-01", "revision_date" : "None", "topics" : ["Macroeconomics", "Business Cycles"], "program" : ["Economic Fluctuations and Growth"], "projects" : null, "working_groups" : null, "abstract" : "\n\nThis paper looks at recent advances in the study of aggregate fluctuations. Our emphasis is on three prominent areas of research: the stochastic growth model, economies which exhibit macroeconomic complementarities and models that emphasize heterogeneity. Each section of the paper outlines the theory, discusses relevant empirical evidence and then discusses some implications of the analysis.\n\n", "acknowledgement" : "\n"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["naq-flow"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[122.25, 42.25], [122.25, 42.333333333333336], [122.375, 42.333333333333336], [122.375, 42.25], [122.25, 42.25]]]}, "properties" : {"code" : 632232, "url" : "http://madefor.github.io/0410/api/v1/632232.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/632232.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"originContentModify": {"type": "string"}, "punishTitle": {"type": "string"}, "id": {"type": "integer"}, "punishType": {"type": "integer"}, "commentSum": {"type": "integer"}, "originType": {"type": "integer"}, "moralNum": {"type": "integer"}, "blockedDays": {"type": "integer"}, "reasonTypeName": {"type": "string"}, "blockedType": {"type": "integer"}, "uname": {"type": "string"}, "punishTime": {"type": "integer"}, "face": {"type": "string"}, "reasonType": {"type": "integer"}, "uid": {"type": "integer"}, "blockedForever": {"type": "boolean"}}, "required": ["originContentModify", "punishTitle", "id", "punishType", "commentSum", "originType", "moralNum", "blockedDays", "reasonTypeName", "blockedType", "uname", "punishTime", "face", "reasonType", "uid", "blockedForever"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"originContentModify" : "<p>\u9519\u8bef\u7684\u628a\u4e00\u4e2a\u5c0f\u841d\u8389\u52fe\u4e0a\u53bb\u4f1a\u600e\u6837\uff1f</p><p><br></p><p>\u6279\u6ce8\uff1a\u4f1a\u88ab\u5c01</p><p>\uff08\u5728\u5f39\u5e55\u4e2d\u770b\u89c1\u8fc7\u5ea6ky\u5185\u5bb9\u7684\uff0c\u53ef\u4ee5\u6309\u7167\u5f15\u6218\u6761\u76ee\u8fdb\u884c\u4e3e\u62a5\uff09</p>", "punishTitle" : "\u5728\u5f39\u5e55\u4e2d\u53d1\u5e03\u5f15\u6218\u8a00\u8bba", "id" : 40890, "punishType" : 2, "commentSum" : 87, "originType" : 2, "moralNum" : 0, "blockedDays" : 7, "reasonTypeName" : "\u53d1\u5e03\u5f15\u6218\u8a00\u8bba", "blockedType" : 0, "uname" : "\u4e00\u5b9a\u53bb\u65e5\u672c", "punishTime" : 1500003859000, "face" : "http://i0.hdslb.com/bfs/face/2ab953848b98b1195b2008e1af6bf072b420cbd7.jpg", "reasonType" : 9, "uid" : 18695959, "blockedForever" : false} | json_instruct | {"type": "object", "properties": {"originContentModify": {"type": "string"}, "punishTitle": {"type": "string"}, "id": {"type": "integer"}, "punishType": {"type": "integer"}, "commentSum": {"type": "integer"}, "originType": {"type": "integer"}, "moralNum": {"type": "integer"}, "blockedDays": {"type": "integer"}, "reasonTypeName": {"type": "string"}, "blockedType": {"type": "integer"}, "uname": {"type": "string"}, "punishTime": {"type": "integer"}, "face": {"type": "string"}, "reasonType": {"type": "integer"}, "uid": {"type": "integer"}, "blockedForever": {"type": "boolean"}}, "required": ["originContentModify", "punishTitle", "id", "punishType", "commentSum", "originType", "moralNum", "blockedDays", "reasonTypeName", "blockedType", "uname", "punishTime", "face", "reasonType", "uid", "blockedForever"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "shortDescription": {"type": "string"}, "icon": {"type": "string"}, "stats": {"type": "object", "properties": {"weapon_damage_6_value": {"type": "string"}, "max_damage_6": {"type": "string"}, "min_damage_6": {"type": "string"}, "max_damage_5": {"type": "string"}, "min_damage_5": {"type": "string"}, "max_damage_4": {"type": "string"}, "min_damage_4": {"type": "string"}, "max_damage_3": {"type": "string"}, "min_damage_3": {"type": "string"}, "max_damage_2": {"type": "string"}, "min_damage_2": {"type": "string"}, "weapon_damage_value": {"type": "string"}, "max_damage_1": {"type": "string"}, "min_damage_1": {"type": "string"}, "cost_type": {"type": "string"}, "cost": {"type": "string"}, "range": {"type": "string"}, "max_targets": {"type": "string"}, "target": {"type": "string"}, "cast_time": {"type": "string"}}, "required": ["weapon_damage_6_value", "max_damage_6", "min_damage_6", "max_damage_5", "min_damage_5", "max_damage_4", "min_damage_4", "max_damage_3", "min_damage_3", "max_damage_2", "min_damage_2", "weapon_damage_value", "max_damage_1", "min_damage_1", "cost_type", "cost", "range", "max_targets", "target", "cast_time"]}, "nextChain": {"type": "array", "items": {}}, "lastChain": {"type": "array", "items": {}}, "inSpellbook": {"type": "boolean"}, "isGroupPower": {"type": "boolean"}, "isBeneficial": {"type": "boolean"}, "isHeal": {"type": "boolean"}, "isBuff": {"type": "boolean"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "name", "description", "shortDescription", "icon", "stats", "nextChain", "lastChain", "inSpellbook", "isGroupPower", "isBeneficial", "isHeal", "isBuff", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "duelist-impale", "name" : "Impale", "description" : "stabs to the vitals inflicting instant damage and causing your target to bleed for 63 + 63% Weapon Damage until the target is either fully healed or they drop below a certain health threshold. Effects scale with Pips spent. \\n\\n1 Pip: 68 and Bleed until under 90% Health. \\n2 Pips: 136 and Bleed until under 80% Health.\\n3 Pips: 204 and Bleed until under 70% Health.\\n4 Pips: 272 and Bleed until under 60% Health.\\n5 Pips: 340 and Bleed until under 50% Health.", "shortDescription" : "", "icon" : "duelist-impale.png", "stats" : {"weapon_damage_6_value" : "63", "max_damage_6" : "63", "min_damage_6" : "63", "max_damage_5" : "340", "min_damage_5" : "340", "max_damage_4" : "272", "min_damage_4" : "272", "max_damage_3" : "204", "min_damage_3" : "204", "max_damage_2" : "136", "min_damage_2" : "136", "weapon_damage_value" : "68", "max_damage_1" : "68", "min_damage_1" : "68", "cost_type" : "Pips", "cost" : "1", "range" : "6", "max_targets" : "1", "target" : "Cone", "cast_time" : "Instant"}, "nextChain" : [], "lastChain" : [], "inSpellbook" : true, "isGroupPower" : false, "isBeneficial" : false, "isHeal" : false, "isBuff" : false, "tags" : ["duelist"]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "shortDescription": {"type": "string"}, "icon": {"type": "string"}, "stats": {"type": "object", "properties": {"weapon_damage_6_value": {"type": "string"}, "max_damage_6": {"type": "string"}, "min_damage_6": {"type": "string"}, "max_damage_5": {"type": "string"}, "min_damage_5": {"type": "string"}, "max_damage_4": {"type": "string"}, "min_damage_4": {"type": "string"}, "max_damage_3": {"type": "string"}, "min_damage_3": {"type": "string"}, "max_damage_2": {"type": "string"}, "min_damage_2": {"type": "string"}, "weapon_damage_value": {"type": "string"}, "max_damage_1": {"type": "string"}, "min_damage_1": {"type": "string"}, "cost_type": {"type": "string"}, "cost": {"type": "string"}, "range": {"type": "string"}, "max_targets": {"type": "string"}, "target": {"type": "string"}, "cast_time": {"type": "string"}}, "required": ["weapon_damage_6_value", "max_damage_6", "min_damage_6", "max_damage_5", "min_damage_5", "max_damage_4", "min_damage_4", "max_damage_3", "min_damage_3", "max_damage_2", "min_damage_2", "weapon_damage_value", "max_damage_1", "min_damage_1", "cost_type", "cost", "range", "max_targets", "target", "cast_time"]}, "nextChain": {"type": "array", "items": {}}, "lastChain": {"type": "array", "items": {}}, "inSpellbook": {"type": "boolean"}, "isGroupPower": {"type": "boolean"}, "isBeneficial": {"type": "boolean"}, "isHeal": {"type": "boolean"}, "isBuff": {"type": "boolean"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "name", "description", "shortDescription", "icon", "stats", "nextChain", "lastChain", "inSpellbook", "isGroupPower", "isBeneficial", "isHeal", "isBuff", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[129.75, 39.583333333333336], [129.75, 39.666666666666664], [129.875, 39.666666666666664], [129.875, 39.583333333333336], [129.75, 39.583333333333336]]]}, "properties" : {"code" : 592936, "url" : "http://madefor.github.io/0410/api/v1/592936.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/592936.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"version": {"type": "integer"}, "itemType": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "accessDate": {"type": "string"}, "linkMode": {"type": "string"}, "contentType": {"type": "string"}, "charset": {"type": "string"}, "tags": {"type": "array", "items": {}}, "collections": {"type": "array", "items": {"type": "string"}}, "relations": {"type": "object", "properties": {}, "required": []}, "dateAdded": {"type": "string"}, "dateModified": {"type": "string"}, "uri": {"type": "string"}}, "required": ["version", "itemType", "title", "url", "accessDate", "linkMode", "contentType", "charset", "tags", "collections", "relations", "dateAdded", "dateModified", "uri"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 0, "itemType" : "attachment", "title" : "TestLinkTitel", "url" : "https://wtc.tu-chemnitz.de/shibboleth/WAYF?entityID=https%3A%2F%2Fsfb1410.informatik.tu-chemnitz.de%2Fshibboleth&return=https%3A%2F%2Fsfb1410.informatik.tu-chemnitz.de%2FShibboleth.sso%2FLogin%3FSAMLDS%3D1%26target%3Dss%253Amem%253A3bd10129e29179cf76cb1ddf0dc8cdda23ef9945f4223837f31dc1d1b94ef9a4", "accessDate" : "2022-02-13T11:41:45Z", "linkMode" : "linked_url", "contentType" : "", "charset" : "", "tags" : [], "collections" : ["79TM2QHT"], "relations" : {}, "dateAdded" : "2022-02-13T11:41:45Z", "dateModified" : "2022-02-13T11:55:44Z", "uri" : "http://zotero.org/users/local/dTlw9jBu/items/5A34C6TT"} | json_instruct | {"type": "object", "properties": {"version": {"type": "integer"}, "itemType": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "accessDate": {"type": "string"}, "linkMode": {"type": "string"}, "contentType": {"type": "string"}, "charset": {"type": "string"}, "tags": {"type": "array", "items": {}}, "collections": {"type": "array", "items": {"type": "string"}}, "relations": {"type": "object", "properties": {}, "required": []}, "dateAdded": {"type": "string"}, "dateModified": {"type": "string"}, "uri": {"type": "string"}}, "required": ["version", "itemType", "title", "url", "accessDate", "linkMode", "contentType", "charset", "tags", "collections", "relations", "dateAdded", "dateModified", "uri"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "paage", "definition" : "A toll for passage over another person's grounds. [Written also peage and pedage.] Burke."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"visitId": {"type": "integer"}, "userId": {"type": "integer"}, "date": {"type": "string"}}, "required": ["visitId", "userId", "date"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"visitId" : 23, "userId" : 46, "date" : "2018-01:03T12:00:00:34.000Z"}, {"visitId" : 34, "userId" : 46, "date" : "2018-09:03T12:02:00:34.000Z"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"visitId": {"type": "integer"}, "userId": {"type": "integer"}, "date": {"type": "string"}}, "required": ["visitId", "userId", "date"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"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": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "gitHead": {"type": "string"}, "_id": {"type": "string"}, "_shasum": {"type": "string"}, "_from": {"type": "string"}, "_npmVersion": {"type": "string"}, "_nodeVersion": {"type": "string"}, "_npmUser": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "dist": {"type": "object", "properties": {"shasum": {"type": "string"}, "tarball": {"type": "string"}}, "required": ["shasum", "tarball"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "directories": {"type": "object", "properties": {}, "required": []}, "_resolved": {"type": "string"}, "readme": {"type": "string"}}, "required": ["name", "version", "description", "main", "keywords", "scripts", "repository", "author", "license", "bugs", "homepage", "gitHead", "_id", "_shasum", "_from", "_npmVersion", "_nodeVersion", "_npmUser", "dist", "maintainers", "directories", "_resolved", "readme"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "angular-password", "version" : "1.0.1", "description" : "The most performant AngularJS directive for matching two password input fields ", "main" : "angular-password.js", "keywords" : ["angular", "angularjs", "password", "match password", "confirm password", "passwords", "angular-password", "ngPassword", "gdi2290", "PatrickJS"], "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/gdi2290/angular-password.git"}, "author" : {"name" : "gdi2290", "email" : "github@gdi2290.com"}, "license" : "MIT", "bugs" : {"url" : "https://github.com/gdi2290/angular-password/issues"}, "homepage" : "https://github.com/gdi2290/angular-password", "gitHead" : "5282b2723db8f2477ca9c61a71cfe3f4a64d3ef7", "_id" : "angular-password@1.0.1", "_shasum" : "5dd19713622b1020bdd7132fe186f9cfcc987409", "_from" : "angular-password@latest", "_npmVersion" : "2.10.1", "_nodeVersion" : "0.12.4", "_npmUser" : {"name" : "gdi2290", "email" : "npm@gdi2290.com"}, "dist" : {"shasum" : "5dd19713622b1020bdd7132fe186f9cfcc987409", "tarball" : "https://registry.npmjs.org/angular-password/-/angular-password-1.0.1.tgz"}, "maintainers" : [{"name" : "gdi2290", "email" : "npm@gdi2290.com"}], "directories" : {}, "_resolved" : "https://registry.npmjs.org/angular-password/-/angular-password-1.0.1.tgz", "readme" : "ERROR: No README data found!"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"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": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "gitHead": {"type": "string"}, "_id": {"type": "string"}, "_shasum": {"type": "string"}, "_from": {"type": "string"}, "_npmVersion": {"type": "string"}, "_nodeVersion": {"type": "string"}, "_npmUser": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "dist": {"type": "object", "properties": {"shasum": {"type": "string"}, "tarball": {"type": "string"}}, "required": ["shasum", "tarball"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "directories": {"type": "object", "properties": {}, "required": []}, "_resolved": {"type": "string"}, "readme": {"type": "string"}}, "required": ["name", "version", "description", "main", "keywords", "scripts", "repository", "author", "license", "bugs", "homepage", "gitHead", "_id", "_shasum", "_from", "_npmVersion", "_nodeVersion", "_npmUser", "dist", "maintainers", "directories", "_resolved", "readme"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"version": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"dan": {"type": "string"}, "data": {"type": "object", "properties": {"images_path": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["images_path", "names"]}}, "required": ["dan", "data"]}}}, "required": ["version", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "1.0", "data" : [{"dan" : "1st", "data" : {"images_path" : "resources/images/taekwondo/make/1Dan/", "names" : ["are_maki", "momtong_an_maki", "momtong_maki", "olgul_maki", "jansonnal_momtong_bakat_maki", "sonnal_momtong_maki", "momtong_bakat_maki", "olgul_bakat_maki", "gechio_are_maki", "batagson_momtong_maki", "batagson_momtong_an_maki", "sonnal_are_maki", "gechio_momtong_maki", "goduro_batagson_momtong_an_maki", "okgoro_are_maki", "jansonnal_momtong_yop_maki", "goduro_momtong_maki", "goduro_are_maki"]}}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"dan": {"type": "string"}, "data": {"type": "object", "properties": {"images_path": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["images_path", "names"]}}, "required": ["dan", "data"]}}}, "required": ["version", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"gameTime": {"type": "number"}, "goalsData": {"type": "array", "items": {"type": "object", "properties": {"goalScorerName": {"type": "string"}, "goalShotTime": {"type": "number"}, "goalSide": {"type": "string"}, "goalSpeed": {"type": "number"}, "goalTime": {"type": "number"}, "goalTravelTime": {"type": "number"}}, "required": ["goalScorerName", "goalShotTime", "goalSide", "goalSpeed", "goalTime", "goalTravelTime"]}}, "rawPositionsAtEnd": {"type": "string"}, "score": {"type": "object", "properties": {"Blue": {"type": "integer"}, "Red": {"type": "integer"}}, "required": ["Blue", "Red"]}, "startingGameTime": {"type": "integer"}, "teams": {"type": "object", "properties": {"Blue": {"type": "array", "items": {"type": "string"}}, "Red": {"type": "array", "items": {"type": "string"}}}, "required": ["Blue", "Red"]}, "time": {"type": "string"}}, "required": ["gameTime", "goalsData", "rawPositionsAtEnd", "score", "startingGameTime", "teams", "time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"gameTime" : 600.017, "goalsData" : [{"goalScorerName" : "Amman", "goalShotTime" : 288.55, "goalSide" : "Blue", "goalSpeed" : 2.263, "goalTime" : 290.217, "goalTravelTime" : 1.667}, {"goalScorerName" : "Amman", "goalShotTime" : 385.583, "goalSide" : "Blue", "goalSpeed" : 5.68, "goalTime" : 385.833, "goalTravelTime" : 0.25}], "rawPositionsAtEnd" : "331.91123813135016-127.04803666223975|-253.56298826369817-119.40883805594322|-243.10031313832036-220.22258984048992|-186.4142858596386-200.6305327422225|", "score" : {"Blue" : 2, "Red" : 0}, "startingGameTime" : 0, "teams" : {"Blue" : ["MaddoHatto", "Amman"], "Red" : ["rybak", "Nelson Mandela"]}, "time" : "2021-02-25 15:24"} | json_instruct | {"type": "object", "properties": {"gameTime": {"type": "number"}, "goalsData": {"type": "array", "items": {"type": "object", "properties": {"goalScorerName": {"type": "string"}, "goalShotTime": {"type": "number"}, "goalSide": {"type": "string"}, "goalSpeed": {"type": "number"}, "goalTime": {"type": "number"}, "goalTravelTime": {"type": "number"}}, "required": ["goalScorerName", "goalShotTime", "goalSide", "goalSpeed", "goalTime", "goalTravelTime"]}}, "rawPositionsAtEnd": {"type": "string"}, "score": {"type": "object", "properties": {"Blue": {"type": "integer"}, "Red": {"type": "integer"}}, "required": ["Blue", "Red"]}, "startingGameTime": {"type": "integer"}, "teams": {"type": "object", "properties": {"Blue": {"type": "array", "items": {"type": "string"}}, "Red": {"type": "array", "items": {"type": "string"}}}, "required": ["Blue", "Red"]}, "time": {"type": "string"}}, "required": ["gameTime", "goalsData", "rawPositionsAtEnd", "score", "startingGameTime", "teams", "time"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "null"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"accession_number" : "1996.327", "actors" : [], "creation_date" : "late 19th century", "credit_line" : "Lucille Stewart Fund in memory of her Parents, Dr. Willis Benton Stewart and Lutie Dennette Stewart", "cultures" : [], "dimensions" : "44 1/2 x 45 3/4 in.", "dynasty" : null, "images" : [], "irn" : 24226, "materials" : null, "on_view" : false, "period" : null, "printers" : [], "publishers" : [], "rights" : null, "title" : "woman's lower body wrapper (hta-mein)"} | json_instruct | {"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "null"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "gerundio": {"type": "array", "items": {"type": "string"}}, "participio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "gerundio", "participio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"source" : "http://www.spanishdict.com/conjugate/anillar", "word" : "anillar", "infinitivo" : "anillar", "gerundio" : ["anillando"], "participio" : ["anillado"], "tenses" : {"3" : [["anillo"], ["anillas"], ["anilla"], ["anillamos"], ["anill\u00e1is"], ["anillan"]], "4" : [["anill\u00e9"], ["anillaste"], ["anill\u00f3"], ["anillamos"], ["anillasteis"], ["anillaron"]], "5" : [["anillaba"], ["anillabas"], ["anillaba"], ["anill\u00e1bamos"], ["anillabais"], ["anillaban"]], "6" : [["anillar\u00eda"], ["anillar\u00edas"], ["anillar\u00eda"], ["anillar\u00edamos"], ["anillar\u00edais"], ["anillar\u00edan"]], "7" : [["anillar\u00e9"], ["anillar\u00e1s"], ["anillar\u00e1"], ["anillaremos"], ["anillar\u00e9is"], ["anillar\u00e1n"]], "8" : [["anille"], ["anilles"], ["anille"], ["anillemos"], ["anill\u00e9is"], ["anillen"]], "9" : [["anillara"], ["anillaras"], ["anillara"], ["anill\u00e1ramos"], ["anillarais"], ["anillaran"]], "10" : [["anillase"], ["anillases"], ["anillase"], ["anill\u00e1semos"], ["anillaseis"], ["anillasen"]], "11" : [["anillare"], ["anillares"], ["anillare"], ["anill\u00e1remos"], ["anillareis"], ["anillaren"]], "12" : {"1" : ["anilla"], "2" : ["anille"], "3" : ["anillemos"], "4" : ["anillad"], "5" : ["anillen"]}}} | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "gerundio": {"type": "array", "items": {"type": "string"}}, "participio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "gerundio", "participio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 46393, "name" : "Failheap Dynamic Width", "description" : "Very simple style to make the forums take up the entire width\r\n\r\nMay break something but it looks like it works.\r\n\r\nAlso I suck at css so this will probably not be updated and you can remove it once the admins sort out the styles.", "user" : {"id" : 96676, "name" : "jelly", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2011-04-10T04:07:22.000Z", "weekly_install_count" : 0, "total_install_count" : 153, "rating" : null, "after_screenshot_name" : "https://userstyles.org/auto_style_screenshots/46393-after.png?r=1587715404", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2011-04-10T04:07:22.000Z", "category" : "site", "raw_subcategory" : "failheap-challenge", "subcategory" : "failheap-challenge", "additional_info" : null, "style_tags" : [], "css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"failheap-challenge.com\") {\r\n\r\ndiv#wrap{\r\nwidth: auto!important;\r\n}\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/46393/failheap-dynamic-width.user.js", "style_settings" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "node-red": {"type": "object", "properties": {"nodes": {"type": "object", "properties": {"subflow2node": {"type": "string"}}, "required": ["subflow2node"]}}, "required": ["nodes"]}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "dependencies": {"type": "object", "properties": {"crypto-js": {"type": "string"}}, "required": ["crypto-js"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "node-red", "license", "keywords", "author", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "node-red-contrib-subflow2node", "version" : "0.1.0", "description" : "Node-RED node for converting subflow to node", "node-red" : {"nodes" : {"subflow2node" : "subflow2node.js"}}, "license" : "Apache-2.0", "keywords" : ["node-red", "subflow"], "author" : {"name" : "Hiroyasu Nishiyama", "email" : "hiroyasu.nishiyama.uq@hitachi.com"}, "dependencies" : {"crypto-js" : "^4.0.0"}, "devDependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "node-red": {"type": "object", "properties": {"nodes": {"type": "object", "properties": {"subflow2node": {"type": "string"}}, "required": ["subflow2node"]}}, "required": ["nodes"]}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "dependencies": {"type": "object", "properties": {"crypto-js": {"type": "string"}}, "required": ["crypto-js"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "node-red", "license", "keywords", "author", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "item/handheld", "textures" : {"layer0" : "thaumicwonders:items/primal_destroyer"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "130925204201", "text" : "\u5e38\u5e84\u6751\u59d4\u4f1a"}, {"id" : "130925204202", "text" : "\u5c0f\u9a6c\u6751\u59d4\u4f1a"}, {"id" : "130925204203", "text" : "\u4e1c\u5b59\u6751\u59d4\u4f1a"}, {"id" : "130925204204", "text" : "\u9a6c\u8d29\u6751\u59d4\u4f1a"}, {"id" : "130925204205", "text" : "\u5927\u82a6\u6751\u59d4\u4f1a"}, {"id" : "130925204206", "text" : "\u706b\u9f99\u5e97\u6751\u59d4\u4f1a"}, {"id" : "130925204207", "text" : "\u6bdb\u96c6\u6751\u59d4\u4f1a"}, {"id" : "130925204208", "text" : "\u738b\u6885\u6751\u59d4\u4f1a"}, {"id" : "130925204209", "text" : "\u5c0f\u5468\u6751\u59d4\u4f1a"}, {"id" : "130925204210", "text" : "\u5c0f\u738b\u6751\u59d4\u4f1a"}, {"id" : "130925204211", "text" : "\u674e\u58eb\u9053\u6751\u59d4\u4f1a"}, {"id" : "130925204212", "text" : "\u4e09\u5b98\u5e99\u6751\u59d4\u4f1a"}, {"id" : "130925204213", "text" : "\u4e2d\u95eb\u6751\u59d4\u4f1a"}, {"id" : "130925204214", "text" : "\u524d\u95eb\u6751\u59d4\u4f1a"}, {"id" : "130925204215", "text" : "\u540e\u95eb\u6751\u59d4\u4f1a"}, {"id" : "130925204216", "text" : "\u5218\u6625\u594e\u6751\u59d4\u4f1a"}, {"id" : "130925204217", "text" : "\u6c64\u5bb6\u6751\u59d4\u4f1a"}, {"id" : "130925204218", "text" : "\u5d14\u5bb6\u6751\u59d4\u4f1a"}, {"id" : "130925204219", "text" : "\u8521\u5bb6\u6751\u59d4\u4f1a"}, {"id" : "130925204220", "text" : "\u53cd\u5218\u6751\u59d4\u4f1a"}, {"id" : "130925204221", "text" : "\u524d\u5eb5\u6751\u59d4\u4f1a"}, {"id" : "130925204222", "text" : "\u540e\u5eb5\u6751\u59d4\u4f1a"}, {"id" : "130925204223", "text" : "\u9648\u8425\u6751\u59d4\u4f1a"}, {"id" : "130925204224", "text" : "\u5f20\u8425\u6751\u59d4\u4f1a"}, {"id" : "130925204225", "text" : "\u7530\u5e84\u6751\u59d4\u4f1a"}, {"id" : "130925204226", "text" : "\u4ed8\u5b59\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "npatients": {"type": "integer"}, "ncurrentpatients": {"type": "integer"}, "nseriouspatients": {"type": "integer"}, "nexits": {"type": "integer"}, "ndeaths": {"type": "integer"}, "lastUpdate": {"type": "string"}, "src_url": {"type": "string"}, "url_opendata": {"type": "string"}}, "required": ["name", "npatients", "ncurrentpatients", "nseriouspatients", "nexits", "ndeaths", "lastUpdate", "src_url", "url_opendata"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Hyogo", "npatients" : 2129, "ncurrentpatients" : 230, "nseriouspatients" : 14, "nexits" : 1802, "ndeaths" : 49, "lastUpdate" : "2020-08-24T00:00:00", "src_url" : "https://web.pref.hyogo.lg.jp/kk03/documents/yousei.xlsx", "url_opendata" : "http://open-data.pref.hyogo.lg.jp/?page_id=141"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "npatients": {"type": "integer"}, "ncurrentpatients": {"type": "integer"}, "nseriouspatients": {"type": "integer"}, "nexits": {"type": "integer"}, "ndeaths": {"type": "integer"}, "lastUpdate": {"type": "string"}, "src_url": {"type": "string"}, "url_opendata": {"type": "string"}}, "required": ["name", "npatients", "ncurrentpatients", "nseriouspatients", "nexits", "ndeaths", "lastUpdate", "src_url", "url_opendata"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}}, "required": ["name", "icon", "category", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "\u6811\u6728", "icon" : "natura:nether_sapling:2", "category" : "survival_category", "pages" : [{"type" : "text", "text" : "\u5728\u5730\u72f1\u4e2d\u7684\u6811\u6728\u5e76\u4e0d\u7a00\u6709\u3002"}, {"type" : "text", "text" : "\u4e00\u822c\u5728\u5730\u72f1\u81ea\u7136\u751f\u957f\u7684\u6811\u6728\u90fd\u80fd\u88ab\u73a9\u5bb6\u79cd\u5728\u5730\u72f1\u5ca9\u4e0a\u3002"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "category": {"type": "string"}, "pages": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}}}, "required": ["name", "icon", "category", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "420682105001", "text" : "\u6d2a\u5c71\u8def\u5c45\u59d4\u4f1a"}, {"id" : "420682105002", "text" : "\u6c5f\u5c71\u5c45\u59d4\u4f1a"}, {"id" : "420682105003", "text" : "\u5b9d\u77f3\u6c34\u6ce5\u5382\u5c45\u59d4\u4f1a"}, {"id" : "420682105006", "text" : "\u6d2a\u661f\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "420682105200", "text" : "\u6d2a\u5c71\u5634\u6751\u59d4\u4f1a"}, {"id" : "420682105201", "text" : "\u592a\u5c71\u5e99\u6751\u59d4\u4f1a"}, {"id" : "420682105202", "text" : "\u82cf\u5bb6\u6cb3\u6751\u59d4\u4f1a"}, {"id" : "420682105203", "text" : "\u8881\u5e84\u6751\u59d4\u4f1a"}, {"id" : "420682105204", "text" : "\u4ed8\u5bb6\u5be8\u6751\u59d4\u4f1a"}, {"id" : "420682105205", "text" : "\u6768\u5bb6\u6e7e\u6751\u59d4\u4f1a"}, {"id" : "420682105206", "text" : "\u827e\u5bb6\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "420682105207", "text" : "\u9ad8\u697c\u6751\u59d4\u4f1a"}, {"id" : "420682105208", "text" : "\u674e\u5bb6\u5be8\u6751\u59d4\u4f1a"}, {"id" : "420682105209", "text" : "\u516d\u80a1\u6cc9\u6751\u59d4\u4f1a"}, {"id" : "420682105210", "text" : "\u4f59\u5bb6\u6e7e\u6751\u59d4\u4f1a"}, {"id" : "420682105211", "text" : "\u519b\u961f\u6cb3\u6751\u59d4\u4f1a"}, {"id" : "420682105212", "text" : "\u5e84\u5bb6\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "420682105213", "text" : "\u77f3\u95e8\u6751\u59d4\u4f1a"}, {"id" : "420682105214", "text" : "\u6c60\u5c97\u6751\u59d4\u4f1a"}, {"id" : "420682105215", "text" : "\u5170\u5bb6\u5c97\u6751\u59d4\u4f1a"}, {"id" : "420682105216", "text" : "\u7ea2\u6811\u6728\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "420682105217", "text" : "\u725b\u738b\u5e99\u6751\u59d4\u4f1a"}, {"id" : "420682105218", "text" : "\u5174\u9686\u5bfa\u6751\u59d4\u4f1a"}, {"id" : "420682105219", "text" : "\u5c1a\u6e7e\u6751\u59d4\u4f1a"}, {"id" : "420682105220", "text" : "\u74e6\u57ce\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "420682105221", "text" : "\u8346\u5bb6\u68da\u6751\u59d4\u4f1a"}, {"id" : "420682105222", "text" : "\u9ec4\u9f99\u6cc9\u6751\u59d4\u4f1a"}, {"id" : "420682105223", "text" : "\u5c0f\u9ec4\u695d\u6811\u6751\u59d4\u4f1a"}, {"id" : "420682105224", "text" : "\u8096\u6e7e\u6751\u59d4\u4f1a"}, {"id" : "420682105225", "text" : "\u6768\u5316\u5c97\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"#": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["#"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["type", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "minecraft:crafting_shaped", "pattern" : ["###", "###", "###"], "key" : {"#" : {"item" : "clayium:item_brass_ingot"}}, "result" : {"item" : "clayium:item_brass_block"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"#": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["#"]}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "required": ["type", "pattern", "key", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Serralongue", "circ" : "4\u00e8me circonscription", "dpt" : "Pyr\u00e9n\u00e9es-Orientales", "inscrits" : 206, "abs" : 93, "votants" : 113, "blancs" : 0, "nuls" : 0, "exp" : 113, "res" : [{"nuance" : "REM", "nom" : "M. S\u00e9bastien CAZENOVE", "voix" : 30}, {"nuance" : "SOC", "nom" : "M. Alexandre REYNAL", "voix" : 28}, {"nuance" : "LR", "nom" : "Mme Jacqueline IRLES", "voix" : 16}, {"nuance" : "FN", "nom" : "M. St\u00e9phane MASSANELL", "voix" : 14}, {"nuance" : "FI", "nom" : "Mme Dominique GU\u00c9RIN", "voix" : 11}, {"nuance" : "REG", "nom" : "M. Jordi VERA", "voix" : 6}, {"nuance" : "COM", "nom" : "M. Nicolas GARCIA", "voix" : 3}, {"nuance" : "ECO", "nom" : "M. Franck HUETTE", "voix" : 2}, {"nuance" : "EXG", "nom" : "Mme Esther SILAN", "voix" : 1}, {"nuance" : "DIV", "nom" : "Mme Carole PERCY", "voix" : 1}, {"nuance" : "DIV", "nom" : "M. Daniel AILLAUD", "voix" : 1}, {"nuance" : "DVD", "nom" : "Mme Mich\u00e8le VADUREAU PEREZ", "voix" : 0}, {"nuance" : "DLF", "nom" : "Mme Gis\u00e8le MOURAGUES", "voix" : 0}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Create Association": {"type": "object", "properties": {"url_segments": {"type": "string"}, "request_type": {"type": "string"}, "description": {"type": "string"}, "enableParams": {"type": "boolean"}, "authorization": {"type": "object", "properties": {"roles": {"type": "array", "items": {"type": "string"}}}, "required": ["roles"]}}, "required": ["url_segments", "request_type", "description", "enableParams", "authorization"]}, "Fetch Associated Records": {"type": "object", "properties": {"url_segments": {"type": "string"}, "request_type": {"type": "string"}, "description": {"type": "string"}, "enableParams": {"type": "boolean"}, "authorization": {"type": "object", "properties": {"roles": {"type": "array", "items": {"type": "string"}}}, "required": ["roles"]}}, "required": ["url_segments", "request_type", "description", "enableParams", "authorization"]}, "Fetch Available Options": {"type": "object", "properties": {"url_segments": {"type": "string"}, "request_type": {"type": "string"}, "description": {"type": "string"}, "enableParams": {"type": "boolean"}, "authorization": {"type": "object", "properties": {"roles": {"type": "array", "items": {"type": "string"}}}, "required": ["roles"]}}, "required": ["url_segments", "request_type", "description", "enableParams", "authorization"]}, "Disassociate": {"type": "object", "properties": {"url_segments": {"type": "string"}, "request_type": {"type": "string"}, "description": {"type": "string"}, "enableParams": {"type": "boolean"}, "authorization": {"type": "object", "properties": {"roles": {"type": "array", "items": {"type": "string"}}}, "required": ["roles"]}}, "required": ["url_segments", "request_type", "description", "enableParams", "authorization"]}}, "required": ["Create Association", "Fetch Associated Records", "Fetch Available Options", "Disassociate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Create Association" : {"url_segments" : "module_relations/submit", "request_type" : "POST", "description" : "Create new module association", "enableParams" : true, "authorization" : {"roles" : ["admin"]}}, "Fetch Associated Records" : {"url_segments" : "module_relations/fetch_associated_records", "request_type" : "POST", "description" : "Fetch associated records.", "enableParams" : true, "authorization" : {"roles" : ["admin"]}}, "Fetch Available Options" : {"url_segments" : "module_relations/fetch_available_options", "request_type" : "POST", "description" : "Fetch associated records.", "enableParams" : true, "authorization" : {"roles" : ["admin"]}}, "Disassociate" : {"url_segments" : "module_relations/disassociate", "request_type" : "POST", "description" : "Remove disassociation.", "enableParams" : true, "authorization" : {"roles" : ["admin"]}}} | json_instruct | {"type": "object", "properties": {"Create Association": {"type": "object", "properties": {"url_segments": {"type": "string"}, "request_type": {"type": "string"}, "description": {"type": "string"}, "enableParams": {"type": "boolean"}, "authorization": {"type": "object", "properties": {"roles": {"type": "array", "items": {"type": "string"}}}, "required": ["roles"]}}, "required": ["url_segments", "request_type", "description", "enableParams", "authorization"]}, "Fetch Associated Records": {"type": "object", "properties": {"url_segments": {"type": "string"}, "request_type": {"type": "string"}, "description": {"type": "string"}, "enableParams": {"type": "boolean"}, "authorization": {"type": "object", "properties": {"roles": {"type": "array", "items": {"type": "string"}}}, "required": ["roles"]}}, "required": ["url_segments", "request_type", "description", "enableParams", "authorization"]}, "Fetch Available Options": {"type": "object", "properties": {"url_segments": {"type": "string"}, "request_type": {"type": "string"}, "description": {"type": "string"}, "enableParams": {"type": "boolean"}, "authorization": {"type": "object", "properties": {"roles": {"type": "array", "items": {"type": "string"}}}, "required": ["roles"]}}, "required": ["url_segments", "request_type", "description", "enableParams", "authorization"]}, "Disassociate": {"type": "object", "properties": {"url_segments": {"type": "string"}, "request_type": {"type": "string"}, "description": {"type": "string"}, "enableParams": {"type": "boolean"}, "authorization": {"type": "object", "properties": {"roles": {"type": "array", "items": {"type": "string"}}}, "required": ["roles"]}}, "required": ["url_segments", "request_type", "description", "enableParams", "authorization"]}}, "required": ["Create Association", "Fetch Associated Records", "Fetch Available Options", "Disassociate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "regist": {"type": "string"}}, "required": ["test", "start", "regist"]}, "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": {"axios": {"type": "string"}, "chalk": {"type": "string"}, "discord.js": {"type": "string"}, "dotenv": {"type": "string"}}, "required": ["axios", "chalk", "discord.js", "dotenv"]}, "devDependencies": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "hiroiga-detect-bot", "version" : "1.0.0", "description" : "\u62fe\u3044\u753b\u3092\u691c\u77e5\u3057\u307e\u3059", "main" : "src/index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "npx node src/index.js", "regist" : "npx node src/register.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/waki285/hiroiga-detect-bot.git"}, "keywords" : ["image-search"], "author" : "waki285 <suzuneu@suzuneu.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/waki285/hiroiga-detect-bot/issues"}, "homepage" : "https://github.com/waki285/hiroiga-detect-bot#readme", "dependencies" : {"axios" : "^0.24.0", "chalk" : "^4.1.2", "discord.js" : "^13.4.0", "dotenv" : "^10.0.0"}, "devDependencies" : {"node" : "^16.13.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "regist": {"type": "string"}}, "required": ["test", "start", "regist"]}, "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": {"axios": {"type": "string"}, "chalk": {"type": "string"}, "discord.js": {"type": "string"}, "dotenv": {"type": "string"}}, "required": ["axios", "chalk", "discord.js", "dotenv"]}, "devDependencies": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "main", "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": {"rows": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["rows"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rows" : [["createsentence", "1", "Description", "\u0c9c\u0cb2\u0ca6/\u0ca8\u0cb3", "", "tap.png", "\u0c9c\u0cb2\u0ca6 \u0ca8\u0cb3.mp3"], ["createsentence", "1", "Description", "\u0ca8\u0cb3\u0ca6/\u0c9c\u0cb2/\u0cac\u0cb3 \u0cac\u0cb3", "", "tapwater.png", "\u0ca8\u0cb3\u0ca6 \u0c9c\u0cb2 \u0cac\u0cb3\u0cac\u0cb3.mp3"], ["createsentence", "1", "Description", "\u0c86\u0c97\u0cb8\u0ca6/\u0c9c\u0cb2/\u0caa\u0cb3 \u0caa\u0cb3", "", "rain.png", "\u0c86\u0c97\u0cb8\u0ca6 \u0c9c\u0cb2 \u0caa\u0cb3 \u0caa\u0cb3.mp3"], ["createsentence", "1", "Description", "\u0c86\u0cb2\u0caf\u0ca6/\u0c9c\u0ca8/\u0c9c\u0ca8\u0cb0/\u0c86\u0c97\u0cae\u0ca8", "", "peopleintemple.png", "\u0c86\u0cb2\u0caf\u0ca6 \u0c9c\u0ca8 \u0c9c\u0ca8\u0cb0 \u0c86\u0c97\u0cae\u0ca8.mp3"], ["createsentence", "1", "Description", "\u0c9c\u0ca8\u0cb0/\u0c86\u0c97\u0cae\u0ca8/\u0ca4\u0cb0\u0ca4\u0cb0\u0ca6/\u0ca8\u0cae\u0ca8", "", "peoplepraying.png", "\u0c9c\u0ca8\u0cb0 \u0c86\u0c97\u0cae\u0ca8 \u0ca4\u0cb0\u0ca4\u0cb0\u0ca6 \u0ca8\u0cae\u0ca8.mp3"], ["quizliteracy", "1", "Description", "soundonly_sentence", "\u0c9c\u0cb2\u0ca6 \u0ca8\u0cb3", "\u0c9c\u0cb2\u0ca6 \u0ca8\u0cb3", "\u0c89\u0ca6\u0caf\u0ca6 \u0cb8\u0cae\u0caf", "\u0c97\u0cb0\u0c97\u0cb8\u0ca6 \u0c97\u0cb0\u0c97\u0cb0", "", "", "\u0c9c\u0cb2\u0ca6 \u0ca8\u0cb3.mp3"], ["quizliteracy", "1", "Description", "sentence_sentence", "\u0c86\u0c97\u0cb8\u0ca6 \u0c9c\u0cb2 \u0caa\u0cb3 \u0caa\u0cb3", "\u0c97\u0cae\u0cb0\u0cbf\u0ca6 \u0cac\u0cac \u0c97\u0cb9\u0cb3\u0cb9", "\u0c85\u0cac\u0cb0 \u0c97\u0cae\u0cae \u0cb0\u0cae\u0cb0\u0cae", "\u0c86\u0c97\u0cb8\u0ca6 \u0c9c\u0cb2 \u0caa\u0cb3 \u0caa\u0cb3", "", "\u0cb8\u0cb0\u0cbf\u0caf\u0cbe\u0ca6\u0ca6\u0ca8\u0ccd\u0ca8\u0cc1 \u0c86\u0cb0\u0cbf\u0cb8\u0cbf", "\u0c86\u0c97\u0cb8\u0ca6 \u0c9c\u0cb2 \u0caa\u0cb3 \u0caa\u0cb3.mp3"], ["quizliteracy", "1", "Description", "image_sentence", "\u0c9c\u0ca8\u0cb0 \u0c86\u0c97\u0cae\u0ca8 \u0ca4\u0cb0\u0ca4\u0cb0\u0ca6 \u0ca8\u0cae\u0ca8", "\u0c86\u0c97\u0cb8\u0ca6 \u0c9c\u0cb2 \u0caa\u0cb3 \u0caa\u0cb3", "\u0c9c\u0ca8\u0cb0 \u0c86\u0c97\u0cae\u0ca8 \u0ca4\u0cb0\u0ca4\u0cb0\u0ca6 \u0ca8\u0cae\u0ca8", "\u0c9c\u0cb2\u0ca6 \u0ca8\u0cb3", "peopleintemple.png", "", "\u0c9c\u0ca8\u0cb0 \u0c86\u0c97\u0cae\u0ca8 \u0ca4\u0cb0\u0ca4\u0cb0\u0ca6 \u0ca8\u0cae\u0ca8.mp3"]]} | json_instruct | {"type": "object", "properties": {"rows": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["rows"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/css/2.fe359a49.chunk.css": {"type": "string"}, "static/js/2.a5a65423.chunk.js": {"type": "string"}, "static/js/2.a5a65423.chunk.js.map": {"type": "string"}, "static/js/3.b8b6ca14.chunk.js": {"type": "string"}, "static/js/3.b8b6ca14.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/css/2.fe359a49.chunk.css.map": {"type": "string"}, "static/css/main.01edd0ed.chunk.css.map": {"type": "string"}, "static/js/2.a5a65423.chunk.js.LICENSE.txt": {"type": "string"}, "static/media/index.css": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/css/2.fe359a49.chunk.css", "static/js/2.a5a65423.chunk.js", "static/js/2.a5a65423.chunk.js.map", "static/js/3.b8b6ca14.chunk.js", "static/js/3.b8b6ca14.chunk.js.map", "index.html", "static/css/2.fe359a49.chunk.css.map", "static/css/main.01edd0ed.chunk.css.map", "static/js/2.a5a65423.chunk.js.LICENSE.txt", "static/media/index.css"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"files" : {"main.css" : "/static/css/main.01edd0ed.chunk.css", "main.js" : "/static/js/main.a4a6603e.chunk.js", "main.js.map" : "/static/js/main.a4a6603e.chunk.js.map", "runtime-main.js" : "/static/js/runtime-main.ca74c097.js", "runtime-main.js.map" : "/static/js/runtime-main.ca74c097.js.map", "static/css/2.fe359a49.chunk.css" : "/static/css/2.fe359a49.chunk.css", "static/js/2.a5a65423.chunk.js" : "/static/js/2.a5a65423.chunk.js", "static/js/2.a5a65423.chunk.js.map" : "/static/js/2.a5a65423.chunk.js.map", "static/js/3.b8b6ca14.chunk.js" : "/static/js/3.b8b6ca14.chunk.js", "static/js/3.b8b6ca14.chunk.js.map" : "/static/js/3.b8b6ca14.chunk.js.map", "index.html" : "/index.html", "static/css/2.fe359a49.chunk.css.map" : "/static/css/2.fe359a49.chunk.css.map", "static/css/main.01edd0ed.chunk.css.map" : "/static/css/main.01edd0ed.chunk.css.map", "static/js/2.a5a65423.chunk.js.LICENSE.txt" : "/static/js/2.a5a65423.chunk.js.LICENSE.txt", "static/media/index.css" : "/static/media/phone.0c2c2346.svg"}, "entrypoints" : ["static/js/runtime-main.ca74c097.js", "static/css/2.fe359a49.chunk.css", "static/js/2.a5a65423.chunk.js", "static/css/main.01edd0ed.chunk.css", "static/js/main.a4a6603e.chunk.js"]} | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/css/2.fe359a49.chunk.css": {"type": "string"}, "static/js/2.a5a65423.chunk.js": {"type": "string"}, "static/js/2.a5a65423.chunk.js.map": {"type": "string"}, "static/js/3.b8b6ca14.chunk.js": {"type": "string"}, "static/js/3.b8b6ca14.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/css/2.fe359a49.chunk.css.map": {"type": "string"}, "static/css/main.01edd0ed.chunk.css.map": {"type": "string"}, "static/js/2.a5a65423.chunk.js.LICENSE.txt": {"type": "string"}, "static/media/index.css": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/css/2.fe359a49.chunk.css", "static/js/2.a5a65423.chunk.js", "static/js/2.a5a65423.chunk.js.map", "static/js/3.b8b6ca14.chunk.js", "static/js/3.b8b6ca14.chunk.js.map", "index.html", "static/css/2.fe359a49.chunk.css.map", "static/css/main.01edd0ed.chunk.css.map", "static/js/2.a5a65423.chunk.js.LICENSE.txt", "static/media/index.css"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "turndown-ssml", "version" : "0.1.2", "description" : "Convert SSML into markdown files, useful for bots that utilize both voice and text chat", "main" : "src/ssml.js", "directories" : {"test" : "test"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Truemedia/turndown-ssml.git"}, "keywords" : ["turndown", "turndown-plugin", "html-to-markdown", "html", "markdown", "ssml", "speech", "chat", "bots"], "author" : "Wade Penistone", "license" : "MIT", "bugs" : {"url" : "https://github.com/Truemedia/turndown-ssml/issues"}, "homepage" : "https://github.com/Truemedia/turndown-ssml#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$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.