input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}, "wp-coding-standards/wpcs": {"type": "string"}, "dealerdirect/phpcodesniffer-composer-installer": {"type": "string"}}, "required": ["php", "squizlabs/php_codesniffer", "wp-coding-standards/wpcs", "dealerdirect/phpcodesniffer-composer-installer"]}}, "required": ["name", "description", "type", "license", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "larsvanrhijn/widgets", "description" : "A collection of custom-made widgets for Wordpress websites.", "type" : "plugin", "license" : "MIT", "authors" : [{"name" : "Lars van Rhijn", "email" : "lars@larsvanrhijn.nl"}], "require" : {"php" : "^8.0", "squizlabs/php_codesniffer" : "^3.6", "wp-coding-standards/wpcs" : "^2.3", "dealerdirect/phpcodesniffer-composer-installer" : "^0.7.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}, "wp-coding-standards/wpcs": {"type": "string"}, "dealerdirect/phpcodesniffer-composer-installer": {"type": "string"}}, "required": ["php", "squizlabs/php_codesniffer", "wp-coding-standards/wpcs", "dealerdirect/phpcodesniffer-composer-installer"]}}, "required": ["name", "description", "type", "license", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : "Defy", "definitions" : ["Openly resist or refuse to obey.", "Be of such a kind or nature that (a specified attitude or action) is almost impossible.", "Appear to be challenging (someone) to do or prove something.", "Challenge (someone) to fight."], "parts-of-speech" : "Verb"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "QmeJXSSsL12jZEca916kmk9QiN4u7mGP53GpBkNHyqDnLL", "title" : "Add a Bulldoge - Bonfire farm with a 4.2x multiplier?", "body" : "Bonfire is a newish Safemoon-esque coin with a strong 100k+ community and has been mooning this last week. To add fuel to the fire, let's add some Bulldoge to the mix for extra burning potential!", "choices" : ["heckin' yes, fire away!", "no, I don't feel the burn"], "start" : 1620414000, "end" : 1620586800, "snapshot" : "12391323", "state" : "closed", "author" : "0x84764837E944AcF2D6572cd3EcA0d0eFdA7E227D", "space" : {"id" : "dogen.eth", "name" : "DOGEN"}, "votes" : 1, "votes_data" : [{"id" : "QmNcPaoyn4FE6x8Rt2RBKnkTBYPeiZBYBaQtm4RMwhnNW5", "voter" : "0x1eAaDDC93DBB361B92B4b1e424b43B3DF32E5DB4", "created" : 1620446331, "choice" : 1, "space" : {"id" : "dogen.eth"}}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "invite": {"type": "string"}, "website": {"type": "string"}, "source": {"type": "string"}, "updateUrl": {"type": "string"}}, "required": ["name", "description", "version", "author", "invite", "website", "source", "updateUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "WhoReacted", "description" : "Shows the avatars of the users who reacted to a message.", "version" : "1.2.1", "author" : {"id" : "289112759948410881", "name" : "Jaime Filho"}, "invite" : "z6Yx9A8VDR", "website" : "https://github.com/jaimeadf/BetterDiscordPlugins/tree/release/src/WhoReacted", "source" : "https://github.com/jaimeadf/BetterDiscordPlugins/tree/release/src/WhoReacted", "updateUrl" : "https://raw.githubusercontent.com/jaimeadf/BetterDiscordPlugins/release/dist/WhoReacted/WhoReacted.plugin.js"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "invite": {"type": "string"}, "website": {"type": "string"}, "source": {"type": "string"}, "updateUrl": {"type": "string"}}, "required": ["name", "description", "version", "author", "invite", "website", "source", "updateUrl"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "redacted": {"type": "boolean"}, "unlockType": {"type": "integer"}, "displayProperties": {"type": "object", "properties": {"hasIcon": {"type": "boolean"}}, "required": ["hasIcon"]}, "scope": {"type": "integer"}}, "required": ["index", "hash", "blacklisted", "redacted", "unlockType", "displayProperties", "scope"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 6500, "hash" : 1225115286, "blacklisted" : false, "redacted" : false, "unlockType" : 0, "displayProperties" : {"hasIcon" : false}, "scope" : 0} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "redacted": {"type": "boolean"}, "unlockType": {"type": "integer"}, "displayProperties": {"type": "object", "properties": {"hasIcon": {"type": "boolean"}}, "required": ["hasIcon"]}, "scope": {"type": "integer"}}, "required": ["index", "hash", "blacklisted", "redacted", "unlockType", "displayProperties", "scope"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 16027, "cartId" : "f950f104-4f27-4767-a5bd-cdb4c8a54610", "preferredProducts" : [1877, 4537, 1935, 121, 2642, 1043, 2942, 3683, 3840, 4285], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_popup"]}}, "required": ["manifest_version", "name", "version", "description", "icons", "permissions", "content_scripts", "background", "browser_action"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"manifest_version" : 2, "name" : "Googly Eyes on Everything", "version" : "0.4", "description" : "Lets you put googly eyes on anything and everything!", "icons" : {"128" : "favicon.png"}, "permissions" : ["contextMenus", "tabs"], "content_scripts" : [{"matches" : ["<all_urls>"], "js" : ["jquery-3.3.1.js", "jquery-ui.js", "googlyEyes.js"]}], "background" : {"scripts" : ["background.js"], "persistent" : false}, "browser_action" : {"default_icon" : "favicon.png", "default_popup" : ""}} | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_popup"]}}, "required": ["manifest_version", "name", "version", "description", "icons", "permissions", "content_scripts", "background", "browser_action"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"address": {"type": "string"}, "id": {"type": "string"}, "version": {"type": "integer"}, "crypto": {"type": "object", "properties": {"cipher": {"type": "string"}, "ciphertext": {"type": "string"}, "cipherparams": {"type": "object", "properties": {"iv": {"type": "string"}}, "required": ["iv"]}, "kdf": {"type": "string"}, "kdfparams": {"type": "object", "properties": {"dklen": {"type": "integer"}, "n": {"type": "integer"}, "p": {"type": "integer"}, "r": {"type": "integer"}, "salt": {"type": "string"}}, "required": ["dklen", "n", "p", "r", "salt"]}, "mac": {"type": "string"}}, "required": ["cipher", "ciphertext", "cipherparams", "kdf", "kdfparams", "mac"]}}, "required": ["address", "id", "version", "crypto"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"address" : "550b8bf833c236c9a284a1883833c7853c18f286", "id" : "86e8966a-089c-49b3-9c57-d717cd0a2eb2", "version" : 3, "crypto" : {"cipher" : "aes-128-ctr", "ciphertext" : "b5454313131f17c5bcaf66001c6cb3ce0683b912fbca5f8b5c5fed170a1091e9", "cipherparams" : {"iv" : "1dceace8a1b3c1a4ecc00cc032eca2aa"}, "kdf" : "scrypt", "kdfparams" : {"dklen" : 32, "n" : 4096, "p" : 6, "r" : 8, "salt" : "db9c0a254b7cae6e77bda15a91b499e4981a529483809d35b2f813b1645ae8aa"}, "mac" : "3364485a96f9e05ba435005eb514edb85b13f561aee03e13c520ad697bd8cfbb"}} | json_instruct | {"type": "object", "properties": {"address": {"type": "string"}, "id": {"type": "string"}, "version": {"type": "integer"}, "crypto": {"type": "object", "properties": {"cipher": {"type": "string"}, "ciphertext": {"type": "string"}, "cipherparams": {"type": "object", "properties": {"iv": {"type": "string"}}, "required": ["iv"]}, "kdf": {"type": "string"}, "kdfparams": {"type": "object", "properties": {"dklen": {"type": "integer"}, "n": {"type": "integer"}, "p": {"type": "integer"}, "r": {"type": "integer"}, "salt": {"type": "string"}}, "required": ["dklen", "n", "p", "r", "salt"]}, "mac": {"type": "string"}}, "required": ["cipher", "ciphertext", "cipherparams", "kdf", "kdfparams", "mac"]}}, "required": ["address", "id", "version", "crypto"], "$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"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-92.388615, 34.655852], [-92.387464, 34.65657], [-92.385355, 34.666775], [-92.383651, 34.667757], [-92.383945, 34.668994], [-92.3795, 34.670617], [-92.361791, 34.669705], [-92.362599, 34.667935], [-92.364004, 34.633944], [-92.366496, 34.63307], [-92.37081, 34.629913], [-92.371341, 34.628769], [-92.370083, 34.627434], [-92.371207, 34.626411], [-92.384394, 34.626333], [-92.381808, 34.62841], [-92.38095, 34.651751], [-92.383817, 34.651847], [-92.385268, 34.653512], [-92.386289, 34.653026], [-92.388615, 34.655852]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 3517}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"accuracy": {"type": "number"}, "loss": {"type": "number"}}, "required": ["accuracy", "loss"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"accuracy" : 0.8513333201408386, "loss" : 0.38633984327316284} | json_instruct | {"type": "object", "properties": {"accuracy": {"type": "number"}, "loss": {"type": "number"}}, "required": ["accuracy", "loss"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "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" : 100085, "name" : "hdkinoklub", "description" : "\u0423\u0431\u0438\u0440\u0430\u0435\u043c \u043d\u0430\u0437\u043e\u0439\u043b\u0438\u0432\u0443\u044e \u0440\u0435\u043a\u043b\u0430\u043c\u0443 \u0441 \u0441\u0430\u0439\u0442\u0430 hdkinoklub.ru", "user" : {"id" : 262231, "name" : "palachmb", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2014-04-07T17:09:14.000Z", "weekly_install_count" : 0, "total_install_count" : 12, "rating" : null, "after_screenshot_name" : "https://userstyles.org/auto_style_screenshots/100085-after.png?r=1602230739", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2014-04-07T17:09:14.000Z", "category" : "site", "raw_subcategory" : "hdkinoklub", "subcategory" : "hdkinoklub", "additional_info" : null, "style_tags" : [], "css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"hdkinoklub.ru\") {\r\n}\r\ndiv[id^=\"skin_block\"] {display: none !important;}\r\ndiv[id^=\"skin_link\"] {display: none !important;}\r\ndiv[id^=\"bn_\"] {display: none !important;}\r\ndiv[class=\"adv_turn_block\"] {display: none !important;}\r\nbody {padding-top: 0px !important; background:none !important;}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/100085/hdkinoklub.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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"only_if_loaded": {"type": "string"}, "type": {"type": "string"}, "family": {"type": "string"}, "signal_energy": {"type": "integer"}, "up_probability": {"type": "integer"}, "lowest_branch_height": {"type": "integer"}, "growth_rate": {"type": "integer"}, "soil_longevity": {"type": "integer"}, "growth_logic_kit": {"type": "string"}, "cactus_thickness_logic": {"type": "string"}, "perfect_biomes": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "acceptable_soils": {"type": "array", "items": {"type": "string"}}, "drop_creators": {"type": "array", "items": {"type": "string"}}}, "required": ["only_if_loaded", "type", "family", "signal_energy", "up_probability", "lowest_branch_height", "growth_rate", "soil_longevity", "growth_logic_kit", "cactus_thickness_logic", "perfect_biomes", "acceptable_soils", "drop_creators"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"only_if_loaded" : "dynamictreesplus", "type" : "dynamictreesplus:cactus", "family" : "dtbyg:warped_cactus", "signal_energy" : 4, "up_probability" : 4, "lowest_branch_height" : 2, "growth_rate" : 1, "soil_longevity" : 1, "growth_logic_kit" : "dynamictreesplus:saguaro_cactus", "cactus_thickness_logic" : "dynamictreesplus:saguaro", "perfect_biomes" : {"name" : "byg:warped_desert"}, "acceptable_soils" : ["nylium_soul_like"], "drop_creators" : ["log", "dynamictreesplus:cactus_seeds"]} | json_instruct | {"type": "object", "properties": {"only_if_loaded": {"type": "string"}, "type": {"type": "string"}, "family": {"type": "string"}, "signal_energy": {"type": "integer"}, "up_probability": {"type": "integer"}, "lowest_branch_height": {"type": "integer"}, "growth_rate": {"type": "integer"}, "soil_longevity": {"type": "integer"}, "growth_logic_kit": {"type": "string"}, "cactus_thickness_logic": {"type": "string"}, "perfect_biomes": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "acceptable_soils": {"type": "array", "items": {"type": "string"}}, "drop_creators": {"type": "array", "items": {"type": "string"}}}, "required": ["only_if_loaded", "type", "family", "signal_energy", "up_probability", "lowest_branch_height", "growth_rate", "soil_longevity", "growth_logic_kit", "cactus_thickness_logic", "perfect_biomes", "acceptable_soils", "drop_creators"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"clip_far": {"type": "integer"}, "clip_near": {"type": "integer"}, "data_prefix": {"type": "string"}, "depth_focal_x": {"type": "number"}, "depth_focal_y": {"type": "number"}, "depth_principal_x": {"type": "number"}, "depth_principal_y": {"type": "number"}, "rgb_focal_x": {"type": "number"}, "rgb_focal_y": {"type": "number"}, "rgb_principal_x": {"type": "number"}, "rgb_principal_y": {"type": "number"}, "gpc_model_path": {"type": "string"}, "image_cols": {"type": "integer"}, "image_rows": {"type": "integer"}, "start_frame": {"type": "integer"}, "num_frame": {"type": "integer"}, "use_periodic_reinit": {"type": "boolean"}, "reinit_period": {"type": "integer"}, "use_density": {"type": "boolean"}, "use_foreground": {"type": "boolean"}, "use_offline_foreground": {"type": "boolean"}, "frame_skip": {"type": "integer"}, "solve_rigid": {"type": "boolean"}, "offline_save": {"type": "boolean"}}, "required": ["clip_far", "clip_near", "data_prefix", "depth_focal_x", "depth_focal_y", "depth_principal_x", "depth_principal_y", "rgb_focal_x", "rgb_focal_y", "rgb_principal_x", "rgb_principal_y", "gpc_model_path", "image_cols", "image_rows", "start_frame", "num_frame", "use_periodic_reinit", "reinit_period", "use_density", "use_foreground", "use_offline_foreground", "frame_skip", "solve_rigid", "offline_save"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"clip_far" : 1300, "clip_near" : 10, "data_prefix" : "/home/mihai/Projects/slambench4/datasets/BONN/rgbd_bonn_balloon.dir/rgbd_bonn_balloon", "depth_focal_x" : 542.822841, "depth_focal_y" : 542.57687, "depth_principal_x" : 315.59352, "depth_principal_y" : 237.756098, "rgb_focal_x" : 542.822841, "rgb_focal_y" : 542.57687, "rgb_principal_x" : 315.59352, "rgb_principal_y" : 237.756098, "gpc_model_path" : "/home/mihai/Projects/surfelwarp/test_data/sintel_small_speed", "image_cols" : 640, "image_rows" : 480, "start_frame" : 0, "num_frame" : 1235, "use_periodic_reinit" : false, "reinit_period" : 0, "use_density" : true, "use_foreground" : true, "use_offline_foreground" : false, "frame_skip" : 0, "solve_rigid" : true, "offline_save" : false} | json_instruct | {"type": "object", "properties": {"clip_far": {"type": "integer"}, "clip_near": {"type": "integer"}, "data_prefix": {"type": "string"}, "depth_focal_x": {"type": "number"}, "depth_focal_y": {"type": "number"}, "depth_principal_x": {"type": "number"}, "depth_principal_y": {"type": "number"}, "rgb_focal_x": {"type": "number"}, "rgb_focal_y": {"type": "number"}, "rgb_principal_x": {"type": "number"}, "rgb_principal_y": {"type": "number"}, "gpc_model_path": {"type": "string"}, "image_cols": {"type": "integer"}, "image_rows": {"type": "integer"}, "start_frame": {"type": "integer"}, "num_frame": {"type": "integer"}, "use_periodic_reinit": {"type": "boolean"}, "reinit_period": {"type": "integer"}, "use_density": {"type": "boolean"}, "use_foreground": {"type": "boolean"}, "use_offline_foreground": {"type": "boolean"}, "frame_skip": {"type": "integer"}, "solve_rigid": {"type": "boolean"}, "offline_save": {"type": "boolean"}}, "required": ["clip_far", "clip_near", "data_prefix", "depth_focal_x", "depth_focal_y", "depth_principal_x", "depth_principal_y", "rgb_focal_x", "rgb_focal_y", "rgb_principal_x", "rgb_principal_y", "gpc_model_path", "image_cols", "image_rows", "start_frame", "num_frame", "use_periodic_reinit", "reinit_period", "use_density", "use_foreground", "use_offline_foreground", "frame_skip", "solve_rigid", "offline_save"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-120.51, 46.45]}, "type" : "Feature", "id" : "98951", "properties" : {"other_cities" : "", "city" : "Wapato", "state" : "WA", "county" : "Yakima County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"results" : [{"tech" : 1, "pts" : 761, "connections" : 286963, "capacity" : 19573462, "investments" : 133882649}, {"tech" : 3, "pts" : 24, "connections" : 13, "capacity" : 2625, "investments" : 14436}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "MenuManagement", "displayName" : "MenuManagement"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Blind Search for Atari-Like Online Planning Revisited.", "fields" : ["automated planning and scheduling", "observable", "a priori and a posteriori", "learning environment", "structural similarity"], "abstract" : "Similarly to the classical AI planning, the Atari 2600 games supported in the Arcade Learning Environment all feature a fully observable (RAM) state and actions that have deterministic effect. At the same time, the problems in ALE are given only implicitly, via a simulator, a priori precluding exploiting most of the modern classical planning techniques. Despite that, Lipovetzky et al. [2015] recently showed how online planning for Atari-like problems can be effectively addressed using IW(i), a blind state-space search algorithm that employs a certain form of structural similarity-based pruning. We show that the effectiveness of the blind state-space search for Atari-like online planning can be pushed even further by focusing the search using both structural state similarity and the relative myopic value of the states. We also show that the planning effectiveness can be further improved by considering online planning for the Atari games as a multiarmed bandit style competition between the various actions available at the state planned for, and not purely as a classical planning style action sequence optimization problem.", "citation" : "Citations (3)", "year" : "2016", "departments" : ["Technion \u2013 Israel Institute of Technology", "Technion \u2013 Israel Institute of Technology", "Technion \u2013 Israel Institute of Technology"], "conf" : "ijcai", "authors" : ["Alexander Shleyfman.....http://dblp.org/pers/hd/s/Shleyfman:Alexander", "Alexander Tuisov.....http://dblp.org/pers/hd/t/Tuisov:Alexander", "Carmel Domshlak.....http://dblp.org/pers/hd/d/Domshlak:Carmel"], "pages" : 7} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"priority": {"type": "integer"}, "comments": {"type": "boolean"}, "reminders": {"type": "boolean"}, "selections": {"type": "boolean"}, "verseEdits": {"type": "boolean"}, "contextId": {"type": "object", "properties": {"information": {"type": "string"}, "reference": {"type": "object", "properties": {"bookId": {"type": "string"}, "chapter": {"type": "integer"}, "verse": {"type": "integer"}}, "required": ["bookId", "chapter", "verse"]}, "tool": {"type": "string"}, "groupId": {"type": "string"}, "quote": {"type": "string"}, "occurrence": {"type": "integer"}}, "required": ["information", "reference", "tool", "groupId", "quote", "occurrence"]}}, "required": ["priority", "comments", "reminders", "selections", "verseEdits", "contextId"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"priority" : 1, "comments" : false, "reminders" : false, "selections" : false, "verseEdits" : false, "contextId" : {"information" : "Paul uses this question to tell how he feels about the situation he wrote about in [[:en:bible:notes:php:01:15|15-17]]. Possible meanings are 1) this is an idiom that means \"It does not matter.\" or 2) the words \"shall I think about this\" are understood as part of the question. AT: \"What then shall I think about this?\" or \"This is what I think about it\" (See: [[:en:ta:vol1:translate:figs_rquestion]] and [[:en:ta:vol2:translate:figs_ellipsis]])\n ", "reference" : {"bookId" : "php", "chapter" : 1, "verse" : 18}, "tool" : "translationNotes", "groupId" : "figs_rquestion", "quote" : "What then?", "occurrence" : 1}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"priority": {"type": "integer"}, "comments": {"type": "boolean"}, "reminders": {"type": "boolean"}, "selections": {"type": "boolean"}, "verseEdits": {"type": "boolean"}, "contextId": {"type": "object", "properties": {"information": {"type": "string"}, "reference": {"type": "object", "properties": {"bookId": {"type": "string"}, "chapter": {"type": "integer"}, "verse": {"type": "integer"}}, "required": ["bookId", "chapter", "verse"]}, "tool": {"type": "string"}, "groupId": {"type": "string"}, "quote": {"type": "string"}, "occurrence": {"type": "integer"}}, "required": ["information", "reference", "tool", "groupId", "quote", "occurrence"]}}, "required": ["priority", "comments", "reminders", "selections", "verseEdits", "contextId"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"devDomain": {"type": "string"}, "devSlogan": {"type": "string"}, "devLogoPath": {"type": "string"}}, "required": ["devDomain", "devSlogan", "devLogoPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"devDomain" : "www.anuSight.com", "devSlogan" : "Internet Marketing Experts", "devLogoPath" : "anuSight_transLogo.png"} | json_instruct | {"type": "object", "properties": {"devDomain": {"type": "string"}, "devSlogan": {"type": "string"}, "devLogoPath": {"type": "string"}}, "required": ["devDomain", "devSlogan", "devLogoPath"], "$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": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"results" : [{"tech" : 4, "pts" : 34, "connections" : 2442, "capacity" : 315795, "investments" : 770539}, {"tech" : 3, "pts" : 1187, "connections" : 41536, "capacity" : 8696117, "investments" : 47828701}, {"tech" : 5, "pts" : 993, "connections" : 49872, "capacity" : 10451314, "investments" : 59820628}, {"tech" : 1, "pts" : 878, "connections" : 79116, "capacity" : 5394407, "investments" : 265608170}, {"tech" : 7, "pts" : 12, "connections" : 744, "capacity" : 67238, "investments" : 793797}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "phone": {"type": "string"}, "email": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "state": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "phone", "email", "programs", "state", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Grundschule Osterwald", "id" : "NI-8096-0", "address" : "Robert-Koch-Str. 110, 30826\u00a0Garbsen", "school_type" : "Grundschule", "phone" : "05131 448880", "email" : "mail@gs-garbsen-osterwald.de", "programs" : {"programs" : []}, "state" : "NI", "lon" : 9.581195, "lat" : 52.456982} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "phone": {"type": "string"}, "email": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "state": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "phone", "email", "programs", "state", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"artist_id" : "AR354L71187B9B9FBD", "artist_latitude" : null, "artist_location" : "", "artist_longitude" : null, "artist_name" : "Martin O'Donnell And Michael Salvatori", "duration" : 154.48771, "num_songs" : 1, "song_id" : "SOIOVMD12A8C144DC7", "title" : "Heretic_ Hero", "year" : 0} | json_instruct | {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$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": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"p" : "b8edc72b-3309-4eba-8418-55e7adaf4167", "d" : 265}, {"p" : "96c02f9c-d0a4-4368-b6fe-4c9469504b9e", "d" : 79}, {"p" : "b496fe6d-6c55-4ea5-8e83-e1e40645f62b", "d" : 66}, {"p" : "1953a8cc-a7e7-441b-82ec-a1435050ea8d", "d" : 88}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@angular/core": {"type": "string"}, "@angular/material": {"type": "string"}, "rxjs": {"type": "string"}}, "required": ["@angular/core", "@angular/material", "rxjs"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mat-named-tabs", "version" : "0.1.7", "description" : "Angular material design named tabs", "main" : "index.ts", "scripts" : {"build" : "tsc -p tsconfig.json"}, "repository" : {"type" : "git", "url" : "git+https://github.com/asv2001/mat-named-tabs.git"}, "keywords" : ["angular", "angular 2", "angular 4", "angular 5", "angular 6", "angular 7", "angular 8", "angular 9", "material design", "angular material design", "MatTab", "MatTabGroup", "selectedTab", "selectedTabName", "selectedTabId", "selectedIndex", "selectedId", "selectedName"], "author" : "Anton Sinelnyk", "license" : "MIT", "bugs" : {"url" : "https://github.com/asv2001/mat-named-tabs/issues"}, "homepage" : "https://github.com/asv2001/mat-named-tabs", "devDependencies" : {"@angular/core" : "*", "@angular/material" : "*", "rxjs" : "*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@angular/core": {"type": "string"}, "@angular/material": {"type": "string"}, "rxjs": {"type": "string"}}, "required": ["@angular/core", "@angular/material", "rxjs"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"ccaa": {"type": "string"}, "fecha": {"type": "number"}, "avanceDiario": {"type": "integer"}, "avanceAcumulado": {"type": "integer"}, "dosisRecibidas": {"type": "integer"}, "dosisPrimerasAdministradas": {"type": "integer"}, "dosisSegundasAdministradas": {"type": "integer"}}, "required": ["ccaa", "fecha", "avanceDiario", "avanceAcumulado", "dosisRecibidas", "dosisPrimerasAdministradas", "dosisSegundasAdministradas"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"ccaa" : "Totales", "fecha" : 44232.79162037037, "avanceDiario" : 9837, "avanceAcumulado" : 710198, "dosisRecibidas" : 766350, "dosisPrimerasAdministradas" : 619641, "dosisSegundasAdministradas" : 73100}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"ccaa": {"type": "string"}, "fecha": {"type": "number"}, "avanceDiario": {"type": "integer"}, "avanceAcumulado": {"type": "integer"}, "dosisRecibidas": {"type": "integer"}, "dosisPrimerasAdministradas": {"type": "integer"}, "dosisSegundasAdministradas": {"type": "integer"}}, "required": ["ccaa", "fecha", "avanceDiario", "avanceAcumulado", "dosisRecibidas", "dosisPrimerasAdministradas", "dosisSegundasAdministradas"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "cleanup": {"type": "string"}, "cleanup-build": {"type": "string"}}, "required": ["start", "cleanup", "cleanup-build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"discord.js": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "winston": {"type": "string"}}, "required": ["discord.js", "dotenv", "express", "winston"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/express", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "sokobot-dos", "version" : "1.0.0", "description" : "", "main" : "start.js", "scripts" : {"start" : "node start.js", "cleanup" : "rm -r logs", "cleanup-build" : "rm -r dist"}, "author" : "LittleKitacho", "license" : "MIT", "dependencies" : {"discord.js" : "^13.3.1", "dotenv" : "^10.0.0", "express" : "^4.17.1", "winston" : "^3.3.3"}, "devDependencies" : {"@types/express" : "^4.17.13", "@typescript-eslint/eslint-plugin" : "^4.29.1", "@typescript-eslint/parser" : "^4.29.1", "typescript" : "^4.3.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "cleanup": {"type": "string"}, "cleanup-build": {"type": "string"}}, "required": ["start", "cleanup", "cleanup-build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"discord.js": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "winston": {"type": "string"}}, "required": ["discord.js", "dotenv", "express", "winston"]}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/express", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$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": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[452.70762568294447, 539.6639172419634], [450.5899686586761, 524.840318072085], [461.1782537800179, 505.78140485366976], [467.53122485282296, 490.9578056837913], [478.1195099741647, 482.48717758671796], [501.4137372411165, 478.25186353818117], [516.237336410995, 467.6635784168395], [518.3549934352634, 446.487008174156], [501.4137372411165, 435.89872305281415], [484.4724810469697, 429.5457519800091], [476.0018529498963, 412.60449578586235], [461.1782537800179, 406.2515247130573], [444.23699758587105, 393.5455825674471], [425.17808436745594, 389.31026851891056], [399.7662000762357, 385.07495447037377], [387.0602579306256, 389.31026851891056], [365.88368768794214, 399.8985536402522], [361.6483736394054, 414.72215281013064], [359.53071661513707, 429.5457519800091], [353.177745542332, 444.3693511498875], [342.5894604209903, 459.19295031976594], [332.00117529964854, 471.8988924653761]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "module": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "devDependencies": {"type": "object", "properties": {"ava": {"type": "string"}, "browser-env": {"type": "string"}, "rollup": {"type": "string"}}, "required": ["ava", "browser-env", "rollup"]}}, "required": ["name", "version", "description", "repository", "main", "module", "scripts", "author", "keywords", "license", "bugs", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "blingblingjs", "version" : "2.1.0", "description" : "like bling.js, but more bling", "repository" : {"type" : "git", "url" : "https://github.com/argyleink/blingblingjs.git"}, "main" : "dist/index.js", "module" : "src/index.js", "scripts" : {"test" : "npm run build && ava -v", "build" : "rollup src/index.js --format umd --name '$' --file dist/index.js"}, "author" : "argyleink", "keywords" : ["javascript", "utility", "jquery-like", "es6"], "license" : "MIT", "bugs" : {"url" : "https://github.com/argyleink/blingblingjs/issues"}, "devDependencies" : {"ava" : "^1.4.1", "browser-env" : "^3.2.6", "rollup" : "^1.9.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "module": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "devDependencies": {"type": "object", "properties": {"ava": {"type": "string"}, "browser-env": {"type": "string"}, "rollup": {"type": "string"}}, "required": ["ava", "browser-env", "rollup"]}}, "required": ["name", "version", "description", "repository", "main", "module", "scripts", "author", "keywords", "license", "bugs", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"class_name": {"type": "string"}, "bbox": {"type": "string"}, "used": {"type": "boolean"}}, "required": ["class_name", "bbox", "used"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"class_name" : "bubbles", "bbox" : "150 245 176 267", "used" : false}, {"class_name" : "bubbles", "bbox" : "169 215 202 255", "used" : false}, {"class_name" : "bubbles", "bbox" : "198 203 220 229", "used" : false}, {"class_name" : "bubbles", "bbox" : "57 262 93 317", "used" : false}, {"class_name" : "bubbles", "bbox" : "110 306 160 345", "used" : false}, {"class_name" : "bubbles", "bbox" : "211 258 288 361", "used" : true}, {"class_name" : "bubbles", "bbox" : "184 368 210 396", "used" : false}, {"class_name" : "bubbles", "bbox" : "250 428 276 456", "used" : false}, {"class_name" : "bubbles", "bbox" : "219 401 239 430", "used" : false}, {"class_name" : "bubbles", "bbox" : "126 165 154 191", "used" : true}, {"class_name" : "bubbles", "bbox" : "47 191 73 223", "used" : false}, {"class_name" : "bubbles", "bbox" : "146 37 289 155", "used" : true}, {"class_name" : "bubbles", "bbox" : "293 8 331 44", "used" : false}, {"class_name" : "specularity", "bbox" : "379 468 395 489", "used" : false}, {"class_name" : "specularity", "bbox" : "57 380 96 421", "used" : false}, {"class_name" : "specularity", "bbox" : "22 425 61 458", "used" : false}, {"class_name" : "specularity", "bbox" : "33 320 71 348", "used" : false}, {"class_name" : "specularity", "bbox" : "12 350 40 378", "used" : true}, {"class_name" : "specularity", "bbox" : "101 269 184 327", "used" : true}, {"class_name" : "specularity", "bbox" : "163 349 210 372", "used" : false}, {"class_name" : "specularity", "bbox" : "293 372 340 448", "used" : false}, {"class_name" : "specularity", "bbox" : "318 344 337 366", "used" : false}, {"class_name" : "contrast", "bbox" : "343 15 504 508", "used" : true}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"class_name": {"type": "string"}, "bbox": {"type": "string"}, "used": {"type": "boolean"}}, "required": ["class_name", "bbox", "used"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["mabolo"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "productName": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "release-server": {"type": "string"}, "pack:osx": {"type": "string"}, "pack:win": {"type": "string"}}, "required": ["start", "release-server", "pack:osx", "pack:win"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"electron-installer-squirrel-windows": {"type": "string"}, "electron-osx-sign": {"type": "string"}, "electron-packager": {"type": "string"}, "electron-prebuilt": {"type": "string"}, "electron-squirrel-startup": {"type": "string"}}, "required": ["electron-installer-squirrel-windows", "electron-osx-sign", "electron-packager", "electron-prebuilt", "electron-squirrel-startup"]}, "dependencies": {"type": "object", "properties": {"electron-squirrel-startup": {"type": "string"}, "express": {"type": "string"}, "nuts-serve": {"type": "string"}, "os": {"type": "string"}}, "required": ["electron-squirrel-startup", "express", "nuts-serve", "os"]}}, "required": ["name", "version", "private", "productName", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "electron-auto-updating-app", "version" : "0.4.0", "private" : true, "productName" : "electron-auto-updating-app", "description" : "A minimal Electron application", "main" : "main.js", "scripts" : {"start" : "NODE_ENV=development ./node_modules/.bin/electron .", "release-server" : "source .env && node release-server.js", "pack:osx" : "./node_modules/.bin/electron-packager . $npm_package_productName --app-version=$npm_package_version --version=1.0.1 --out=builds --ignore='^/builds$' --platform=darwin --arch=x64 --sign='Mac Developer: Aaron Noel De Leon (PRPG6STSG4)' --icon=icon.icns --overwrite", "pack:win" : "./node_modules/.bin/electron-packager . $npm_package_productName --app-version=$npm_package_version --version=1.0.1 --out=builds --ignore='^/builds$' --platform=win32 --arch=ia32 --version-string.CompanyName='My Company Ltd' --version-string.LegalCopyright='Copyright (C) 2016 My Company Ltd' --version-string.FileDescription=$npm_package_productName --version-string.OriginalFilename='MyApp.exe' --version-string.InternalName=$npm_package_productName --version-string.ProductName=$npm_package_productName --version-string.ProductVersion=$npm_package_version --asar=true --icon=icon.ico --overwrite"}, "repository" : {"type" : "git", "url" : "git+https://github.com/electron/electron-quick-start.git"}, "keywords" : ["Electron", "quick", "start", "tutorial"], "author" : "Nelo", "license" : "CC0-1.0", "bugs" : {"url" : "https://github.com/electron/electron-quick-start/issues"}, "homepage" : "https://github.com/electron/electron-quick-start#readme", "devDependencies" : {"electron-installer-squirrel-windows" : "^1.3.0", "electron-osx-sign" : "^0.4.0-beta4", "electron-packager" : "^5.1.1", "electron-prebuilt" : "1.0.1", "electron-squirrel-startup" : "^1.0.0"}, "dependencies" : {"electron-squirrel-startup" : "^1.0.0", "express" : "^4.14.0", "nuts-serve" : "^3.1.1", "os" : "^0.1.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "productName": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "release-server": {"type": "string"}, "pack:osx": {"type": "string"}, "pack:win": {"type": "string"}}, "required": ["start", "release-server", "pack:osx", "pack:win"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"electron-installer-squirrel-windows": {"type": "string"}, "electron-osx-sign": {"type": "string"}, "electron-packager": {"type": "string"}, "electron-prebuilt": {"type": "string"}, "electron-squirrel-startup": {"type": "string"}}, "required": ["electron-installer-squirrel-windows", "electron-osx-sign", "electron-packager", "electron-prebuilt", "electron-squirrel-startup"]}, "dependencies": {"type": "object", "properties": {"electron-squirrel-startup": {"type": "string"}, "express": {"type": "string"}, "nuts-serve": {"type": "string"}, "os": {"type": "string"}}, "required": ["electron-squirrel-startup", "express", "nuts-serve", "os"]}}, "required": ["name", "version", "private", "productName", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "lang": {"type": "string"}, "dir": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}, "purpose": {"type": "string"}}, "required": ["src", "sizes", "type", "purpose"]}}, "start_url": {"type": "string"}, "display": {"type": "string"}, "background_color": {"type": "string"}, "theme_color": {"type": "string"}, "screenshots": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}}, "required": ["short_name", "name", "description", "lang", "dir", "icons", "start_url", "display", "background_color", "theme_color", "screenshots"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"short_name" : "TendieCalc", "name" : "TendieCalc", "description" : "A calculator to quantify your future tendies", "lang" : "en-US", "dir" : "ltr", "icons" : [{"src" : "/favicon/android-chrome-512x512.png", "sizes" : "512x512", "type" : "image/png", "purpose" : "any maskable"}, {"src" : "/favicon/android-chrome-192x192.png", "sizes" : "192x192", "type" : "image/png", "purpose" : "any maskable"}, {"src" : "/favicon/favicon-32x32.png", "sizes" : "32x32", "type" : "image/png", "purpose" : "any maskable"}, {"src" : "/favicon/favicon-16x16.png", "sizes" : "16x16", "type" : "image/png", "purpose" : "any maskable"}], "start_url" : "/", "display" : "fullscreen", "background_color" : "#161615", "theme_color" : "#daa144", "screenshots" : [{"src" : "screenshot.png", "sizes" : "2560x1440", "type" : "image/png"}]} | json_instruct | {"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "lang": {"type": "string"}, "dir": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}, "purpose": {"type": "string"}}, "required": ["src", "sizes", "type", "purpose"]}}, "start_url": {"type": "string"}, "display": {"type": "string"}, "background_color": {"type": "string"}, "theme_color": {"type": "string"}, "screenshots": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}}, "required": ["short_name", "name", "description", "lang", "dir", "icons", "start_url", "display", "background_color", "theme_color", "screenshots"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"postal_code" : "04630", "place_name" : "Adolfo Ruiz Cort\u00ednes", "place_type" : "Colonia", "county" : "Coyoac\u00e1n", "state" : "Ciudad de M\u00e9xico", "city" : "Ciudad de M\u00e9xico"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "disabuse", "definition" : "To set free from mistakes; to undeceive; to disengage from fallacy or deception; to set right. To undeceive and disabuse the people. South. If men are now sufficiently enlightened to disabuse themselves or artifice, hypocrisy, and superstition, they will consider this event as an era in their history. J. Adams."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"abstract": {"type": "string"}, "author": {"type": "string"}, "date": {"type": "integer"}, "doi": {"type": "string"}, "identifiers": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "title": {"type": "string"}, "funding": {"type": "array", "items": {"type": "object", "properties": {"award-group": {"type": "array", "items": {}}, "funding-statement": {"type": "string"}}, "required": ["award-group", "funding-statement"]}}}, "required": ["abstract", "author", "date", "doi", "identifiers", "title", "funding"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"abstract" : "With the global outbreak of the novel coronavirus disease 2019, the demand for testing rapidly increased and quickly exceeded the testing capacities for many laboratories. Clinical tests which receive CE and FDA authorizations cannot always be tested thoroughly in a real-world environment. Here we demonstrate the long-term stability of nasopharyngeal swab specimens for SARS-CoV-2 molecular testing across three assays recently approved by the U.S. FDA under Emergency Use Authorization. This study demonstrates that nasopharyngeal swab specimens can be stored under refrigeration or even ambient conditions for 21 days without clinically impacting the results of the real-time RT-PCR testing.", "author" : "D. Yitzchak Goldstein; Jaffar Sulail; Wendy Szymczak; Momka Narlieva; Karin A Skalina; Amy S. Fox; Eunkyu Hahm", "date" : 2020, "doi" : "10.1101/2020.05.16.20104158", "identifiers" : {"url" : "http://medrxiv.org/cgi/content/short/2020.05.16.20104158"}, "title" : "Extended Storage of SARS-CoV2 Nasopharyngeal Swabs Does Not Negatively Impact Results of Molecular-Based Testing", "funding" : [{"award-group" : [], "funding-statement" : "No external funding was used for this project."}]} | json_instruct | {"type": "object", "properties": {"abstract": {"type": "string"}, "author": {"type": "string"}, "date": {"type": "integer"}, "doi": {"type": "string"}, "identifiers": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "title": {"type": "string"}, "funding": {"type": "array", "items": {"type": "object", "properties": {"award-group": {"type": "array", "items": {}}, "funding-statement": {"type": "string"}}, "required": ["award-group", "funding-statement"]}}}, "required": ["abstract", "author", "date", "doi", "identifiers", "title", "funding"], "$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": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1998, 5], [2003, 5], [2005, 5], [2006, 5]] | 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": {"remainingRequest": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "mtime": {"type": "integer"}}, "required": ["path", "mtime"]}}, "contextDependencies": {"type": "array", "items": {}}, "result": {"type": "array", "items": {"type": "string"}}}, "required": ["remainingRequest", "dependencies", "contextDependencies", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"remainingRequest" : "C:\\Users\\Luca\\Desktop\\proyecto ahk\\auth0\\01-login\\node_modules\\vue-loader\\lib\\loaders\\templateLoader.js??vue-loader-options!C:\\Users\\Luca\\Desktop\\proyecto ahk\\auth0\\01-login\\node_modules\\cache-loader\\dist\\cjs.js??ref--0-0!C:\\Users\\Luca\\Desktop\\proyecto ahk\\auth0\\01-login\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!C:\\Users\\Luca\\Desktop\\proyecto ahk\\auth0\\01-login\\src\\App.vue?vue&type=template&id=4f0e57c2&", "dependencies" : [{"path" : "C:\\Users\\Luca\\Desktop\\proyecto ahk\\auth0\\01-login\\src\\App.vue", "mtime" : 1582748682000}, {"path" : "C:\\Users\\Luca\\Desktop\\proyecto ahk\\auth0\\01-login\\node_modules\\cache-loader\\dist\\cjs.js", "mtime" : 499162500000}, {"path" : "C:\\Users\\Luca\\Desktop\\proyecto ahk\\auth0\\01-login\\node_modules\\vue-loader\\lib\\loaders\\templateLoader.js", "mtime" : 499162500000}, {"path" : "C:\\Users\\Luca\\Desktop\\proyecto ahk\\auth0\\01-login\\node_modules\\cache-loader\\dist\\cjs.js", "mtime" : 499162500000}, {"path" : "C:\\Users\\Luca\\Desktop\\proyecto ahk\\auth0\\01-login\\node_modules\\vue-loader\\lib\\index.js", "mtime" : 499162500000}], "contextDependencies" : [], "result" : ["var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"d-flex flex-column h-100\",attrs:{\"id\":\"app\"}},[_c('nav-bar'),_c('div',{staticClass:\"container flex-grow-1\"},[_c('error'),_c('div',{staticClass:\"mt-5\"},[_c('router-view')],1)],1),_vm._m(0)],1)}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('footer',{staticClass:\"bg-light text-center p-3\"},[_c('div',{staticClass:\"logo\"}),_c('p',[_vm._v(\"\\n Sample project provided by\\n \"),_c('a',{attrs:{\"href\":\"https://auth0.com\"}},[_vm._v(\"Auth0\")])])])}]\n\nexport { render, staticRenderFns }"]} | json_instruct | {"type": "object", "properties": {"remainingRequest": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "mtime": {"type": "integer"}}, "required": ["path", "mtime"]}}, "contextDependencies": {"type": "array", "items": {}}, "result": {"type": "array", "items": {"type": "string"}}}, "required": ["remainingRequest", "dependencies", "contextDependencies", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"easing/EasePack.min.js": {"type": "string"}, "jquery.gsap.min.js": {"type": "string"}, "plugins/AttrPlugin.min.js": {"type": "string"}, "plugins/BezierPlugin.min.js": {"type": "string"}, "plugins/ColorPropsPlugin.min.js": {"type": "string"}, "plugins/CSSPlugin.min.js": {"type": "string"}, "plugins/CSSRulePlugin.min.js": {"type": "string"}, "plugins/DirectionalRotationPlugin.min.js": {"type": "string"}, "plugins/EaselPlugin.min.js": {"type": "string"}, "plugins/EndArrayPlugin.min.js": {"type": "string"}, "plugins/KineticPlugin.min.js": {"type": "string"}, "plugins/RaphaelPlugin.min.js": {"type": "string"}, "plugins/RoundPropsPlugin.min.js": {"type": "string"}, "plugins/ScrollToPlugin.min.js": {"type": "string"}, "plugins/TextPlugin.min.js": {"type": "string"}, "TimelineLite.min.js": {"type": "string"}, "TimelineMax.min.js": {"type": "string"}, "TweenLite.min.js": {"type": "string"}, "TweenMax.min.js": {"type": "string"}, "utils/Draggable.min.js": {"type": "string"}}, "required": ["easing/EasePack.min.js", "jquery.gsap.min.js", "plugins/AttrPlugin.min.js", "plugins/BezierPlugin.min.js", "plugins/ColorPropsPlugin.min.js", "plugins/CSSPlugin.min.js", "plugins/CSSRulePlugin.min.js", "plugins/DirectionalRotationPlugin.min.js", "plugins/EaselPlugin.min.js", "plugins/EndArrayPlugin.min.js", "plugins/KineticPlugin.min.js", "plugins/RaphaelPlugin.min.js", "plugins/RoundPropsPlugin.min.js", "plugins/ScrollToPlugin.min.js", "plugins/TextPlugin.min.js", "TimelineLite.min.js", "TimelineMax.min.js", "TweenLite.min.js", "TweenMax.min.js", "utils/Draggable.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"easing/EasePack.min.js" : "sha256-nX+VHvwA9Lh05nY8ErE2G4oshhEeL6wvmqh/KpfdwUY=", "jquery.gsap.min.js" : "sha256-kOVj+F4EAzEIY7KWYNirxGyB+KMPUcqQr/HYIPA7sGg=", "plugins/AttrPlugin.min.js" : "sha256-GB7M2P5q0oi5nJYRvquRD0/FTsn1/EY/v439xX9uzYI=", "plugins/BezierPlugin.min.js" : "sha256-r0gC2TXlTPjayZnBEgdyTbJx0OyYiMfKcBdIwOvVdug=", "plugins/ColorPropsPlugin.min.js" : "sha256-pvsIe6ue7CP0WfuKzQpqCtAi2uG0wLgHDnyE59naAZA=", "plugins/CSSPlugin.min.js" : "sha256-vUoT3oOnnO5/ppbMmgvLRJWFybxsiG/Kf/RXu+Jm47A=", "plugins/CSSRulePlugin.min.js" : "sha256-UbCan4io9eVoHAJ6HO9HP96bQGdT4LkXH8Uv+Q0fGZw=", "plugins/DirectionalRotationPlugin.min.js" : "sha256-9X44hKxxkk8xkv+VmY/V0i/wKVS7f/JojivO2Z+jY78=", "plugins/EaselPlugin.min.js" : "sha256-klOlDDfNzWh7E6M5yknjOY2hjd4ik4QF8AFuV2Yqb8s=", "plugins/EndArrayPlugin.min.js" : "sha256-mAZJCZRAQUyXKlguxf/t3salWyPwrnqGqC2Wbgpj/bA=", "plugins/KineticPlugin.min.js" : "sha256-W1ukvoevv1R5WQAkv56/0P/OeTpqgUaW0X3RoZHTI6U=", "plugins/RaphaelPlugin.min.js" : "sha256-3kLxrJOrpxQK5GJYFDhWEFj6AIhxGMcbjL7G8zvFwco=", "plugins/RoundPropsPlugin.min.js" : "sha256-l8Ne6razR/fTEgmwle4p7ytYgz7/CSgtip9AfgtC8IQ=", "plugins/ScrollToPlugin.min.js" : "sha256-gGVIuEhX27OjJDoNfArtwq/WR7+WtI3pCYXflZHKSko=", "plugins/TextPlugin.min.js" : "sha256-5adDlzjjP2uk8Bn1NSi09yGk1/vu6fDCmNPgNUhNzqE=", "TimelineLite.min.js" : "sha256-1lykMOQU8G3Sjy+FVTbEDPNk4wA41dmdM9nAx3sbzUw=", "TimelineMax.min.js" : "sha256-mi3br0HX+0Ng5fHRbp1vjEfqvyy5tAbtSIHdJz8hahs=", "TweenLite.min.js" : "sha256-uBippi2BkynpSgsHfAOsBO9ms57wLZjPceq1WqBkQMg=", "TweenMax.min.js" : "sha256-Rmy+JvHscVnTzqP1Wx6HsL3dllLLVi/txG64pae8Zd8=", "utils/Draggable.min.js" : "sha256-jxRU7O4UX3KlkP1XrBFFCHX9t51leUWPg6B07pHcsZ4="} | json_instruct | {"type": "object", "properties": {"easing/EasePack.min.js": {"type": "string"}, "jquery.gsap.min.js": {"type": "string"}, "plugins/AttrPlugin.min.js": {"type": "string"}, "plugins/BezierPlugin.min.js": {"type": "string"}, "plugins/ColorPropsPlugin.min.js": {"type": "string"}, "plugins/CSSPlugin.min.js": {"type": "string"}, "plugins/CSSRulePlugin.min.js": {"type": "string"}, "plugins/DirectionalRotationPlugin.min.js": {"type": "string"}, "plugins/EaselPlugin.min.js": {"type": "string"}, "plugins/EndArrayPlugin.min.js": {"type": "string"}, "plugins/KineticPlugin.min.js": {"type": "string"}, "plugins/RaphaelPlugin.min.js": {"type": "string"}, "plugins/RoundPropsPlugin.min.js": {"type": "string"}, "plugins/ScrollToPlugin.min.js": {"type": "string"}, "plugins/TextPlugin.min.js": {"type": "string"}, "TimelineLite.min.js": {"type": "string"}, "TimelineMax.min.js": {"type": "string"}, "TweenLite.min.js": {"type": "string"}, "TweenMax.min.js": {"type": "string"}, "utils/Draggable.min.js": {"type": "string"}}, "required": ["easing/EasePack.min.js", "jquery.gsap.min.js", "plugins/AttrPlugin.min.js", "plugins/BezierPlugin.min.js", "plugins/ColorPropsPlugin.min.js", "plugins/CSSPlugin.min.js", "plugins/CSSRulePlugin.min.js", "plugins/DirectionalRotationPlugin.min.js", "plugins/EaselPlugin.min.js", "plugins/EndArrayPlugin.min.js", "plugins/KineticPlugin.min.js", "plugins/RaphaelPlugin.min.js", "plugins/RoundPropsPlugin.min.js", "plugins/ScrollToPlugin.min.js", "plugins/TextPlugin.min.js", "TimelineLite.min.js", "TimelineMax.min.js", "TweenLite.min.js", "TweenMax.min.js", "utils/Draggable.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "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": {"async": {"type": "string"}, "body-parser": {"type": "string"}, "debug": {"type": "string"}, "express": {"type": "string"}, "jade": {"type": "string"}, "jsts": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "node-uuid": {"type": "string"}, "request": {"type": "string"}, "serve-favicon": {"type": "string"}, "strongly-connected-components": {"type": "string"}, "thenBy.js": {"type": "string"}, "turf-meta": {"type": "string"}, "tv4": {"type": "string"}, "valid-url": {"type": "string"}, "voronoi": {"type": "string"}}, "required": ["async", "body-parser", "debug", "express", "jade", "jsts", "mongoose", "morgan", "node-uuid", "request", "serve-favicon", "strongly-connected-components", "thenBy.js", "turf-meta", "tv4", "valid-url", "voronoi"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "wpsjs", "version" : "1.0.0", "description" : "A simple implementation of a RESTful JSON-oriented OGC Web Processing Service using Node.js", "main" : "localhost:1337", "scripts" : {"start" : "node ./bin/www"}, "repository" : {"type" : "git", "url" : "git+https://github.com/dinizime/wpsjs.git"}, "keywords" : ["WPS", "OGC"], "author" : "Felipe Diniz", "license" : "MIT", "bugs" : {"url" : "https://github.com/dinizime/wpsjs/issues"}, "homepage" : "https://github.com/dinizime/wpsjs#readme", "dependencies" : {"async" : "^1.4.2", "body-parser" : "~1.13.2", "debug" : "~2.2.0", "express" : "~4.13.1", "jade" : "~1.11.0", "jsts" : "^0.16.0", "mongoose" : "^4.1.11", "morgan" : "~1.6.1", "node-uuid" : "^1.4.3", "request" : "^2.65.0", "serve-favicon" : "^2.3.0", "strongly-connected-components" : "^1.0.1", "thenBy.js" : "git+https://git@github.com/Teun/thenBy.js.git", "turf-meta" : "^1.0.2", "tv4" : "^1.2.7", "valid-url" : "^1.0.9", "voronoi" : "^1.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "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": {"async": {"type": "string"}, "body-parser": {"type": "string"}, "debug": {"type": "string"}, "express": {"type": "string"}, "jade": {"type": "string"}, "jsts": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "node-uuid": {"type": "string"}, "request": {"type": "string"}, "serve-favicon": {"type": "string"}, "strongly-connected-components": {"type": "string"}, "thenBy.js": {"type": "string"}, "turf-meta": {"type": "string"}, "tv4": {"type": "string"}, "valid-url": {"type": "string"}, "voronoi": {"type": "string"}}, "required": ["async", "body-parser", "debug", "express", "jade", "jsts", "mongoose", "morgan", "node-uuid", "request", "serve-favicon", "strongly-connected-components", "thenBy.js", "turf-meta", "tv4", "valid-url", "voronoi"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Pop"}, {"name" : "EDM"}, {"name" : "Electro Dance"}, {"name" : "Folk"}, {"name" : "Electropop"}, {"name" : "Soul"}, {"name" : "Disco"}, {"name" : "Christmas"}, {"name" : "Dancepop"}, {"name" : "Synthpop"}, {"name" : "Dance"}, {"name" : "Indiepop"}, {"name" : "Reggae"}, {"name" : "Electro house"}, {"name" : "Acoustic"}, {"name" : "Synthrock"}, {"name" : "Indie"}, {"name" : "R&B"}, {"name" : "Trap"}, {"name" : "Powerpop"}, {"name" : "Deephouse"}, {"name" : "Eurodance"}, {"name" : "Poprock"}, {"name" : "Progressive house"}, {"name" : "Hiphop"}, {"name" : "House"}, {"name" : "Minimal Music"}, {"name" : "Tropical house"}, {"name" : "Countrypop"}, {"name" : "Indiefolk"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "$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"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"bignumber.js": {"type": "string"}, "mocha": {"type": "string"}, "mocha-junit-reporter": {"type": "string"}, "mocha-multi-reporters": {"type": "string"}, "truffle": {"type": "string"}, "web3-providers-http": {"type": "string"}}, "required": ["bignumber.js", "mocha", "mocha-junit-reporter", "mocha-multi-reporters", "truffle", "web3-providers-http"]}, "dependencies": {"type": "object", "properties": {"truffle-hdwallet-provider": {"type": "string"}}, "required": ["truffle-hdwallet-provider"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "azure-devops", "version" : "1.0.0", "description" : "", "main" : "truffle-config.js", "directories" : {"test" : "test"}, "scripts" : {"test" : "npx truffle test", "build" : "npx truffle compile && npm test"}, "author" : "", "license" : "MIT", "devDependencies" : {"bignumber.js" : "^8.0.1", "mocha" : "^5.2.0", "mocha-junit-reporter" : "^1.18.0", "mocha-multi-reporters" : "^1.1.7", "truffle" : "^5.0.0-next.16", "web3-providers-http" : "^1.0.0-beta.36"}, "dependencies" : {"truffle-hdwallet-provider" : "^1.0.0-web3one.1"}} | 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"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"bignumber.js": {"type": "string"}, "mocha": {"type": "string"}, "mocha-junit-reporter": {"type": "string"}, "mocha-multi-reporters": {"type": "string"}, "truffle": {"type": "string"}, "web3-providers-http": {"type": "string"}}, "required": ["bignumber.js", "mocha", "mocha-junit-reporter", "mocha-multi-reporters", "truffle", "web3-providers-http"]}, "dependencies": {"type": "object", "properties": {"truffle-hdwallet-provider": {"type": "string"}}, "required": ["truffle-hdwallet-provider"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "description": {"type": "string"}, "releasenote": {"type": "string"}, "main": {"type": "string"}, "classPath": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "tags": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "contributors", "version", "description", "releasenote", "main", "classPath", "dependencies", "tags", "url", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "rhaxe", "contributors" : ["Rzial"], "version" : "0.1.0", "description" : "Haxe task runner.", "releasenote" : "Initial release", "main" : "rhaxe.Rhaxe", "classPath" : "src/main/haxe", "dependencies" : {}, "tags" : ["utility"], "url" : "https://github.com/Rzial/haxe-rhaxe/", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "description": {"type": "string"}, "releasenote": {"type": "string"}, "main": {"type": "string"}, "classPath": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "tags": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "contributors", "version", "description", "releasenote", "main", "classPath", "dependencies", "tags", "url", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "[MMD] \u30ca\u30a4\u30c8\u30fb\u30aa\u30d6\u30fb\u30ca\u30a4\u30c4 (Night of Nights) League Of Legends", "author" : "SonaMiku23", "description" : "Motion,undefinedMusic:undefinedNightundefinedofundefinedNightsundefinedbyundefinedLostiundefined(TheLostMMD)<br><aundefinedhref='https://www.youtube.com/watch?v=ECUun_-SxRw'>https://www.youtube.com/watch?v=ECUun_-SxRw</a>", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/1230487/thumbnail-1230487_0010.jpg?itok=s_5Bwe64", "download" : "https://www.iwara.tv/api/video/z3jazuxwawfk9vogl", "origin" : "https://www.iwara.tv/videos/z3jazuxwawfk9vogl"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[122.25, 20.583333333333332], [122.25, 20.666666666666668], [122.375, 20.666666666666668], [122.375, 20.583333333333332], [122.25, 20.583333333333332]]]}, "properties" : {"code" : 302272, "url" : "http://madefor.github.io/0410/api/v1/302272.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/302272.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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1242608213, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "3344c5498a12dbcf5ac300da195e313b", "wof:id" : 1242608213}, "bbox" : [9.05532, 47.54452, 9.05532, 47.54452], "geometry" : {"coordinates" : [9.05532, 47.54452], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "05", "provinceId" : "35", "regencyId" : "27", "name" : "Omben"} | 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": "object", "properties": {"course_code": {"type": "string"}, "course_name": {"type": "string"}, "faculty": {"type": "string"}, "school": {"type": "string"}, "units": {"type": "string"}, "duration": {"type": "string"}, "description": {"type": "string"}, "prerequisites": {"type": "string"}, "incompatible": {"type": "string"}, "restricted": {"type": "string"}}, "required": ["course_code", "course_name", "faculty", "school", "units", "duration", "description", "prerequisites", "incompatible", "restricted"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"course_code" : "OHSS4012", "course_name" : "Industry Placement", "faculty" : "Science", "school" : "Earth and Environment Sc Schl", "units" : "4", "duration" : "One Semester", "description" : "This industry placement courses will be taken in the final year of the Bachelor of Occupational Health and Safety Science (Hons). This course will provide real industry experience in an approved workplace. Students will be expected to be present in the workplace during normal working hours and undertake OHS related work as agreed between the workplace supervisor and the placement coordinator. Over the duration of the placement it is anticipated that the student will be exposed to a range of OHS professional competencies and will reflect upon these in a work journal.", "prerequisites" : "OHSS3001, OHSS3002, OHSS3003 and OHSS3004", "incompatible" : "", "restricted" : "Restricted to BOHSSc (Hons) students with Head of School consent"} | json_instruct | {"type": "object", "properties": {"course_code": {"type": "string"}, "course_name": {"type": "string"}, "faculty": {"type": "string"}, "school": {"type": "string"}, "units": {"type": "string"}, "duration": {"type": "string"}, "description": {"type": "string"}, "prerequisites": {"type": "string"}, "incompatible": {"type": "string"}, "restricted": {"type": "string"}}, "required": ["course_code", "course_name", "faculty", "school", "units", "duration", "description", "prerequisites", "incompatible", "restricted"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "threshold": {"type": "object", "properties": {"value": {"type": "integer"}, "hours": {"type": "integer"}}, "required": ["value", "hours"]}}, "required": ["name", "threshold"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Andy Kelp", "threshold" : {"value" : 300, "hours" : 48}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "threshold": {"type": "object", "properties": {"value": {"type": "integer"}, "hours": {"type": "integer"}}, "required": ["value", "hours"]}}, "required": ["name", "threshold"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"description": {"type": "string"}, "cc": {"type": "array", "items": {"type": "string"}}, "reviewers": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"sender": {"type": "string"}, "recipients": {"type": "array", "items": {"type": "string"}}, "text": {"type": "string"}, "disapproval": {"type": "boolean"}, "date": {"type": "string"}, "approval": {"type": "boolean"}}, "required": ["sender", "recipients", "text", "disapproval", "date", "approval"]}}, "owner_email": {"type": "string"}, "private": {"type": "boolean"}, "base_url": {"type": "string"}, "owner": {"type": "string"}, "subject": {"type": "string"}, "created": {"type": "string"}, "patchsets": {"type": "array", "items": {"type": "integer"}}, "modified": {"type": "string"}, "closed": {"type": "boolean"}, "issue": {"type": "integer"}}, "required": ["description", "cc", "reviewers", "messages", "owner_email", "private", "base_url", "owner", "subject", "created", "patchsets", "modified", "closed", "issue"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "[release-branch.r60] doc: release.r60\n\n\u00ab\u00ab\u00ab CL 4981047 / c0fea223bc90\ndoc: release.r60\n\nR=dsymonds, r, rsc\nCC=golang-dev\nhttp://codereview.appspot.com/4981047\n\u00bb\u00bb\u00bb\n", "cc" : ["golang-dev@googlegroups.com", "dsymonds@golang.org"], "reviewers" : [], "messages" : [{"sender" : "adg@golang.org", "recipients" : ["adg@golang.org", "golang-dev@googlegroups.com", "reply@codereview.appspotmail.com"], "text" : "Hello golang-dev@googlegroups.com,\n\nI'd like you to review this change to\nhttps://go.googlecode.com/hg/", "disapproval" : false, "date" : "2011-09-08 02:12:46.739859", "approval" : false}, {"sender" : "dsymonds@golang.org", "recipients" : ["adg@golang.org", "golang-dev@googlegroups.com", "dsymonds@golang.org", "reply@codereview.appspotmail.com"], "text" : "LGTM", "disapproval" : false, "date" : "2011-09-08 02:16:23.509972", "approval" : true}, {"sender" : "adg@golang.org", "recipients" : ["adg@golang.org", "golang-dev@googlegroups.com", "dsymonds@golang.org", "reply@codereview.appspotmail.com"], "text" : "*** Submitted as http://code.google.com/p/go/source/detail?r=b0819469a6df ***\n\n[release-branch.r60] doc: release.r60\n\n\u00ab\u00ab\u00ab CL 4981047 / c0fea223bc90\ndoc: release.r60\n\nR=dsymonds, r, rsc\nCC=golang-dev\nhttp://codereview.appspot.com/4981047\n\u00bb\u00bb\u00bb\n\nR=golang-dev, dsymonds\nCC=golang-dev\nhttp://codereview.appspot.com/4961072", "disapproval" : false, "date" : "2011-09-08 02:16:50.029942", "approval" : false}], "owner_email" : "adg@golang.org", "private" : false, "base_url" : "", "owner" : "adg", "subject" : "code review 4961072: [release-branch.r60] doc: release.r60", "created" : "2011-09-08 02:11:15.054110", "patchsets" : [1, 1001, 5001], "modified" : "2011-09-08 02:16:53.768981", "closed" : true, "issue" : 4961072} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "cc": {"type": "array", "items": {"type": "string"}}, "reviewers": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"sender": {"type": "string"}, "recipients": {"type": "array", "items": {"type": "string"}}, "text": {"type": "string"}, "disapproval": {"type": "boolean"}, "date": {"type": "string"}, "approval": {"type": "boolean"}}, "required": ["sender", "recipients", "text", "disapproval", "date", "approval"]}}, "owner_email": {"type": "string"}, "private": {"type": "boolean"}, "base_url": {"type": "string"}, "owner": {"type": "string"}, "subject": {"type": "string"}, "created": {"type": "string"}, "patchsets": {"type": "array", "items": {"type": "integer"}}, "modified": {"type": "string"}, "closed": {"type": "boolean"}, "issue": {"type": "integer"}}, "required": ["description", "cc", "reviewers", "messages", "owner_email", "private", "base_url", "owner", "subject", "created", "patchsets", "modified", "closed", "issue"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"status": {"type": "string"}, "publicPath": {"type": "string"}, "chunks": {"type": "object", "properties": {"app": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "publicPath": {"type": "string"}, "path": {"type": "string"}}, "required": ["name", "publicPath", "path"]}}, "djangocms_custom_admin": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "publicPath": {"type": "string"}, "path": {"type": "string"}}, "required": ["name", "publicPath", "path"]}}}, "required": ["app", "djangocms_custom_admin"]}}, "required": ["status", "publicPath", "chunks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : "done", "publicPath" : "/static/build/", "chunks" : {"app" : [{"name" : "app.css", "publicPath" : "/static/build/app.css", "path" : "/Users/florian/projects/allink-core/static/build/app..css"}, {"name" : "app.js", "publicPath" : "/static/build/app.js", "path" : "/Users/florian/projects/allink-core/static/build/app.js"}, {"name" : "app.js.map", "publicPath" : "/static/build/app.js.map", "path" : "/Users/florian/projects/allink-core/static/build/app.js.map"}], "djangocms_custom_admin" : [{"name" : "djangocms_custom_admin.7bb9f4d55e422b4447cf.css", "publicPath" : "/static/build/djangocms_custom_admin.7bb9f4d55e422b4447cf.css", "path" : "/Users/florian/projects/allink-core/static/build/djangocms_custom_admin.7bb9f4d55e422b4447cf.css"}, {"name" : "djangocms_custom_admin.js", "publicPath" : "/static/build/djangocms_custom_admin.js", "path" : "/Users/florian/projects/allink-core/static/build/djangocms_custom_admin.js"}, {"name" : "djangocms_custom_admin.js.map", "publicPath" : "/static/build/djangocms_custom_admin.js.map", "path" : "/Users/florian/projects/allink-core/static/build/djangocms_custom_admin.js.map"}]}} | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "publicPath": {"type": "string"}, "chunks": {"type": "object", "properties": {"app": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "publicPath": {"type": "string"}, "path": {"type": "string"}}, "required": ["name", "publicPath", "path"]}}, "djangocms_custom_admin": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "publicPath": {"type": "string"}, "path": {"type": "string"}}, "required": ["name", "publicPath", "path"]}}}, "required": ["app", "djangocms_custom_admin"]}}, "required": ["status", "publicPath", "chunks"], "$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"}, "status": {"type": "string"}, "applicationId": {"type": "integer"}, "clientId": {"type": "string"}, "clientSecret": {"type": "string"}, "tier": {"type": "object", "properties": {"id": {"type": "integer"}, "groupInstanceId": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "null"}, "defaultLimits": {"type": "array", "items": {"type": "object", "properties": {"visible": {"type": "boolean"}, "maximumRequests": {"type": "integer"}, "timePeriodInMilliseconds": {"type": "integer"}}, "required": ["visible", "maximumRequests", "timePeriodInMilliseconds"]}}, "status": {"type": "string"}, "autoApprove": {"type": "boolean"}}, "required": ["id", "groupInstanceId", "name", "description", "defaultLimits", "status", "autoApprove"]}}, "required": ["id", "status", "applicationId", "clientId", "clientSecret", "tier"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 384818, "status" : "APPROVED", "applicationId" : 276068, "clientId" : "13d5201f05344a4193e1fe4b14e8cb4d", "clientSecret" : "285116794aE54Fa5C23BaE03D673EB09", "tier" : {"id" : 173842, "groupInstanceId" : 1901, "name" : "Free", "description" : null, "defaultLimits" : [{"visible" : true, "maximumRequests" : 1, "timePeriodInMilliseconds" : 1000}], "status" : "ACTIVE", "autoApprove" : true}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "status": {"type": "string"}, "applicationId": {"type": "integer"}, "clientId": {"type": "string"}, "clientSecret": {"type": "string"}, "tier": {"type": "object", "properties": {"id": {"type": "integer"}, "groupInstanceId": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "null"}, "defaultLimits": {"type": "array", "items": {"type": "object", "properties": {"visible": {"type": "boolean"}, "maximumRequests": {"type": "integer"}, "timePeriodInMilliseconds": {"type": "integer"}}, "required": ["visible", "maximumRequests", "timePeriodInMilliseconds"]}}, "status": {"type": "string"}, "autoApprove": {"type": "boolean"}}, "required": ["id", "groupInstanceId", "name", "description", "defaultLimits", "status", "autoApprove"]}}, "required": ["id", "status", "applicationId", "clientId", "clientSecret", "tier"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "string"}, "blog": {"type": "string"}, "location": {"type": "string"}, "email": {"type": "null"}, "hireable": {"type": "null"}, "bio": {"type": "string"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"user" : "NatLee", "repos" : 1, "login" : "NatLee", "id" : 10178964, "avatar_url" : "https://avatars0.githubusercontent.com/u/10178964?v=3", "url" : "https://api.github.com/users/NatLee", "html_url" : "https://github.com/NatLee", "followers_url" : "https://api.github.com/users/NatLee/followers", "following_url" : "https://api.github.com/users/NatLee/following{/other_user}", "gists_url" : "https://api.github.com/users/NatLee/gists{/gist_id}", "starred_url" : "https://api.github.com/users/NatLee/starred{/owner}{/repo}", "subscriptions_url" : "https://api.github.com/users/NatLee/subscriptions", "organizations_url" : "https://api.github.com/users/NatLee/orgs", "repos_url" : "https://api.github.com/users/NatLee/repos", "events_url" : "https://api.github.com/users/NatLee/events{/privacy}", "received_events_url" : "https://api.github.com/users/NatLee/received_events", "type" : "User", "site_admin" : false, "name" : "Nat", "company" : "NTOU", "blog" : "https://NatLee.github.io", "location" : "Taipei", "email" : null, "hireable" : null, "bio" : "Hi, I'm Nat. Nothing here.", "public_repos" : 22, "public_gists" : 0, "followers" : 8, "following" : 15, "created_at" : "2014-12-13T19:03:16Z", "updated_at" : "2017-02-28T05:59:02Z"} | json_instruct | {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "string"}, "blog": {"type": "string"}, "location": {"type": "string"}, "email": {"type": "null"}, "hireable": {"type": "null"}, "bio": {"type": "string"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"version": {"type": "string"}, "extensions": {"type": "object", "properties": {"serviceBus": {"type": "object", "properties": {"messageHandlerOptions": {"type": "object", "properties": {"maxAutoRenewDuration": {"type": "string"}, "maxConcurrentCalls": {"type": "integer"}}, "required": ["maxAutoRenewDuration", "maxConcurrentCalls"]}}, "required": ["messageHandlerOptions"]}}, "required": ["serviceBus"]}}, "required": ["version", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "2.0", "extensions" : {"serviceBus" : {"messageHandlerOptions" : {"maxAutoRenewDuration" : "00:01:00", "maxConcurrentCalls" : 5}}}} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "extensions": {"type": "object", "properties": {"serviceBus": {"type": "object", "properties": {"messageHandlerOptions": {"type": "object", "properties": {"maxAutoRenewDuration": {"type": "string"}, "maxConcurrentCalls": {"type": "integer"}}, "required": ["maxAutoRenewDuration", "maxConcurrentCalls"]}}, "required": ["messageHandlerOptions"]}}, "required": ["serviceBus"]}}, "required": ["version", "extensions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "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" : 92284, "cartId" : "6db46624-8436-4718-ae17-9fe6bebffc17", "preferredProducts" : [], "productReviews" : [{"productId" : 4932, "reviewText" : "one of my hobbies is skateboarding. and when i'm skateboarding this works great.", "reviewDate" : "2019-12-27T08:50:51.7585216+02:00"}, {"productId" : 4052, "reviewText" : "I tried to grab it but got bonbon all over it.", "reviewDate" : "2019-01-04T13:29:54.7131129+02:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"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" : 75158, "cartId" : "2669803a-a30e-4cba-be9d-8aacf38c52ff", "preferredProducts" : [989, 1093, 3790, 638, 678, 4242, 4638, 199, 3110], "productReviews" : [{"productId" : 1960, "reviewText" : "i use it biweekly when i'm in my greenhouse.", "reviewDate" : "2018-04-10T23:43:04.6748993+03:00"}, {"productId" : 2297, "reviewText" : "this Intranet is complimentary.", "reviewDate" : "2018-02-13T06:40:38.5320382+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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "test-coverage": {"type": "string"}, "eslint": {"type": "string"}}, "required": ["start", "test", "test-coverage", "eslint"]}, "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": {"@turf/turf": {"type": "string"}, "amqplib": {"type": "string"}, "pg": {"type": "string"}}, "required": ["@turf/turf", "amqplib", "pg"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "jest": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "jest"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "observer-job-geofence-presence", "version" : "1.0.0", "description" : "Observer Is-Packet-In-Geofence job for the Maprox platform", "main" : "src/index.js", "scripts" : {"start" : "node .", "test" : "jest", "test-coverage" : "jest --coverage", "eslint" : "eslint ./src/**/*.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/maprox/observer-job-geofence-presence.git"}, "author" : "aintsay", "license" : "MIT", "bugs" : {"url" : "https://github.com/maprox/observer-job-geofence-presence/issues"}, "homepage" : "https://github.com/maprox/observer-job-geofence-presence#readme", "dependencies" : {"@turf/turf" : "^5.1.6", "amqplib" : "^0.6.0", "pg" : "^8.5.1"}, "devDependencies" : {"eslint" : "^7.15.0", "eslint-config-airbnb-base" : "^14.2.1", "eslint-plugin-import" : "^2.22.1", "jest" : "^26.6.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "test-coverage": {"type": "string"}, "eslint": {"type": "string"}}, "required": ["start", "test", "test-coverage", "eslint"]}, "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": {"@turf/turf": {"type": "string"}, "amqplib": {"type": "string"}, "pg": {"type": "string"}}, "required": ["@turf/turf", "amqplib", "pg"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "jest": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "jest"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "commander": {"type": "string"}, "js-beautify": {"type": "string"}, "jsdom": {"type": "string"}}, "required": ["chalk", "commander", "js-beautify", "jsdom"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "_resolved": {"type": "string"}, "_integrity": {"type": "string"}, "_from": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "repository", "_resolved", "_integrity", "_from"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@coreui/svg-injector", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Lukasz Holeczek", "license" : "MIT", "dependencies" : {"chalk" : "^2.4.2", "commander" : "^3.0.2", "js-beautify" : "^1.10.2", "jsdom" : "^15.2.0"}, "repository" : {"type" : "git", "url" : "https://github.com/@coreui/coreui-svg-injector.git"}, "_resolved" : "https://registry.npmjs.org/@coreui/svg-injector/-/svg-injector-1.0.0.tgz", "_integrity" : "sha512-W2HPN7So8y+O35ClHmzpRPn1vSYwH4hV+mVTGf1ui+3U6mvU0CyvyilAizbADrBMRuPU6WbDTKI4QADHA/qhJA==", "_from" : "@coreui/svg-injector@1.0.0"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "commander": {"type": "string"}, "js-beautify": {"type": "string"}, "jsdom": {"type": "string"}}, "required": ["chalk", "commander", "js-beautify", "jsdom"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "_resolved": {"type": "string"}, "_integrity": {"type": "string"}, "_from": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "repository", "_resolved", "_integrity", "_from"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2021-04-12T03:00:00Z", "Temp" : 7.6, "RelHum" : 85, "WindSpeed" : 0.7, "WindDir" : 288} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["service", "build", "cleaning", "building", "maintenance", "facilities", "management", "grounds", "services", "trade", "waste", "services", "health", "safety", "contact", "-PRON-", "late", "news", "welcome", "suffolk", "coastal", "norse", "suffolk", "coastal", "norse", "subsidiary", "norse", "commercial", "services", "uk", "dynamic", "fast", "grow", "service", "provider", "-PRON-", "provide", "comprehensive", "range", "frontline", "contract", "facility", "management", "service", "public", "private", "sector", "client", "eastern", "central", "suffolk", "building", "clean", "building", "maintenance", "facilities", "management", "grounds", "services", "trade", "waste", "services", "visit", "norse", "commercial", "services", "website", "visit", "norse", "group", "website", "latest", "blog", "grounds", "blog", "update", "late", "blog", "richard", "hackney", "grounds", "operations", "manager", "suffolk", "coastal", "norse", "waveney", "norse", "look", "current", "ground", "maintenance", "activity", "latest", "news", "sign", "monthly", "newsletter", "detail", "late", "contract", "award", "activity", "quote", "waste", "collection", "request", "quotation", "address", "suffolk", "coastal", "norse", "limited", "ufford", "park", "offices", "yarmouth", "road", "ufford", "woodbridge", "suffolk", "sitemap", "privacy", "policy", "pay", "equality", "email", "tel", " Trade Waste Services Health & Safety Contact Us", "Suffolk Coastal Norse", "Suffolk Coastal Norse", "Norse Commercial Services", "Building Cleaning ", "Norse Commercial Services", "Visit Norse Group", "Latest Blog", "Richard Hackney", "Grounds Operations", "Suffolk Coastal Norse", "Waveney Norse", "Latest News ", "Suffolk Coastal Norse Limited", "Ufford Park Offices", "Yarmouth Road\nUfford", "Sitemap ", "Policy Pay", "Equality Email", "01394 444000"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 8, "n_trials" : 210, "objective" : "markowitz_analytic_on_cube", "white" : "platypus_genetic", "black" : "platypus_evolutionary", "traceback" : ["passing", "passing"], "best_val" : [1.0187538749444485, 1.0597540843881081], "best_x" : [[0.26625530073764114, 0.27671522177359287, 0.5735062969801663, 0.2265183103418103, 0.20035716848294605, 0.14876713553363397, 0.0488303655172756, 0.029582461350130207], [0.4690295068315925, 0.22008963066236742, 0.04992291042274677, 0.0658844198065428, 0.4623532154265041, 0.47439311851956356, 0.04131831112615314, 0.1794693664653736]], "feval_count" : [200, 200], "n_trials_instructed" : [147, 200], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "platypus_genetic", "loser" : "platypus_evolutionary"} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "weburl": {"type": "string"}, "desctext": {"type": "string"}}, "required": ["title", "weburl", "desctext"]}}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : [{"title" : "\u4e2d\u56fd\u7814\u7a76\u751f\u62db\u751f\u4fe1\u606f\u7f51", "weburl" : "https://yz.chsi.com.cn/", "desctext" : ""}, {"title" : "\u8003\u7814\u4fe1\u606f\u7f51", "weburl" : "http://www.chinakaoyan.com/", "desctext" : ""}, {"title" : "\u8003\u7814\u9662\u6821\u5e93", "weburl" : "https://college.koolearn.com/fen/pc/", "desctext" : ""}, {"title" : "\u8003\u7814\u62a5\u5f55\u6bd4", "weburl" : "http://www.chinakaoyan.com/baolubi/", "desctext" : ""}, {"title" : "\u5c0f\u6728\u866b\u8003\u7814", "weburl" : "http://muchong.com/bbs/logging.php?action=login", "desctext" : ""}, {"title" : "Free\u8003\u7814\u8bba\u575b", "weburl" : "http://bbs.freekaoyan.com/forum.php", "desctext" : ""}, {"title" : "\u8003\u7814\u8d44\u6599-\u91d1\u699c\u9898\u540d", "weburl" : "http://qzbltushu.ys168.com/", "desctext" : ""}, {"title" : "\u8003\u7814\u8d44\u6599-\u5b89\u5fc3\u8003\u7814", "weburl" : "http://axky.ys168.com/", "desctext" : ""}, {"title" : "\u8003\u7814\u5e2e", "weburl" : "http://download.kaoyan.com/", "desctext" : ""}, {"title" : "\u65b0\u4e1c\u65b9-\u8003\u7814", "weburl" : "http://kaoyan.xdf.cn/", "desctext" : ""}, {"title" : "\u738b\u9053\u8003\u7814", "weburl" : "http://www.cskaoyan.com/forum.php", "desctext" : ""}]} | json_instruct | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "weburl": {"type": "string"}, "desctext": {"type": "string"}}, "required": ["title", "weburl", "desctext"]}}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"html.format.wrapAttributes": {"type": "string"}}, "required": ["html.format.wrapAttributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"html.format.wrapAttributes" : "force-aligned"} | json_instruct | {"type": "object", "properties": {"html.format.wrapAttributes": {"type": "string"}}, "required": ["html.format.wrapAttributes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"commandString": {"type": "string"}, "queryStart": {"type": "string"}, "queryEnd": {"type": "string"}, "iteration": {"type": "integer"}, "startTime": {"type": "string"}, "endTime": {"type": "string"}, "result": {"type": "object", "properties": {"params": {"type": "string"}, "endBalance": {"type": "integer"}, "buyHold": {"type": "integer"}, "vsBuyHold": {"type": "integer"}, "lastAssestValue": {"type": "integer"}, "assetPriceLastBuy": {"type": "integer"}, "wins": {"type": "integer"}, "losses": {"type": "integer"}, "errorRate": {"type": "integer"}, "days": {"type": "integer"}, "period_length": {"type": "integer"}, "min_periods": {"type": "integer"}, "markdown_buy_pct": {"type": "integer"}, "markup_sell_pct": {"type": "integer"}, "order_type": {"type": "string"}, "wlRatio": {"type": "string"}, "roi": {"type": "integer"}, "selector": {"type": "string"}, "strategy": {"type": "string"}, "frequency": {"type": "integer"}, "assetCapital": {"type": "integer"}, "startCapital": {"type": "integer"}, "profit": {"type": "integer"}}, "required": ["params", "endBalance", "buyHold", "vsBuyHold", "lastAssestValue", "assetPriceLastBuy", "wins", "losses", "errorRate", "days", "period_length", "min_periods", "markdown_buy_pct", "markup_sell_pct", "order_type", "wlRatio", "roi", "selector", "strategy", "frequency", "assetCapital", "startCapital", "profit"]}}, "required": ["commandString", "queryStart", "queryEnd", "iteration", "startTime", "endTime", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"commandString" : "zenbot.bat sim binanceus.BTC-USD --period_length=24m --markdown_buy_pct=4.307497432766639 --markup_sell_pct=1.3227012315783333 --order_type=taker --sell_stop_pct=20 --buy_stop_pct=43 --profit_stop_enable_pct=12 --profit_stop_pct=3 --bollinger_size=12 --bollinger_time=4.019055604719768 --bollinger_upper_bound_pct=0.5919307245237728 --bollinger_lower_bound_pct=7.083391529213953 --backtester_generation=28 --strategy=bollinger --days=14 --runGenerations=5 --currency_capital=500 --filename=none", "queryStart" : "2020-10-19T04:48:00.000Z", "queryEnd" : "2020-11-02T07:04:20.355Z", "iteration" : 28, "startTime" : "2020-11-02T07:04:20.376Z", "endTime" : "2020-11-02T07:04:51.610Z", "result" : {"params" : "module.exports = {}", "endBalance" : 0, "buyHold" : 0, "vsBuyHold" : 0, "lastAssestValue" : 0, "assetPriceLastBuy" : 0, "wins" : 0, "losses" : -1, "errorRate" : 100, "days" : 0, "period_length" : 0, "min_periods" : 0, "markdown_buy_pct" : 0, "markup_sell_pct" : 0, "order_type" : "maker", "wlRatio" : "Infinity", "roi" : -1000, "selector" : "binanceus.BTC-USD", "strategy" : "bollinger", "frequency" : 0, "assetCapital" : 0, "startCapital" : 0, "profit" : 0}} | json_instruct | {"type": "object", "properties": {"commandString": {"type": "string"}, "queryStart": {"type": "string"}, "queryEnd": {"type": "string"}, "iteration": {"type": "integer"}, "startTime": {"type": "string"}, "endTime": {"type": "string"}, "result": {"type": "object", "properties": {"params": {"type": "string"}, "endBalance": {"type": "integer"}, "buyHold": {"type": "integer"}, "vsBuyHold": {"type": "integer"}, "lastAssestValue": {"type": "integer"}, "assetPriceLastBuy": {"type": "integer"}, "wins": {"type": "integer"}, "losses": {"type": "integer"}, "errorRate": {"type": "integer"}, "days": {"type": "integer"}, "period_length": {"type": "integer"}, "min_periods": {"type": "integer"}, "markdown_buy_pct": {"type": "integer"}, "markup_sell_pct": {"type": "integer"}, "order_type": {"type": "string"}, "wlRatio": {"type": "string"}, "roi": {"type": "integer"}, "selector": {"type": "string"}, "strategy": {"type": "string"}, "frequency": {"type": "integer"}, "assetCapital": {"type": "integer"}, "startCapital": {"type": "integer"}, "profit": {"type": "integer"}}, "required": ["params", "endBalance", "buyHold", "vsBuyHold", "lastAssestValue", "assetPriceLastBuy", "wins", "losses", "errorRate", "days", "period_length", "min_periods", "markdown_buy_pct", "markup_sell_pct", "order_type", "wlRatio", "roi", "selector", "strategy", "frequency", "assetCapital", "startCapital", "profit"]}}, "required": ["commandString", "queryStart", "queryEnd", "iteration", "startTime", "endTime", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"require": {"type": "object", "properties": {"jenssegers/blade": {"type": "string"}, "vlucas/phpdotenv": {"type": "string"}}, "required": ["jenssegers/blade", "vlucas/phpdotenv"]}, "autoload": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}}, "required": ["files"]}}, "required": ["require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"require" : {"jenssegers/blade" : "^1.1", "vlucas/phpdotenv" : "^2.4"}, "autoload" : {"files" : ["helpers/helpers.php"]}} | json_instruct | {"type": "object", "properties": {"require": {"type": "object", "properties": {"jenssegers/blade": {"type": "string"}, "vlucas/phpdotenv": {"type": "string"}}, "required": ["jenssegers/blade", "vlucas/phpdotenv"]}, "autoload": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}}, "required": ["files"]}}, "required": ["require", "autoload"], "$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" : "gobber2:item/gobber2_bow_nether", "textures" : {"layer0" : "gobber2:item/gobber2_bow_nether_pulling_0"}} | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "repository": {"type": "string"}, "bugs": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/polyfill": {"type": "string"}, "@tweenjs/tween.js": {"type": "string"}, "events": {"type": "string"}, "howler": {"type": "string"}, "three": {"type": "string"}}, "required": ["@babel/polyfill", "@tweenjs/tween.js", "events", "howler", "three"]}, "devDependencies": {"type": "object", "properties": {"cssnano": {"type": "string"}, "sass": {"type": "string"}}, "required": ["cssnano", "sass"]}}, "required": ["private", "name", "version", "description", "author", "license", "scripts", "repository", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"private" : true, "name" : "au", "version" : "0.1.0", "description" : "", "author" : "Jonathan Olaleye", "license" : "MIT", "scripts" : {"start" : "parcel index.html --out-dir build", "build" : "parcel build index.html --out-dir build"}, "repository" : "github:jolaleye/au", "bugs" : "https://github.com/jolaleye/au/issues", "homepage" : "https://github.com/jolaleye/au#readme", "dependencies" : {"@babel/polyfill" : "^7.2.5", "@tweenjs/tween.js" : "^17.2.0", "events" : "^3.0.0", "howler" : "^2.1.1", "three" : "^0.99.0"}, "devDependencies" : {"cssnano" : "^4.1.8", "sass" : "^1.15.2"}} | json_instruct | {"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "repository": {"type": "string"}, "bugs": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/polyfill": {"type": "string"}, "@tweenjs/tween.js": {"type": "string"}, "events": {"type": "string"}, "howler": {"type": "string"}, "three": {"type": "string"}}, "required": ["@babel/polyfill", "@tweenjs/tween.js", "events", "howler", "three"]}, "devDependencies": {"type": "object", "properties": {"cssnano": {"type": "string"}, "sass": {"type": "string"}}, "required": ["cssnano", "sass"]}}, "required": ["private", "name", "version", "description", "author", "license", "scripts", "repository", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[3.0, 6.0, 9.0, 12.0, 15.0, 18.0, 21.0, 24.0, 27.0, 30.0, 33.0, 36.0, 39.0, 42.0, 45.0, 48.0, 51.0, 54.0, 57.0, 60.0, 63.0, 66.0, 69.0, 72.0, 75.0, 78.0, 81.0, 84.0, 87.0, 90.0, 93.0, 96.0, 99.0, 102.0, 105.0, 108.0, 111.0, 114.0, 117.0, 120.0, 123.0, 126.0, 129.0, 132.0, 135.0, 138.0, 141.0, 144.0, 147.0, 150.0, 153.0, 156.0, 159.0, 162.0, 165.0, 168.0, 171.0, 174.0, 177.0, 180.0, 183.0, 186.0, 189.0, 192.0, 195.0, 198.0, 201.0, 204.0, 207.0, 210.0, 213.0, 216.0, 219.0, 222.0, 225.0, 228.0, 231.0, 234.0, 237.0, 240.0, 243.0, 246.0, 249.0, 252.0, 255.0, 258.0, 261.0, 264.0, 267.0, 270.0, 273.0, 276.0, 279.0, 282.0, 285.0, 288.0, 291.0, 294.0, 297.0, 300.0], [1071170.0, 2142888.0, 3213216.0, 4297057.0, 5355628.0, 6431076.0, 7500061.0, 8564563.0, 9639740.0, 10713595.0, 11784203.0, 12851887.0, 13923228.0, 14998852.0, 16065620.0, 17137944.0, 18206884.0, 19276069.0, 20347810.0, 21419956.0, 22491978.0, 23573389.0, 24751195.0, 25718605.0, 26781160.0, 27852506.0, 28920826.0, 29989368.0, 31059450.0, 32133718.0, 33206671.0, 34273538.0, 35521206.0, 36423136.0, 37488102.0, 38562798.0, 39631769.0, 40712386.0, 41778167.0, 42843898.0, 43918888.0, 44992727.0, 46066030.0, 47134402.0, 48200836.0, 49271441.0, 50342619.0, 51420822.0, 52487252.0, 53557295.0, 54622947.0, 55692660.0, 56773472.0, 57843497.0, 59130424.0, 59978977.0, 61062645.0, 62137198.0, 63199618.0, 64268550.0, 65336333.0, 66405351.0, 67479787.0, 68549529.0, 69622682.0, 70698274.0, 72627397.0, 73152423.0, 74229527.0, 75305154.0, 76568571.0, 77458483.0, 78539031.0, 79600925.0, 80690153.0, 81763670.0, 82824820.0, 83915002.0, 84988329.0, 86064708.0, 87138987.0, 88210797.0, 89464150.0, 90371544.0, 91446995.0, 92518886.0, 93597571.0, 94671801.0, 95750958.0, 96820056.0, 97903153.0, 98976411.0, 100054466.0, 101292180.0, 102212637.0, 103286010.0, 104359167.0, 105443499.0, 106515499.0, 107581979.0]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build:css": {"type": "string"}}, "required": ["build:css"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "repository": {"type": "string"}, "github": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@tailwindcss/jit": {"type": "string"}, "autoprefixer": {"type": "string"}, "postcss": {"type": "string"}, "tailwindcss": {"type": "string"}}, "required": ["@tailwindcss/jit", "autoprefixer", "postcss", "tailwindcss"]}, "dependencies": {"type": "object", "properties": {"postcss-cli": {"type": "string"}}, "required": ["postcss-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "repository", "github", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tailwind-boilerplate", "version" : "1.0.1", "description" : "boilerplate for trying out tailwind without needing a major framework project.", "main" : "index.js", "scripts" : {"build:css" : "postcss ./tailwind.css -o ./website/css/style.css -w --verbose"}, "keywords" : ["tailwind", "tailwindcss", "tailwind-jit", "just-in-time", "tailwind-boilerplate", "boilerplate"], "author" : "etcroot", "repository" : "https://github.com/etcroot/tailwind-boilerplate.git", "github" : "https://github.com/etcroot/", "license" : "MIt", "devDependencies" : {"@tailwindcss/jit" : "^0.1.18", "autoprefixer" : "^10.2.5", "postcss" : "^8.2.9", "tailwindcss" : "^2.0.4"}, "dependencies" : {"postcss-cli" : "^8.3.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build:css": {"type": "string"}}, "required": ["build:css"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "repository": {"type": "string"}, "github": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@tailwindcss/jit": {"type": "string"}, "autoprefixer": {"type": "string"}, "postcss": {"type": "string"}, "tailwindcss": {"type": "string"}}, "required": ["@tailwindcss/jit", "autoprefixer", "postcss", "tailwindcss"]}, "dependencies": {"type": "object", "properties": {"postcss-cli": {"type": "string"}}, "required": ["postcss-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "repository", "github", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"content-type": {"type": "string"}, "content-length": {"type": "string"}, "connection": {"type": "string"}, "date": {"type": "string"}, "last-modified": {"type": "string"}, "etag": {"type": "string"}, "cache-control": {"type": "string"}, "content-disposition": {"type": "string"}, "accept-ranges": {"type": "string"}, "server": {"type": "string"}, "age": {"type": "string"}, "x-cache": {"type": "string"}, "via": {"type": "string"}, "x-amz-cf-id": {"type": "string"}}, "required": ["content-type", "content-length", "connection", "date", "last-modified", "etag", "cache-control", "content-disposition", "accept-ranges", "server", "age", "x-cache", "via", "x-amz-cf-id"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200796032524000, "key" : "create-remote-file-node-https://blog-template.cdn.prismic.io/blog-template/8c91a0c34c7cc72342518c882584e4ffe5d5211a_5b75a3bc29022.image.jpg", "val" : {"content-type" : "image/jpeg", "content-length" : "44517", "connection" : "close", "date" : "Sat, 03 Nov 2018 23:28:22 GMT", "last-modified" : "Sat, 03 Nov 2018 05:47:53 GMT", "etag" : "\"08a2ecd09fa2a240b5ddb52bf9b74c4a\"", "cache-control" : "max-age=315360000", "content-disposition" : "8c91a0c34c7cc72342518c882584e4ffe5d5211a_5b75a3bc29022.image.jpg", "accept-ranges" : "bytes", "server" : "AmazonS3", "age" : "3832", "x-cache" : "Hit from cloudfront", "via" : "1.1 e9eeb72bccacc26d81e7bd02c27d126b.cloudfront.net (CloudFront)", "x-amz-cf-id" : "fU-zIw5bh2LRjADk8QVN-UIUyW8UCTqpijJsd8tKG7ZzR7uggUQOHw=="}} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"content-type": {"type": "string"}, "content-length": {"type": "string"}, "connection": {"type": "string"}, "date": {"type": "string"}, "last-modified": {"type": "string"}, "etag": {"type": "string"}, "cache-control": {"type": "string"}, "content-disposition": {"type": "string"}, "accept-ranges": {"type": "string"}, "server": {"type": "string"}, "age": {"type": "string"}, "x-cache": {"type": "string"}, "via": {"type": "string"}, "x-amz-cf-id": {"type": "string"}}, "required": ["content-type", "content-length", "connection", "date", "last-modified", "etag", "cache-control", "content-disposition", "accept-ranges", "server", "age", "x-cache", "via", "x-amz-cf-id"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"kind" : "Property", "name" : "GamepadPose.angularAcceleration", "href" : "https://developer.mozilla.org/en-US/docs/Web/API/GamepadPose/angularAcceleration", "description" : "The angularAcceleration read-only property of the GamepadPose interface returns an array representing the angular acceleration vector of the Gamepad, in meters per second per second.", "refs" : [{"name" : "Gamepad Extensions", "href" : "https://w3c.github.io/gamepad/extensions.html#dom-gamepadpose-angularacceleration", "description" : "angularAcceleration - Gamepad Extensions"}]} | json_instruct | {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"multiples": {"type": "object", "properties": {"Chart": {"type": "object", "properties": {"%%FILE%%": {"type": "string"}, "%%LABELTEXT%%": {"type": "string"}, "%%DATATEXT%%": {"type": "string"}, "%%LINK%%": {"type": "string"}, "%%TITLE%%": {"type": "string"}, "%%DIFF%%": {"type": "string"}, "%%DIFFCOLOR%%": {"type": "string"}, "%%LASTUPDATE%%": {"type": "string"}, "%%BGCOLOR%%": {"type": "string"}, "%%BOCOLOR%%": {"type": "string"}}, "required": ["%%FILE%%", "%%LABELTEXT%%", "%%DATATEXT%%", "%%LINK%%", "%%TITLE%%", "%%DIFF%%", "%%DIFFCOLOR%%", "%%LASTUPDATE%%", "%%BGCOLOR%%", "%%BOCOLOR%%"]}}, "required": ["Chart"]}}, "required": ["multiples"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"multiples" : {"Chart" : {"%%FILE%%" : "id", "%%LABELTEXT%%" : "[]", "%%DATATEXT%%" : "[]", "%%LINK%%" : "", "%%TITLE%%" : "", "%%DIFF%%" : "", "%%DIFFCOLOR%%" : "secondary", "%%LASTUPDATE%%" : "", "%%BGCOLOR%%" : "", "%%BOCOLOR%%" : ""}}} | json_instruct | {"type": "object", "properties": {"multiples": {"type": "object", "properties": {"Chart": {"type": "object", "properties": {"%%FILE%%": {"type": "string"}, "%%LABELTEXT%%": {"type": "string"}, "%%DATATEXT%%": {"type": "string"}, "%%LINK%%": {"type": "string"}, "%%TITLE%%": {"type": "string"}, "%%DIFF%%": {"type": "string"}, "%%DIFFCOLOR%%": {"type": "string"}, "%%LASTUPDATE%%": {"type": "string"}, "%%BGCOLOR%%": {"type": "string"}, "%%BOCOLOR%%": {"type": "string"}}, "required": ["%%FILE%%", "%%LABELTEXT%%", "%%DATATEXT%%", "%%LINK%%", "%%TITLE%%", "%%DIFF%%", "%%DIFFCOLOR%%", "%%LASTUPDATE%%", "%%BGCOLOR%%", "%%BOCOLOR%%"]}}, "required": ["Chart"]}}, "required": ["multiples"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "winner": {"type": "string"}, "points": {"type": "null"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "winner", "points"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"n_dim" : 55, "n_trials" : 550, "objective" : "markowitz_skew_on_cube", "white" : "scipy_slsqp", "black" : "pymoo_pattern", "traceback" : ["passing", "passing"], "best_val" : [1.0085980917248627, 19.906769363704015], "best_x" : [[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.18490061666597757, 0.4635568161868185, 0.044318999233518404, 0.5448416937770227, 0.3644054476813744, 0.2587671951698189, 0.7171356869412464, 0.8828669221554831, 0.14304284528604133, 0.35477022570937117, 0.24540577410556172, 0.3185025547289154, 0.29359417204117955, 0.2423054317490415, 0.1308303677388433, 0.5398971080026232, 0.05072019827646157, 0.11644525606982765, 0.7120965832432598, 0.651928829886036, 0.2410590051581697, 0.6783894033339607, 0.22207649532495727, 0.2897604423096257, 0.07203440623642547, 0.5068377459370605, 0.6135186371049355, 0.47803429036654205, 0.9974890548196985, 0.18974733349440606, 0.5611951622442768, 0.18426088953494585, 0.11464251776810545, 0.4803829493365612, 0.34940381054345876, 0.043134108190541844, 0.13786773701494004, 0.6681509893819634, 0.05998200152842777, 0.09040270771780329, 0.08839985946672943, 0.1939868271541626, 0.39776214902299667, 0.6938552987234434, 0.5507147931142675, 0.5394402060439376, 0.18615868393536797, 0.6659881323218352, 0.010312248173838886, 0.31680585197614924, 0.660274578264402, 0.9762806903692134, 0.7605355550042732, 0.3186993048478691, 0.8614134295008787]], "feval_count" : [57, 275], "n_trials_instructed" : [550, 16], "passing" : [true, true], "completed" : false, "winner" : "incomplete", "points" : null} | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "winner": {"type": "string"}, "points": {"type": "null"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "winner", "points"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"cast_type": {"type": "string"}, "cooldown": {"type": "integer"}, "cost": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "cost": {"type": "integer"}}, "required": ["name", "cost"]}}, "duration": {"type": "integer"}, "max_targets": {"type": "integer"}, "name": {"type": "string"}, "next_chain": {"type": "array", "items": {}}, "previous_chain": {"type": "array", "items": {"type": "string"}}, "range": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "data_type": {"type": "string"}}, "required": ["id", "data_type"]}}, "tags": {"type": "array", "items": {}}, "targeting": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}}, "required": ["cast_type", "cooldown", "cost", "duration", "max_targets", "name", "next_chain", "previous_chain", "range", "sources", "tags", "targeting", "type", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cast_type" : "instant", "cooldown" : 30, "cost" : [{"name" : "resource", "cost" : 6}], "duration" : 0, "max_targets" : 1, "name" : "Crippling Stab II", "next_chain" : [], "previous_chain" : ["crippling-stab"], "range" : 5, "sources" : [{"id" : "master-of-daggers", "data_type" : "discipline"}], "tags" : [], "targeting" : "cone", "type" : "buff", "description" : "Stab an enemy with a quick strike reducing your short cooldown time and causing 49-67 + 58% Weapon Damage."} | json_instruct | {"type": "object", "properties": {"cast_type": {"type": "string"}, "cooldown": {"type": "integer"}, "cost": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "cost": {"type": "integer"}}, "required": ["name", "cost"]}}, "duration": {"type": "integer"}, "max_targets": {"type": "integer"}, "name": {"type": "string"}, "next_chain": {"type": "array", "items": {}}, "previous_chain": {"type": "array", "items": {"type": "string"}}, "range": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "data_type": {"type": "string"}}, "required": ["id", "data_type"]}}, "tags": {"type": "array", "items": {}}, "targeting": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}}, "required": ["cast_type", "cooldown", "cost", "duration", "max_targets", "name", "next_chain", "previous_chain", "range", "sources", "tags", "targeting", "type", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "avaritiaalpha:item/matter_cluster", "textures" : {"layer0" : "avaritiaalpha:item/matter_cluster/full"}} | 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": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "lintfix": {"type": "string"}, "cover": {"type": "string"}}, "required": ["test", "lint", "lintfix", "cover"]}, "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": {"haraka-constants": {"type": "string"}, "modern-syslog": {"type": "string"}}, "required": ["haraka-constants", "modern-syslog"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-plugin-haraka": {"type": "string"}, "haraka-test-fixtures": {"type": "string"}, "nodeunit": {"type": "string"}}, "required": ["eslint", "eslint-plugin-haraka", "haraka-test-fixtures", "nodeunit"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "haraka-plugin-syslog", "version" : "1.0.4", "description" : "Haraka plugin that logs to syslog", "main" : "index.js", "scripts" : {"test" : "node run_tests", "lint" : "node node_modules/.bin/eslint *.js test/*.js", "lintfix" : "node node_modules/.bin/eslint --fix *.js test/*.js", "cover" : "node node_modules/.bin/istanbul cover ./run_tests"}, "repository" : {"type" : "git", "url" : "git+https://github.com/haraka/haraka-plugin-syslog.git"}, "keywords" : ["Haraka", "plugin", "syslog", "log"], "author" : "Haraka Team <harakamail@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/haraka/haraka-plugin-syslog/issues"}, "homepage" : "https://github.com/haraka/haraka-plugin-syslog#readme", "dependencies" : {"haraka-constants" : "*", "modern-syslog" : "^1.1.4"}, "devDependencies" : {"eslint" : "*", "eslint-plugin-haraka" : "*", "haraka-test-fixtures" : "*", "nodeunit" : "*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "lintfix": {"type": "string"}, "cover": {"type": "string"}}, "required": ["test", "lint", "lintfix", "cover"]}, "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": {"haraka-constants": {"type": "string"}, "modern-syslog": {"type": "string"}}, "required": ["haraka-constants", "modern-syslog"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-plugin-haraka": {"type": "string"}, "haraka-test-fixtures": {"type": "string"}, "nodeunit": {"type": "string"}}, "required": ["eslint", "eslint-plugin-haraka", "haraka-test-fixtures", "nodeunit"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "path", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "FTBot", "path" : "./out/strategies/follow-trend/", "src" : "./src/strategies/follow-trend/"}, {"name" : "SpikesG", "path" : "./out/strategies/spikes-grid/", "src" : "./src/strategies/spikes-grid/"}, {"name" : "StochMacd", "path" : "./out/strategies/stoch-macd/", "src" : "./src/strategies/stoch-macd/"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "path", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "city": {"type": "string"}, "country": {"type": "string"}, "description": {"type": "string"}, "imageCredit": {"type": "string"}, "imageCreditLink": {"type": "string"}}, "required": ["id", "name", "city", "country", "description", "imageCredit", "imageCreditLink"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "ktm", "name" : "Tribhuvan International Airport", "city" : "Kathmandu", "country" : "Nepal", "description" : "Opened as an airfield in 1949, Tribhuvan International is named after Tribhuwan Bir Bikram Shah, former King of Nepal. Its airport code comes from its home city of *K*a*t*h*m*andu.", "imageCredit" : "Jay Galvin", "imageCreditLink" : "https://www.flickr.com/photos/jaygalvin/"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "city": {"type": "string"}, "country": {"type": "string"}, "description": {"type": "string"}, "imageCredit": {"type": "string"}, "imageCreditLink": {"type": "string"}}, "required": ["id", "name", "city", "country", "description", "imageCredit", "imageCreditLink"], "$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"}, "input": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "result": {"type": "object", "properties": {"block": {"type": "string"}}, "required": ["block"]}}, "required": ["type", "input", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "rankine:beehive_oven", "input" : {"item" : "minecraft:bone_block"}, "result" : {"block" : "rankine:bone_char_block"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "input": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "result": {"type": "object", "properties": {"block": {"type": "string"}}, "required": ["block"]}}, "required": ["type", "input", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "MultiPolygon", "coordinates" : [[[[-118.18228299999988, 33.804237], [-118.18182399999986, 33.804231], [-118.18178465499993, 33.804231], [-118.18173399999986, 33.804231], [-118.1817620639999, 33.80409232700003], [-118.181802, 33.803895], [-118.18172699999988, 33.803489], [-118.18213399999989, 33.8026], [-118.1820091619999, 33.80214664100003], [-118.18200099999987, 33.802117], [-118.18200099999987, 33.801217], [-118.18200952199992, 33.80117652000006], [-118.182057, 33.800951], [-118.182101, 33.800717], [-118.18452636599991, 33.80223368300005], [-118.1859795649999, 33.80317629900008], [-118.1868730859999, 33.80374579600004], [-118.18777632699991, 33.80436964500006], [-118.18796288299987, 33.80448918300004], [-118.18689285399986, 33.80450720500004], [-118.1864114989999, 33.804502825000036], [-118.18587148899988, 33.80449554800003], [-118.18541017299991, 33.80448659900008], [-118.18500749199988, 33.80448], [-118.18489203499988, 33.804476635000064], [-118.1848909999999, 33.804396], [-118.18481099999988, 33.804394], [-118.184552, 33.804323], [-118.184466, 33.804316], [-118.18391799999986, 33.804273], [-118.183187, 33.804249], [-118.18228299999988, 33.804237]]]], "properties" : {"id" : "usa-ca-long-beach-sunrise-neighborhood", "type" : "neighborhood", "name" : "Sunrise", "code" : "416311"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jasmine-core": {"type": "string"}, "jasmine-node": {"type": "string"}, "jasmine-reporters": {"type": "string"}, "karma": {"type": "string"}, "karma-chrome-launcher": {"type": "string"}, "karma-coverage": {"type": "string"}, "karma-firefox-launcher": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-junit-reporter": {"type": "string"}, "protractor": {"type": "string"}}, "required": ["jasmine-core", "jasmine-node", "jasmine-reporters", "karma", "karma-chrome-launcher", "karma-coverage", "karma-firefox-launcher", "karma-jasmine", "karma-junit-reporter", "protractor"]}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "postupdate": {"type": "string"}, "pretest": {"type": "string"}, "test": {"type": "string"}, "preteste2e": {"type": "string"}, "teste2e": {"type": "string"}}, "required": ["postinstall", "postupdate", "pretest", "test", "preteste2e", "teste2e"]}, "dependencies": {"type": "object", "properties": {"bower": {"type": "string"}}, "required": ["bower"]}}, "required": ["name", "private", "version", "description", "repository", "license", "devDependencies", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "app-desktop-skeleton", "private" : true, "version" : "1.0.0", "description" : "Skeleton for a App Desktop project", "repository" : "https://github.com/manumartor/app-dashboard-skeleton.git", "license" : "MIT", "devDependencies" : {"jasmine-core" : "^2.6.4", "jasmine-node" : "^1.14.5", "jasmine-reporters" : "^2.2.1", "karma" : "^1.7.0", "karma-chrome-launcher" : "^2.2.0", "karma-coverage" : "^1.1.1", "karma-firefox-launcher" : "^1.0.1", "karma-jasmine" : "^1.1.0", "karma-junit-reporter" : "^1.2.0", "protractor" : "^5.1.2"}, "scripts" : {"postinstall" : "bower install", "postupdate" : "bower update", "pretest" : "npm install", "test" : "node_modules/karma/bin/karma start karma.cnf", "preteste2e" : "npm install", "teste2e" : "protractor protractor.cnf"}, "dependencies" : {"bower" : "^1.8.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jasmine-core": {"type": "string"}, "jasmine-node": {"type": "string"}, "jasmine-reporters": {"type": "string"}, "karma": {"type": "string"}, "karma-chrome-launcher": {"type": "string"}, "karma-coverage": {"type": "string"}, "karma-firefox-launcher": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-junit-reporter": {"type": "string"}, "protractor": {"type": "string"}}, "required": ["jasmine-core", "jasmine-node", "jasmine-reporters", "karma", "karma-chrome-launcher", "karma-coverage", "karma-firefox-launcher", "karma-jasmine", "karma-junit-reporter", "protractor"]}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "postupdate": {"type": "string"}, "pretest": {"type": "string"}, "test": {"type": "string"}, "preteste2e": {"type": "string"}, "teste2e": {"type": "string"}}, "required": ["postinstall", "postupdate", "pretest", "test", "preteste2e", "teste2e"]}, "dependencies": {"type": "object", "properties": {"bower": {"type": "string"}}, "required": ["bower"]}}, "required": ["name", "private", "version", "description", "repository", "license", "devDependencies", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"900596174": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900596175": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900596176": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900596177": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900596178": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900596179": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900596180": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900596174", "900596175", "900596176", "900596177", "900596178", "900596179", "900596180"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900596174" : {"nama" : "TPS 1", "dapil" : [3602, 13602, 2360405]}, "900596175" : {"nama" : "TPS 2", "dapil" : [3602, 13602, 2360405]}, "900596176" : {"nama" : "TPS 3", "dapil" : [3602, 13602, 2360405]}, "900596177" : {"nama" : "TPS 4", "dapil" : [3602, 13602, 2360405]}, "900596178" : {"nama" : "TPS 5", "dapil" : [3602, 13602, 2360405]}, "900596179" : {"nama" : "TPS 6", "dapil" : [3602, 13602, 2360405]}, "900596180" : {"nama" : "TPS 7", "dapil" : [3602, 13602, 2360405]}} | json_instruct | {"type": "object", "properties": {"900596174": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900596175": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900596176": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900596177": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900596178": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900596179": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900596180": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900596174", "900596175", "900596176", "900596177", "900596178", "900596179", "900596180"], "$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"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "bootstrap-datepicker": {"type": "string"}, "flot": {"type": "string"}, "grunt-cli": {"type": "string"}, "ie10-viewport-bug-workaround.js": {"type": "string"}, "jquery-query-object": {"type": "string"}, "js-cookie": {"type": "string"}, "spin.js": {"type": "string"}, "tether": {"type": "string"}}, "required": ["bootstrap", "bootstrap-datepicker", "flot", "grunt-cli", "ie10-viewport-bug-workaround.js", "jquery-query-object", "js-cookie", "spin.js", "tether"]}}, "required": ["name", "version", "main", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "opconsoleJS", "version" : "0.0.1", "main" : "index.js", "author" : "Clignez David", "license" : "Apache 2.0", "dependencies" : {"bootstrap" : "^3.3.7", "bootstrap-datepicker" : "^1.6.4", "flot" : "^0.8.0-alpha", "grunt-cli" : "^1.2.0", "ie10-viewport-bug-workaround.js" : "^1.0.0", "jquery-query-object" : "^2.2.3", "js-cookie" : "^2.1.4", "spin.js" : "^2.3.2", "tether" : "^1.4.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "bootstrap-datepicker": {"type": "string"}, "flot": {"type": "string"}, "grunt-cli": {"type": "string"}, "ie10-viewport-bug-workaround.js": {"type": "string"}, "jquery-query-object": {"type": "string"}, "js-cookie": {"type": "string"}, "spin.js": {"type": "string"}, "tether": {"type": "string"}}, "required": ["bootstrap", "bootstrap-datepicker", "flot", "grunt-cli", "ie10-viewport-bug-workaround.js", "jquery-query-object", "js-cookie", "spin.js", "tether"]}}, "required": ["name", "version", "main", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"vnets": {"type": "object", "properties": {"type": {"type": "string"}, "xml": {"type": "object", "properties": {"name": {"type": "string"}, "wrapped": {"type": "boolean"}}, "required": ["name", "wrapped"]}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"networkId": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "example": {"type": "integer"}}, "required": ["type", "description", "example"]}, "tenantId": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "example": {"type": "string"}}, "required": ["type", "description", "example"]}}, "required": ["networkId", "tenantId"]}}, "required": ["type", "title", "required", "properties"]}}, "required": ["type", "xml", "items"]}}, "required": ["vnets"]}}, "required": ["type", "title", "required", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "object", "title" : "VirtualNetworks", "required" : ["vnets"], "properties" : {"vnets" : {"type" : "array", "xml" : {"name" : "vnets", "wrapped" : true}, "items" : {"type" : "object", "title" : "vnet", "required" : ["networkId", "tenantId"], "properties" : {"networkId" : {"type" : "int64", "description" : "Network identifier", "example" : 3}, "tenantId" : {"type" : "String", "description" : "Tenant identifier", "example" : "Tenant123"}}}}}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"vnets": {"type": "object", "properties": {"type": {"type": "string"}, "xml": {"type": "object", "properties": {"name": {"type": "string"}, "wrapped": {"type": "boolean"}}, "required": ["name", "wrapped"]}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"networkId": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "example": {"type": "integer"}}, "required": ["type", "description", "example"]}, "tenantId": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "example": {"type": "string"}}, "required": ["type", "description", "example"]}}, "required": ["networkId", "tenantId"]}}, "required": ["type", "title", "required", "properties"]}}, "required": ["type", "xml", "items"]}}, "required": ["vnets"]}}, "required": ["type", "title", "required", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x2146b73486ec05b4dcf9aece2551b7e6240ac38c2590c1d2e8ee4c113623913e", "parentHash" : "0x8fee924101be3bb48b55f017a824c6e52f4721f0cf2369cf6fc702e9f0c8b4a7", "number" : 14980, "timestamp" : 1438406492, "nonce" : "0xc352656f9f03c1fd", "difficulty" : 863417293994, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x24086efcaD85969b9266376FDAE4c4B5c007b4Bd", "extraData" : "0x476574682f76312e302e302f6c696e75782f676f312e342e32", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "mulish", "definition" : "Like a mule; sullen; stubborn. -- Mul\"ish*ly, adv. -- Mul\"ish*ness, n."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "System": {"type": "string"}, "Microsoft": {"type": "string"}}, "required": ["Default", "System", "Microsoft"]}}, "required": ["LogLevel"]}, "ConnectionStrings": {"type": "object", "properties": {"Main": {"type": "string"}}, "required": ["Main"]}}, "required": ["Logging", "ConnectionStrings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Logging" : {"LogLevel" : {"Default" : "Debug", "System" : "Information", "Microsoft" : "Information"}}, "ConnectionStrings" : {"Main" : "Server={MySqlServer};Port={MySqlPort};Database={MySqlDatabase};Uid={MySqlUser};Pwd={MySqlPassword};"}} | json_instruct | {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "System": {"type": "string"}, "Microsoft": {"type": "string"}}, "required": ["Default", "System", "Microsoft"]}}, "required": ["LogLevel"]}, "ConnectionStrings": {"type": "object", "properties": {"Main": {"type": "string"}}, "required": ["Main"]}}, "required": ["Logging", "ConnectionStrings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"ajv": {"type": "string"}, "chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "mariadb": {"type": "string"}, "mocha": {"type": "string"}, "request": {"type": "string"}, "request-promise-native": {"type": "string"}}, "required": ["ajv", "chai", "chai-as-promised", "mariadb", "mocha", "request", "request-promise-native"]}}, "required": ["name", "version", "repository", "description", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "rest-api-tests", "version" : "1.0.0", "repository" : "https://github.com/mariadb-corporation/MaxScale", "description" : "MaxScale REST API tests", "scripts" : {"test" : "mocha --exit --timeout 30000 --slow 10000"}, "author" : "", "license" : "SEE LICENSE IN ../../../../LICENSE.txt", "dependencies" : {"ajv" : "^5.5.2", "chai" : "^3.5.0", "chai-as-promised" : "^6.0.0", "mariadb" : "^2.0.1-beta", "mocha" : "^5.2.0", "request" : "^2.87.0", "request-promise-native" : "^1.0.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"ajv": {"type": "string"}, "chai": {"type": "string"}, "chai-as-promised": {"type": "string"}, "mariadb": {"type": "string"}, "mocha": {"type": "string"}, "request": {"type": "string"}, "request-promise-native": {"type": "string"}}, "required": ["ajv", "chai", "chai-as-promised", "mariadb", "mocha", "request", "request-promise-native"]}}, "required": ["name", "version", "repository", "description", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authors" : [{"author" : "Pan Chun"}, {"author" : "Huang Ying-Zi"}, {"author" : "Yang Yi"}, {"author" : "Qiu Hai-Bo"}], "doi" : "10.4076/1757-1626-2-6865", "publication_date" : "2009-11-18", "id" : "EN118156", "url" : "https://pubmed.ncbi.nlm.nih.gov/19918553", "source" : "Cases journal", "source_url" : "", "licence" : "CC BY", "language" : "en", "type" : "pubmed", "description" : "", "text" : "A 37-year-old woman was sustained a 2 cm wound in the right anterior part of chest. Then she developed progressive risus sardonicus, trismus and opisthotonus, elevated liver enzymes, creatine kinase, lactic acid and myoglobin. The patient was treated with continuous infusion of propofol (50-100 mg/h, 22 days) and midazolam (5-20 mg/h, 37 days) for sedation, vecuronium (1-6 mg/h, 25 days) for muscle relaxation. The symptoms of tetanus were controlled, and there were no side-effects appeared."} | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Mycose": {"type": "string"}}, "required": ["Mycose"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "requires_arc", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "CMSteppedProgressBar", "version" : "0.1.1", "summary" : "CMSteppedProgressBar is like a progress bar but with dots to show steps, like for a formular", "description" : " It's quite customizable for the line height, dots height and widht, the colors etc...\n There is also a delegate to know when someone click on a dot, for example to return to an old step\n", "homepage" : "https://github.com/Mycose/CMSteppedProgressBar", "license" : "MIT", "authors" : {"Mycose" : "morissard@gmail.com"}, "source" : {"git" : "https://github.com/Mycose/CMSteppedProgressBar.git", "tag" : "0.1.1"}, "platforms" : {"ios" : "7.0"}, "requires_arc" : true, "source_files" : "Pod/Classes/**/*"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Mycose": {"type": "string"}}, "required": ["Mycose"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "requires_arc", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"description": {"type": "string"}, "filings": {"type": "object", "properties": {"last_30": {"type": "string"}, "total": {"type": "string"}}, "required": ["last_30", "total"]}, "bureau": {"type": "object", "properties": {"name": {"type": "string"}, "code": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "code", "id"]}, "date_created": {"type": "string"}, "date_closed": {"type": "string"}, "subject": {"type": "string"}, "state": {"type": "string"}, "consolidated": {"type": "string"}, "comment_period": {"type": "string"}}, "required": ["description", "filings", "bureau", "date_created", "date_closed", "subject", "state", "consolidated", "comment_period"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "Protecting and Promoting the Open Internet", "filings" : {"last_30" : "588625", "total" : "2026751"}, "bureau" : {"name" : "General (Multiple Bureaus)", "code" : "GN", "id" : ""}, "date_created" : "sensible date format", "date_closed" : "ditto", "subject" : "how is this different from description?", "state" : "", "consolidated" : "RM-10803", "comment_period" : "ask hursh, other periods?"} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "filings": {"type": "object", "properties": {"last_30": {"type": "string"}, "total": {"type": "string"}}, "required": ["last_30", "total"]}, "bureau": {"type": "object", "properties": {"name": {"type": "string"}, "code": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "code", "id"]}, "date_created": {"type": "string"}, "date_closed": {"type": "string"}, "subject": {"type": "string"}, "state": {"type": "string"}, "consolidated": {"type": "string"}, "comment_period": {"type": "string"}}, "required": ["description", "filings", "bureau", "date_created", "date_closed", "subject", "state", "consolidated", "comment_period"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1226396283, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "93ae3acaabf1825a55bc9ebb4526202f", "wof:id" : 1226396283, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [26.16995, 47.36945, 26.16995, 47.36945], "geometry" : {"coordinates" : [26.16995, 47.36945], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"dynamicFiles": {"type": "object", "properties": {"sirepoLibs": {"type": "object", "properties": {"js": {"type": "array", "items": {"type": "string"}}}, "required": ["js"]}}, "required": ["sirepoLibs"]}, "localRoutes": {"type": "object", "properties": {"simulations": {"type": "object", "properties": {"config": {"type": "object", "properties": {"controller": {"type": "null"}, "templateURL": {"type": "null"}, "redirectTo": {"type": "string"}}, "required": ["controller", "templateURL", "redirectTo"]}, "isDefault": {"type": "boolean"}}, "required": ["config", "isDefault"]}, "simulationsFolder": {"type": "object", "properties": {"config": {"type": "object", "properties": {"controller": {"type": "null"}, "templateURL": {"type": "null"}, "redirectTo": {"type": "string"}}, "required": ["controller", "templateURL", "redirectTo"]}}, "required": ["config"]}, "source": {"type": "object", "properties": {"config": {"type": "object", "properties": {"redirectTo": {"type": "string"}}, "required": ["redirectTo"]}}, "required": ["config"]}, "dataList": {"type": "object", "properties": {"route": {"type": "string"}, "config": {"type": "object", "properties": {"controller": {"type": "string"}, "templateUrl": {"type": "string"}}, "required": ["controller", "templateUrl"]}, "isDefault": {"type": "boolean"}}, "required": ["route", "config", "isDefault"]}}, "required": ["simulations", "simulationsFolder", "source", "dataList"]}}, "required": ["dynamicFiles", "localRoutes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dynamicFiles" : {"sirepoLibs" : {"js" : ["adm.js"]}}, "localRoutes" : {"simulations" : {"config" : {"controller" : null, "templateURL" : null, "redirectTo" : "/not-found"}, "isDefault" : false}, "simulationsFolder" : {"config" : {"controller" : null, "templateURL" : null, "redirectTo" : "/not-found"}}, "source" : {"config" : {"redirectTo" : "/not-found"}}, "dataList" : {"route" : "/data-list", "config" : {"controller" : "AdmController as adm", "templateUrl" : "/static/html/adm.html"}, "isDefault" : true}}} | json_instruct | {"type": "object", "properties": {"dynamicFiles": {"type": "object", "properties": {"sirepoLibs": {"type": "object", "properties": {"js": {"type": "array", "items": {"type": "string"}}}, "required": ["js"]}}, "required": ["sirepoLibs"]}, "localRoutes": {"type": "object", "properties": {"simulations": {"type": "object", "properties": {"config": {"type": "object", "properties": {"controller": {"type": "null"}, "templateURL": {"type": "null"}, "redirectTo": {"type": "string"}}, "required": ["controller", "templateURL", "redirectTo"]}, "isDefault": {"type": "boolean"}}, "required": ["config", "isDefault"]}, "simulationsFolder": {"type": "object", "properties": {"config": {"type": "object", "properties": {"controller": {"type": "null"}, "templateURL": {"type": "null"}, "redirectTo": {"type": "string"}}, "required": ["controller", "templateURL", "redirectTo"]}}, "required": ["config"]}, "source": {"type": "object", "properties": {"config": {"type": "object", "properties": {"redirectTo": {"type": "string"}}, "required": ["redirectTo"]}}, "required": ["config"]}, "dataList": {"type": "object", "properties": {"route": {"type": "string"}, "config": {"type": "object", "properties": {"controller": {"type": "string"}, "templateUrl": {"type": "string"}}, "required": ["controller", "templateUrl"]}, "isDefault": {"type": "boolean"}}, "required": ["route", "config", "isDefault"]}}, "required": ["simulations", "simulationsFolder", "source", "dataList"]}}, "required": ["dynamicFiles", "localRoutes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"python.pythonPath" : "/Users/rstarmer/.pyenv/kolla/bin/python"} | json_instruct | {"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 103050, "info" : {"name" : "\u00ab\u041c\u0430\u043c\u043a\u0430 \u0432 \u043a\u043e\u043c\u043d\u0430\u0442\u0435\u00bb for N0L.CH", "description" : "NSFW-mod for russian imageboard N0L.CH. (Maybe will work with all Tinyboard-based imageboards.)", "additionalInfo" : "Tags: n0l.ch, \u043d\u043e\u043b\u044c\u0447, \u043d\u0443\u043b\u044c\u0447\u0430\u043d, \u043c\u0430\u043c\u043a\u0430 \u0432 \u043a\u043e\u043c\u043d\u0430\u0442\u0435, tinyboard, imageboard, imageboards, pictures hiding, NSFW.", "format" : "uso", "category" : "n0l", "createdAt" : "2014-07-02T21:24:06.000Z", "updatedAt" : "2014-07-02T21:24:06.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 268242, "name" : "GBQW433O"}}, "stats" : {"installs" : {"total" : 74, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "103050_after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain(\"n0l.ch\") {\r\nimg.post-image {\r\n\topacity: 0.1;\r\n\t-webkit-transition: all 0.3s ease;\r\n\t-o-transition: all 0.3s ease;\r\n\t-moz-transition: all 0.3s ease;\r\n\ttransition: all 0.3s ease;\r\n}\r\nimg.post-image.expanded, img.post-image:hover {\r\n\topacity: 1;\r\n\t-webkit-transition: all 0.3s ease;\r\n\t-o-transition: all 0.3s ease;\r\n\t-moz-transition: all 0.3s ease;\r\n\ttransition: all 0.3s ease;\r\n}\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ItemType": {"type": "integer"}, "Id": {"type": "integer"}, "Name": {"type": "string"}, "DisplayCategory": {"type": "integer"}, "Availability": {"type": "integer"}, "ComponentStatsId": {"type": "integer"}, "Faction": {"type": "integer"}, "Level": {"type": "integer"}, "Icon": {"type": "string"}, "Color": {"type": "string"}, "Layout": {"type": "string"}, "CellType": {"type": "string"}, "WeaponId": {"type": "integer"}, "AmmunitionId": {"type": "integer"}, "WeaponSlotType": {"type": "string"}, "PossibleModifications": {"type": "array", "items": {"type": "integer"}}}, "required": ["ItemType", "Id", "Name", "DisplayCategory", "Availability", "ComponentStatsId", "Faction", "Level", "Icon", "Color", "Layout", "CellType", "WeaponId", "AmmunitionId", "WeaponSlotType", "PossibleModifications"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ItemType" : 1, "Id" : 161, "Name" : "$ChargedLaser_M_1", "DisplayCategory" : 1, "Availability" : 1, "ComponentStatsId" : 1, "Faction" : 10, "Level" : 90, "Icon" : "laser3", "Color" : "#FF7F7F", "Layout" : "0100010001000100", "CellType" : "4", "WeaponId" : 10, "AmmunitionId" : 10, "WeaponSlotType" : "L", "PossibleModifications" : [6, 16, 5, 2, 7, 1]} | json_instruct | {"type": "object", "properties": {"ItemType": {"type": "integer"}, "Id": {"type": "integer"}, "Name": {"type": "string"}, "DisplayCategory": {"type": "integer"}, "Availability": {"type": "integer"}, "ComponentStatsId": {"type": "integer"}, "Faction": {"type": "integer"}, "Level": {"type": "integer"}, "Icon": {"type": "string"}, "Color": {"type": "string"}, "Layout": {"type": "string"}, "CellType": {"type": "string"}, "WeaponId": {"type": "integer"}, "AmmunitionId": {"type": "integer"}, "WeaponSlotType": {"type": "string"}, "PossibleModifications": {"type": "array", "items": {"type": "integer"}}}, "required": ["ItemType", "Id", "Name", "DisplayCategory", "Availability", "ComponentStatsId", "Faction", "Level", "Icon", "Color", "Layout", "CellType", "WeaponId", "AmmunitionId", "WeaponSlotType", "PossibleModifications"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"s" : ["`koli~"], "f" : "\ufff9\ufffato make a slave of\ufffb\u628a\u4eba\u7576\u82e6\u5de5"}]}], "t" : "palakoli"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"url": {"type": "string"}, "rev": {"type": "string"}, "date": {"type": "string"}, "sha256": {"type": "string"}, "fetchSubmodules": {"type": "boolean"}}, "required": ["url", "rev", "date", "sha256", "fetchSubmodules"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"url" : "https://github.com/xmake-io/xmake", "rev" : "31bacc4f76101e6a865ec254c48d8bcba456378f", "date" : "2020-03-28T12:45:17+08:00", "sha256" : "1pqh02g3c6pnf32vzqdl7vmnlvar7r2js13wjkapd9y5664sah76", "fetchSubmodules" : true} | json_instruct | {"type": "object", "properties": {"url": {"type": "string"}, "rev": {"type": "string"}, "date": {"type": "string"}, "sha256": {"type": "string"}, "fetchSubmodules": {"type": "boolean"}}, "required": ["url", "rev", "date", "sha256", "fetchSubmodules"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id_6422": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_6422"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_6422" : {"publicdate" : "2012-05-02 16:04:06", "title" : "In the Midst of Life; Tales of Soldiers and Civilians"}} | json_instruct | {"type": "object", "properties": {"id_6422": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_6422"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "async-assets", "version" : "0.0.1-alpha.1.1", "description" : "Async loading of css and javascript files", "main" : "./src/index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/azabroflovski/async-assets.git"}, "keywords" : ["async", "asset", "include", "javascript", "css", "js", "require", "loader", "azabroflovski"], "author" : "azabroflovski", "license" : "MIT", "bugs" : {"url" : "https://github.com/azabroflovski/async-assets/issues"}, "homepage" : "https://github.com/azabroflovski/async-assets#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"away": {"type": "string"}, "home": {"type": "string"}, "play": {"type": "integer"}, "stadium": {"type": "string"}, "subPlay": {"type": "integer"}, "weather": {"type": "integer"}}, "required": ["away", "home", "play", "stadium", "subPlay", "weather"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "da09c6a6-5d50-4aca-83bc-401024673e36", "playerTags" : [], "teamTags" : ["23e4cbc1-e9cd-47fa-a35b-bfa06f726cb7", "57ec08cc-0411-4643-b304-0e80dbc15ac7"], "gameTags" : ["8aadd00a-d8ec-40be-b3d1-872268b26115"], "metadata" : {"away" : "23e4cbc1-e9cd-47fa-a35b-bfa06f726cb7", "home" : "57ec08cc-0411-4643-b304-0e80dbc15ac7", "play" : 0, "stadium" : "2841dc8c-b5a2-4b3a-a717-9e646e8e29fc", "subPlay" : -1, "weather" : 18}, "created" : "2021-04-13T11:00:00.979Z", "season" : 15, "tournament" : -1, "type" : 0, "day" : 19, "phase" : 2, "category" : 0, "description" : "Let's Go!", "nuts" : 0} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"away": {"type": "string"}, "home": {"type": "string"}, "play": {"type": "integer"}, "stadium": {"type": "string"}, "subPlay": {"type": "integer"}, "weather": {"type": "integer"}}, "required": ["away", "home", "play", "stadium", "subPlay", "weather"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.