input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"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": {"silverstripe/framework": {"type": "string"}, "symbiote/silverstripe-gridfieldextensions": {"type": "string"}}, "required": ["silverstripe/framework", "symbiote/silverstripe-gridfieldextensions"]}, "extra": {"type": "object", "properties": {"installer-name": {"type": "string"}}, "required": ["installer-name"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Arillo\\Utils\\": {"type": "string"}}, "required": ["Arillo\\Utils\\"]}}, "required": ["psr-4"]}, "support": {"type": "object", "properties": {"issues": {"type": "string"}}, "required": ["issues"]}}, "required": ["name", "description", "type", "homepage", "keywords", "license", "authors", "require", "extra", "autoload", "support"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "arillo/silverstripe-utils", "description" : "Utils and helpers for SilverStripe CMS.", "type" : "silverstripe-vendormodule", "homepage" : "https://github.com/arillo/silverstripe-utils", "keywords" : ["silverstripe", "utils", "utils"], "license" : "MIT", "authors" : [{"name" : "Sebastian Fischer", "email" : "sf@arillo.net"}], "require" : {"silverstripe/framework" : "^4", "symbiote/silverstripe-gridfieldextensions" : "^3"}, "extra" : {"installer-name" : "utils"}, "autoload" : {"psr-4" : {"Arillo\\Utils\\" : "src/"}}, "support" : {"issues" : "https://github.com/arillo/silverstripe-utils/issues"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"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": {"silverstripe/framework": {"type": "string"}, "symbiote/silverstripe-gridfieldextensions": {"type": "string"}}, "required": ["silverstripe/framework", "symbiote/silverstripe-gridfieldextensions"]}, "extra": {"type": "object", "properties": {"installer-name": {"type": "string"}}, "required": ["installer-name"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Arillo\\Utils\\": {"type": "string"}}, "required": ["Arillo\\Utils\\"]}}, "required": ["psr-4"]}, "support": {"type": "object", "properties": {"issues": {"type": "string"}}, "required": ["issues"]}}, "required": ["name", "description", "type", "homepage", "keywords", "license", "authors", "require", "extra", "autoload", "support"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "tag": {"type": "string"}, "fileName": {"type": "string"}, "fileSizeBytes": {"type": "integer"}, "url": {"type": "string"}}, "required": ["id", "tag", "fileName", "fileSizeBytes", "url"]}}}, "required": ["images"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"images" : [{"id" : "sha256:00b8e6ba6536c8e35ef1297c231c5f9c72304d7708a00313a53c33ab78b91b82", "tag" : "orchestrate:v2.4.0-rc3", "fileName" : "orchestrate-v2.4.0-rc3.tgz", "fileSizeBytes" : 25500336, "url" : "https://relay.quorum.consensys.net/quorum-dev-quickstart/orchestrate-v2.4.0-rc3.tgz"}]}
json_instruct
{"type": "object", "properties": {"images": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "tag": {"type": "string"}, "fileName": {"type": "string"}, "fileSizeBytes": {"type": "integer"}, "url": {"type": "string"}}, "required": ["id", "tag", "fileName", "fileSizeBytes", "url"]}}}, "required": ["images"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"PhoneNumber": {"type": "string"}, "AddressSid": {"type": "string"}, "SmsApplicationSid": {"type": "string"}, "VoiceApplicationSid": {"type": "string"}}, "required": ["PhoneNumber", "AddressSid", "SmsApplicationSid", "VoiceApplicationSid"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"PhoneNumber" : "+16155882109", "AddressSid" : "b7796f9d-f990-4555-8313-95bb40c668ca", "SmsApplicationSid" : "APf1bf5f86f9a566837b060e13e27707c1", "VoiceApplicationSid" : "APf1bf5f86f9a566837b060e13e27707c1"}
json_instruct
{"type": "object", "properties": {"PhoneNumber": {"type": "string"}, "AddressSid": {"type": "string"}, "SmsApplicationSid": {"type": "string"}, "VoiceApplicationSid": {"type": "string"}}, "required": ["PhoneNumber", "AddressSid", "SmsApplicationSid", "VoiceApplicationSid"], "$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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"electron": {"type": "string"}, "electron-packager": {"type": "string"}, "windows-shortcuts-ps": {"type": "string"}}, "required": ["electron", "electron-packager", "windows-shortcuts-ps"]}}, "required": ["name", "version", "main", "scripts", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "wing", "version" : "1.0.0", "main" : "main.js", "scripts" : {"start" : "electron ."}, "license" : "MIT", "dependencies" : {"electron" : "^11.0.3", "electron-packager" : "^15.2.0", "windows-shortcuts-ps" : "^1.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"electron": {"type": "string"}, "electron-packager": {"type": "string"}, "windows-shortcuts-ps": {"type": "string"}}, "required": ["electron", "electron-packager", "windows-shortcuts-ps"]}}, "required": ["name", "version", "main", "scripts", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "null"}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1384, "citation_title" : "The Heights of Americans in Three Centuries: Some Economic and Demographic Implications", "citation_author" : ["Kenneth L. Sokoloff"], "citation_publication_date" : "1984-06-01", "issue_date" : "1984-06-01", "revision_date" : "None", "topics" : null, "program" : ["Development of the American Economy"], "projects" : null, "working_groups" : null, "abstract" : "\n\nThis paper discusses the potential usefulness of anthropometric measurements in exploring the contributions of nutrition to American economic growth and demographic change. It argues that although the value of height-by-age data to economic historians will ultimately be resolved in the context of investigating specific issues, the early results of the NBER Projecton Long-term Trends in Nutrition, Labor Productivity, and Labor Welfare have been encouraging. Among the most significant findings to date are: (1)that by the time of the Revolution, Americans had attained a mean final height (and net nutritional status) that was very high, one that European populations did not generally reach until the twentieth century; (2) that the variation in stature across occupational classes was much less in the U.S. than in Europe; (3) that natives of the South have been taller than those from other regions of the U.S. since the middle of the eighteenth century, and that their absolute height increased during the antebellum period while mortality was declining there; and (4) that natives of large antebellum cities were much shorter than their country men born in rural areas or in small cities. The paper also examines, in a preliminary fashion, how a newly available data set bears on the hypothesis that a cycle in U.S. final heights began during the antebellum period. The theory might continue to be sustained, but a sample of U.S. Army recruits from 1850 to1855 does not seem to provide much support for it.\n\n", "acknowledgement" : "\n"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "null"}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "events": {"type": "array", "items": {"type": "object", "properties": {"alpha": {"type": "number"}, "style": {"type": "object", "properties": {"posY": {"type": "number"}, "dir": {"type": "integer"}, "text": {"type": "string"}, "posX": {"type": "number"}, "mode": {"type": "integer"}}, "required": ["posY", "dir", "text", "posX", "mode"]}}, "required": ["alpha", "style"]}}}, "required": ["id", "events"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "NG0024", "events" : [{"alpha" : 0.4, "style" : {"posY" : -230.2, "dir" : 1, "text" : "META \uc5f0\uad6c\uc2e4\uc5d0\ub294 <color=#ff5c5c>\uc5d0\ub108\uc9c0 \ud65c\uc131\ud654</color>, <color=#ff5c5c>\ud568\uc7a5 \uac15\ud654</color>, <color=#ff5c5c>\uc804\uc220 \uc591\uc131</color>, <color=#ff5c5c>\uc815\ubcf4 \ub3d9\uae30\ud654</color> \ub124 \uac00\uc9c0 \uc2dc\uc2a4\ud15c \ubaa8\ub4c8\uc774 \uc788\uc2b5\ub2c8\ub2e4.", "posX" : -332.5, "mode" : 2}}, {"ui" : {"fingerPos" : {"rotateX" : 0, "posY" : -58.49, "posX" : 81.69, "rotateY" : 0, "rotateZ" : 0}, "path" : "UICamera/Canvas/UIMain/MetaCharacterUI(Clone)/HidePanel/MenuPanel/TacticsBtn", "triggerType" : [1]}, "alpha" : 0.4, "style" : {"posY" : -186.8, "dir" : 1, "text" : "META \uce90\ub9ad\ud130\uc758 \uc804\uc220 \uc591\uc131\uc744 \ubcf4\uc2dc\uc8e0.", "posX" : 634.32, "mode" : 2}}, {"ui" : {"fingerPos" : {"rotateX" : 0, "posY" : 0, "posX" : 0, "rotateY" : 0, "rotateZ" : 0}, "path" : "OverlayCamera/Overlay/UIMain/MetaCharacterTacticsUI(Clone)/SkillPanel/Skills/Content", "pathIndex" : 0, "triggerType" : [1]}, "alpha" : 0.4, "style" : {"posY" : -133, "dir" : 1, "text" : "META \uce90\ub9ad\ud130\uc758 \uc2a4\ud0ac\uc740 \ub808\ubca8\uc5c5 \uc9c4\ud589 \uc804 \uc6b0\uc120 \ud574\uc81c\ub97c \ud574\uc57c\ud569\ub2c8\ub2e4.", "posX" : 0, "mode" : 2}}, {"alpha" : 0.4, "style" : {"posY" : 0, "dir" : -1, "text" : "\uc77c\uc815 \uc218\ub7c9\uc758 \uc2a4\ud0ac \uc720\ud615\uc5d0 \ub9de\ub294 \uc2a4\ud0ac\ubd81\uc744 \uc18c\ubaa8\ud558\uc5ec \ud574\uc81c \uac00\ub2a5", "posX" : 383.59, "mode" : 2}}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "events": {"type": "array", "items": {"type": "object", "properties": {"alpha": {"type": "number"}, "style": {"type": "object", "properties": {"posY": {"type": "number"}, "dir": {"type": "integer"}, "text": {"type": "string"}, "posX": {"type": "number"}, "mode": {"type": "integer"}}, "required": ["posY", "dir", "text", "posX", "mode"]}}, "required": ["alpha", "style"]}}}, "required": ["id", "events"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "do": {"type": "string"}, "dont": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "type": {"type": "string"}, "date": {"type": "string"}}, "required": ["name", "do", "dont", "tags", "category", "type", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "augmented_reality", "do" : "<ul><li>Use this icon for augmented reality applications or software</li></ul>", "dont" : "<ul><li>Don't use it for virtual reality</li></ul>", "tags" : ["ar", "real world", "interactive", "real life", "experience", "eos"], "category" : "augmented reality", "type" : "static", "date" : "9/2/2021"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "do": {"type": "string"}, "dont": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "type": {"type": "string"}, "date": {"type": "string"}}, "required": ["name", "do", "dont", "tags", "category", "type", "date"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 100718, "info" : {"name" : "Twitter ( small header, consistent font-size )", "description" : "- Reduced the header height on the new profiles.\r\n- Text-size is the same in all tweets on the new profiles", "additionalInfo" : null, "format" : "uso", "category" : "twitter", "createdAt" : "2014-04-23T08:49:42.000Z", "updatedAt" : "2014-04-23T08:49:42.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 263393, "name" : "janvl"}}, "stats" : {"installs" : {"total" : 121, "weekly" : 0}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain(\"twitter.com\") {\r\n.ProfileTweet-text{\r\n font-size:14px !important;\r\n line-height:28px !important;\r\n}\r\n \r\n.ProfileCanopy--large, \r\n.ProfileCanopy--large .ProfileCanopy-header {\r\n max-height: 300px !important;\r\n}\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "string"}}, "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" : 73788, "name" : "safe came home button", "description" : "safe came home button", "user" : {"id" : 110069, "name" : "sherrice", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : "ccbysa"}, "updated" : "2012-09-09T15:29:32.000Z", "weekly_install_count" : 0, "total_install_count" : 149, "rating" : null, "after_screenshot_name" : "https://userstyles.org/style_screenshots/73788_after.jpeg?r=1589011430", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2012-09-09T15:29:32.000Z", "category" : "site", "raw_subcategory" : "tumblr", "subcategory" : "tumblr", "additional_info" : null, "style_tags" : [], "css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"www.tumblr.com\") {\r\n\r\n#home_button > A {\r\n background-image: url(\"http://25.media.tumblr.com/tumblr_ma3sovPcG71qzv8qko1_r1_100.png\") !important;\r\n background-size: 35px 40px !important;\r\n margin-left: 5px !important;\r\n opacity: 1 !important;\r\n position: relative !important;\r\n top: 3px !important;\r\n}\r\n\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/73788/safe-came-home-button.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": "string"}}, "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": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[351.69099096244855, 603.4780157301547], [328.92395493625855, 605.7414340773366], [303.51207064503836, 607.8590911016051], [280.2178433780865, 612.0944051501417], [267.5119012324764, 618.4473762229468], [267.5119012324764, 648.0945745627037], [278.1001863538182, 660.8005167083138], [301.39441362077, 679.859429926729], [328.92395493625855, 677.7417729024605], [343.74755410613704, 669.2711448053872], [367.0417813730889, 658.6828596840455], [386.100694591504, 652.3298886112404], [407.2772648341875, 645.9769175384354], [422.10086400406595, 637.506289441362]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"collectCoverage": {"type": "boolean"}, "collectCoverageFrom": {"type": "array", "items": {"type": "string"}}}, "required": ["collectCoverage", "collectCoverageFrom"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"collectCoverage" : true, "collectCoverageFrom" : ["src/main/javascript/*"]}
json_instruct
{"type": "object", "properties": {"collectCoverage": {"type": "boolean"}, "collectCoverageFrom": {"type": "array", "items": {"type": "string"}}}, "required": ["collectCoverage", "collectCoverageFrom"], "$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"}, "image": {"type": "string"}, "video": {"type": "string"}}, "required": ["name", "description", "image", "video"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "outsideOUTSIDE SXSW2019 Show - 1st BootlegToken ever!!!", "description" : "Recording of the artist outsideOUTSIDE at the Consensys SXSW Blockchain house. Captured March 13th, 2019 @ 8PM. https://www.outsideoutside.band", "image" : "https://s3.amazonaws.com/web3studio-bootlegs/outsideOUTSIDE-SXSW2019-Bootleg-cover.png", "video" : "https://s3.amazonaws.com/web3studio-bootlegs/outsideOUTSIDE-SXSW2019-Bootleg.mp4"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "video": {"type": "string"}}, "required": ["name", "description", "image", "video"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"origin": {"type": "array", "items": {"type": "string"}}, "responseHeader": {"type": "array", "items": {"type": "string"}}, "method": {"type": "array", "items": {"type": "string"}}, "maxAgeSeconds": {"type": "integer"}}, "required": ["origin", "responseHeader", "method", "maxAgeSeconds"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"origin" : ["*"], "responseHeader" : ["Content-Type", "Authorization", "Content-Length", "User-Agent", "x-goog-resumable"], "method" : ["PUT", "OPTIONS"], "maxAgeSeconds" : 3600}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"origin": {"type": "array", "items": {"type": "string"}}, "responseHeader": {"type": "array", "items": {"type": "string"}}, "method": {"type": "array", "items": {"type": "string"}}, "maxAgeSeconds": {"type": "integer"}}, "required": ["origin", "responseHeader", "method", "maxAgeSeconds"]}, "$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"}, "bin": {"type": "object", "properties": {"smsboomer": {"type": "string"}}, "required": ["smsboomer"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "generate": {"type": "string"}}, "required": ["test", "generate"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@axetroy/context": {"type": "string"}, "axios": {"type": "string"}, "caporal": {"type": "string"}, "chalk": {"type": "string"}, "fs-extra": {"type": "string"}, "lodash": {"type": "string"}, "p-retry": {"type": "string"}, "p-timeout": {"type": "string"}, "progress": {"type": "string"}, "puppeteer": {"type": "string"}}, "required": ["@axetroy/context", "axios", "caporal", "chalk", "fs-extra", "lodash", "p-retry", "p-timeout", "progress", "puppeteer"]}, "devDependencies": {"type": "object", "properties": {"@types/p-timeout": {"type": "string"}, "@types/puppeteer": {"type": "string"}, "all-contributors-cli": {"type": "string"}}, "required": ["@types/p-timeout", "@types/puppeteer", "all-contributors-cli"]}}, "required": ["name", "version", "description", "main", "bin", "scripts", "keywords", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "smsboomer", "version" : "1.2.6", "description" : "\u5229\u7528chrome\u7684headless\u6a21\u5f0f\uff0c\u6a21\u62df\u7528\u6237\u6ce8\u518c\u8fdb\u884c\u77ed\u4fe1\u8f70\u70b8\u673a", "main" : "index.js", "bin" : {"smsboomer" : "./bin/boomer"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "generate" : "all-contributors generate"}, "keywords" : ["sms", "boom", "chrome", "headless", "puppeteer"], "repository" : {"type" : "git", "url" : "git+https://github.com/axetroy/sms-boom.git"}, "author" : "", "license" : "Apache", "bugs" : {"url" : "https://github.com/axetroy/sms-boom/issues"}, "homepage" : "https://github.com/axetroy/sms-boom#readme", "dependencies" : {"@axetroy/context" : "^0.1.0", "axios" : "^0.17.0", "caporal" : "^0.8.0", "chalk" : "^2.3.0", "fs-extra" : "^4.0.2", "lodash" : "^4.17.4", "p-retry" : "^1.0.0", "p-timeout" : "^1.2.0", "progress" : "^2.0.0", "puppeteer" : "^0.13.0"}, "devDependencies" : {"@types/p-timeout" : "^1.2.0", "@types/puppeteer" : "^0.13.0", "all-contributors-cli" : "^4.5.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"smsboomer": {"type": "string"}}, "required": ["smsboomer"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "generate": {"type": "string"}}, "required": ["test", "generate"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@axetroy/context": {"type": "string"}, "axios": {"type": "string"}, "caporal": {"type": "string"}, "chalk": {"type": "string"}, "fs-extra": {"type": "string"}, "lodash": {"type": "string"}, "p-retry": {"type": "string"}, "p-timeout": {"type": "string"}, "progress": {"type": "string"}, "puppeteer": {"type": "string"}}, "required": ["@axetroy/context", "axios", "caporal", "chalk", "fs-extra", "lodash", "p-retry", "p-timeout", "progress", "puppeteer"]}, "devDependencies": {"type": "object", "properties": {"@types/p-timeout": {"type": "string"}, "@types/puppeteer": {"type": "string"}, "all-contributors-cli": {"type": "string"}}, "required": ["@types/p-timeout", "@types/puppeteer", "all-contributors-cli"]}}, "required": ["name", "version", "description", "main", "bin", "scripts", "keywords", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1115011006", "district_id" : "1115011", "name" : "PASI KEUBEU DOM"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"courseCode" : "SPH5307", "courseCredit" : "4", "description" : "This module on Principles of Workplace Health aims at providing an overview on Occupational Health & Safety and will focus on the principles of risk control and the prevention of work-related diseases and accidents at the workplace. It is specifically designed for professionals working in employee health and occupational health, including health professionals such as nurses and doctors as well as other professionals who are interested in workplace health such as technicians, engineers, safety professionals, social science and sports science professionals who work in a corporate environment.", "faculty" : "SSH School of Public Health", "title" : "Principles of Workplace Health"}
json_instruct
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "db1fc5e6-8736-467f-b3c8-6f7689f3391d", "name" : "Childeric Primary School", "code" : "V", "address" : {"addressLine1" : "Childeric Road", "addressLine2" : "London", "postcode" : "SE14 6DG"}, "organisation" : {"id" : "3b39f229-cdd2-4d41-b4e0-9e9ae5ab006d", "code" : "1DS", "name" : "John Donne Primary School"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-rsa": {"type": "string"}}, "required": ["node-rsa"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "licenses", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ursa-purejs", "version" : "0.0.3", "description" : "A pure-js drop-in replacement for URSA, using node-rsa", "main" : "lib/ursa.js", "scripts" : {"test" : "node test/test.js"}, "repository" : {"type" : "git", "url" : "https://github.com/roblabla/ursa-purejs"}, "keywords" : ["rsa"], "author" : "roblabla", "licenses" : [{"type" : "Apache 2.0", "url" : "http://www.apache.org/licenses/LICENSE-2.0.html"}], "bugs" : {"url" : "https://github.com/roblabla/ursa-purejs/issues"}, "homepage" : "https://github.com/roblabla/ursa-purejs", "dependencies" : {"node-rsa" : "^1.1.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-rsa": {"type": "string"}}, "required": ["node-rsa"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "licenses", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"lodash.js": {"type": "string"}, "lodash.min.js": {"type": "string"}}, "required": ["lodash.js", "lodash.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lodash.js" : "sha256-eHbZmzBv5in6lMwSJ177W6z+X7QyKWfdinX1a2SzQZ8=", "lodash.min.js" : "sha256-N46rcytntMcJeqz79Hc0u1cz1e/zMLwZ4ojCKiVPrpw="}
json_instruct
{"type": "object", "properties": {"lodash.js": {"type": "string"}, "lodash.min.js": {"type": "string"}}, "required": ["lodash.js", "lodash.min.js"], "$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"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "paypalEmail": {"type": "string"}}, "required": ["id", "name", "paypalEmail"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 11692, "info" : {"name" : "force ikariam left", "description" : "force ikariam left", "additionalInfo" : null, "format" : "uso", "category" : "ikariam", "createdAt" : "2008-10-30T20:58:48.000Z", "updatedAt" : "2008-10-30T20:58:48.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 15892, "name" : "fukid", "paypalEmail" : "fukid@siulok.com"}}, "stats" : {"installs" : {"total" : 365, "weekly" : 0}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain(s1.ikariam.hk) {\r\n#container{\r\nmargin :0 !important;\r\n}\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "paypalEmail": {"type": "string"}}, "required": ["id", "name", "paypalEmail"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"$schema": {"type": "string"}, "contentVersion": {"type": "string"}, "apiProfile": {"type": "string"}, "parameters": {"type": "object", "properties": {}, "required": []}, "variables": {"type": "object", "properties": {}, "required": []}, "functions": {"type": "array", "items": {}}, "resources": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "apiVersion": {"type": "string"}, "identity": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "properties": {"type": "object", "properties": {"version": {"type": "string"}, "sslEnforcement": {"type": "string"}, "createMode": {"type": "string"}, "sourceServerId": {"type": "string"}}, "required": ["version", "sslEnforcement", "createMode", "sourceServerId"]}, "location": {"type": "string"}, "tags": {"type": "object", "properties": {}, "required": []}, "resources": {"type": "array", "items": {}}}, "required": ["name", "type", "apiVersion", "identity", "properties", "location", "tags", "resources"]}}, "outputs": {"type": "object", "properties": {}, "required": []}}, "required": ["$schema", "contentVersion", "apiProfile", "parameters", "variables", "functions", "resources", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion" : "2.0.0.0", "apiProfile" : "2019-03-01-hybrid", "parameters" : {}, "variables" : {}, "functions" : [], "resources" : [{"name" : "server", "type" : "Microsoft.DBforMySQL/servers", "apiVersion" : "2017-12-01", "identity" : {"type" : "SystemAssigned"}, "properties" : {"version" : "5.6", "sslEnforcement" : "Disabled", "createMode" : "GeoRestore", "sourceServerId" : "id"}, "location" : "location", "tags" : {}, "resources" : []}], "outputs" : {}}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "contentVersion": {"type": "string"}, "apiProfile": {"type": "string"}, "parameters": {"type": "object", "properties": {}, "required": []}, "variables": {"type": "object", "properties": {}, "required": []}, "functions": {"type": "array", "items": {}}, "resources": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "apiVersion": {"type": "string"}, "identity": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "properties": {"type": "object", "properties": {"version": {"type": "string"}, "sslEnforcement": {"type": "string"}, "createMode": {"type": "string"}, "sourceServerId": {"type": "string"}}, "required": ["version", "sslEnforcement", "createMode", "sourceServerId"]}, "location": {"type": "string"}, "tags": {"type": "object", "properties": {}, "required": []}, "resources": {"type": "array", "items": {}}}, "required": ["name", "type", "apiVersion", "identity", "properties", "location", "tags", "resources"]}}, "outputs": {"type": "object", "properties": {}, "required": []}}, "required": ["$schema", "contentVersion", "apiProfile", "parameters", "variables", "functions", "resources", "outputs"], "$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"}, "license": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "githubUsername": {"type": "string"}}, "required": ["name", "url", "githubUsername"]}}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {}, "required": []}, "dependencies": {"type": "object", "properties": {"@types/events": {"type": "string"}, "@types/node": {"type": "string"}}, "required": ["@types/events", "@types/node"]}, "typesPublisherContentHash": {"type": "string"}, "typeScriptVersion": {"type": "string"}}, "required": ["name", "version", "description", "license", "contributors", "main", "repository", "scripts", "dependencies", "typesPublisherContentHash", "typeScriptVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@types/redis", "version" : "2.8.6", "description" : "TypeScript definitions for redis", "license" : "MIT", "contributors" : [{"name" : "Carlos Ballesteros Velasco", "url" : "https://github.com/soywiz", "githubUsername" : "soywiz"}, {"name" : "Peter Harris", "url" : "https://github.com/CodeAnimal", "githubUsername" : "CodeAnimal"}, {"name" : "TANAKA Koichi", "url" : "https://github.com/MugeSo", "githubUsername" : "MugeSo"}, {"name" : "Stuart Schechter", "url" : "https://github.com/UppaJung", "githubUsername" : "UppaJung"}, {"name" : "Junyoung Choi", "url" : "https://github.com/Rokt33r", "githubUsername" : "Rokt33r"}, {"name" : "James Garbutt", "url" : "https://github.com/43081j", "githubUsername" : "43081j"}, {"name" : "Bartek Szczepa\u0144ski", "url" : "https://github.com/barnski", "githubUsername" : "barnski"}], "main" : "", "repository" : {"type" : "git", "url" : "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"}, "scripts" : {}, "dependencies" : {"@types/events" : "*", "@types/node" : "*"}, "typesPublisherContentHash" : "c88a65c589d534fc9fbd5e416b406bdf5459afc96f9d8e4ed77afa918182a4f6", "typeScriptVersion" : "2.0"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "githubUsername": {"type": "string"}}, "required": ["name", "url", "githubUsername"]}}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {}, "required": []}, "dependencies": {"type": "object", "properties": {"@types/events": {"type": "string"}, "@types/node": {"type": "string"}}, "required": ["@types/events", "@types/node"]}, "typesPublisherContentHash": {"type": "string"}, "typeScriptVersion": {"type": "string"}}, "required": ["name", "version", "description", "license", "contributors", "main", "repository", "scripts", "dependencies", "typesPublisherContentHash", "typeScriptVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"use": {"type": "string"}, "kty": {"type": "string"}, "kid": {"type": "string"}, "alg": {"type": "string"}, "n": {"type": "string"}, "e": {"type": "string"}, "d": {"type": "string"}, "p": {"type": "string"}, "q": {"type": "string"}, "dp": {"type": "string"}, "dq": {"type": "string"}, "qi": {"type": "string"}}, "required": ["use", "kty", "kid", "alg", "n", "e", "d", "p", "q", "dp", "dq", "qi"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"use" : "enc", "kty" : "RSA", "kid" : "client2-OAEP", "alg" : "RSA-OAEP", "n" : "qPNLdO3qcM4E4QU-bGiYaWSIY4tL52uDOz8o4oyFNBFAp7-W98ybc0Kww1FsguOfQqQq7w2x8NAcxX6W-roytufcn3o-o8gI_8y3gc130H-L7jjSt5pyfiI8xiiYkGuI5xwTHwAlr_WrbaEzm9EiMLoVyzmgZATYNfdLsCzlAq8HOdu0MSatBxoD8Xn05MrNwFlno8fkh8DE6hwqSKPcIBqNEccDqwiq2PZd3o8Gh85F9ISALSamsjKutjpIOsax-odOVCmUa1ae98HEgWZOg4MlU2hOsS4QKNSj54Pa766v-FlS99Tq8mSt2gjLVANeWKUOR5C29zPFcV7WrkKhWQ", "e" : "AQAB", "d" : "N90qqCE7Ec2tY1I-j84OB1tMlc2rbXvpSp_Zvv9D1DGYNV9uZcVr6TK2C_9SZ_0n3fs2jxDyM3Q87ziqZ4FF36DPHJRpPfKYtyxTyUHNSk3CUSTM2BTjor1jZwppV-eWvwRTdj6wN3x-EKPq0qzWJ1KAflAxrqDDdSSuDDTsDHSV149U2A7QNDU8a2gyM_qh2ZuVutK-Fni3lXecJlRXPg44wTlNG_HhBU3KF2sYhXSpvqHtSgaj47KqSbXn3u_ALOCy5c2P68ke5gR9_3bFV9FtubrbKFc7Jhsh0sHR8uf8YB4_3e3-3Cy7-trCbmTohqQmdGmBgxn0ZS9mUHAE4Q", "p" : "y1VzdvIkhwi0OHW04Ghp4vv2X8pf49mY-yE7_dGHMizsepmaywW8rbmfnzchabBbp5iLfQ3D7KpuDIklAuNaVlkqR2xemUS3MehJgi13AoahxhuOGlDhw-mZfebSnBrslK1y1ZxAsUTxXBbuEClUtole1MPgD_haCy6P8jk4qU0", "q" : "1LX3S_kZiUNNDMH1cwohq1NQZYy0_iNKDAJkxhDlKzWUG7DIXntMu8F7d-x57FEXAIPDwe-WuyMG-omCmTtDop9YQcdAvfDPvETNq8a629KmSS8ae8lvJ2WA8Z9maPMer6t1AjwP4WGEhKLeRxi7wfhgpoX7eviSbUUyanLWcj0", "dp" : "up35tEB23-xQI8V8Nb3--NGRhMcjjOZoLoyJF-JXN-jdPYR--jiQu80ywBkENJEk_cPWufaJTEv7Zsv0SRtLDRcW46iFhhv4Gvj7hlud75aLIVym5mY3Xuyl8FSKFbXsTmSGkaCwC0KgVonBAto8IrAfdh00JtQkKEEa4hA8fb0", "dq" : "Oq2j9bpW-A2v0Kgk7MJLvXZzREBHoZ_cimmSoS0B-ySBog3niGDdLyJVzCRZEf7gqIyw0OwmGaO1BiIu-9RkeRUaBLNRwdQPinE0h4GABKocoy2yUZmk5ypSItWFK8h9m5ph4ebtvo_nPausQ9Kn4P-Csg1d7XNq-WfQW5soW0U", "qi" : "TjFq2A15aY0ENCzMcltRJZnlLwp50s2BFTlbPPmqWyw3jIJ3PNvvlTWtRlUc2f0-62QEvxgWDozp42pMJuRbUxSySDF4srH6p2-JEUpfsXzvGwUv2I_PyfC0V14tTHB6aLfTO1NwGqBPTVBZdnIVqtB9WsSLy6ph-Bf7Q68sxoE"}
json_instruct
{"type": "object", "properties": {"use": {"type": "string"}, "kty": {"type": "string"}, "kid": {"type": "string"}, "alg": {"type": "string"}, "n": {"type": "string"}, "e": {"type": "string"}, "d": {"type": "string"}, "p": {"type": "string"}, "q": {"type": "string"}, "dp": {"type": "string"}, "dq": {"type": "string"}, "qi": {"type": "string"}}, "required": ["use", "kty", "kid", "alg", "n", "e", "d", "p", "q", "dp", "dq", "qi"], "$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#"}
["v9.9.0", "v9.8.0", "v9.7.0", "v9.6.0", "v9.5.0", "v9.4.0", "v9.3.0", "v9.2.0", "v9.1.0", "v9.0.1", "v9.0.0", "v8.1.0", "v8.0.0", "v7.2.0", "v7.1.0", "v7.0.0", "v6.0.0", "v5.0.1", "v5.0.0", "v4.0.0", "v3.0.1", "v3.0.0", "v2.0.1", "v2.0.0", "v1.24.0", "v1.23.2", "v1.23.1", "v1.23.0", "v1.22.1", "v1.22.0", "v1.21.0", "v1.20.0", "v1.19.0", "v1.18.0", "v1.17.0", "v1.16.1", "v1.16.0", "1.15.0", "v1.14.4", "v1.14.3", "v1.14.2", "v1.14.1", "v1.14.0", "v1.13.0", "v1.12.1", "1.12.0", "v1.11.3", "v1.11.2", "v1.11.1", "1.11.0", "v1.10.4", "v1.10.3", "v1.10.1"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"usage": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "params": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "type", "description"]}}, "return": {"type": "string"}, "example": {"type": "array", "items": {"type": "string"}}}, "required": ["usage", "description", "params", "return", "example"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"usage" : "combineAngles(<angles A>, <angles B>)", "description" : ["Returns angles B reoriented by angles A."], "params" : [{"name" : "angles A", "type" : "Vector3", "description" : ["Angles representing the orientation in which to place angles B."]}, {"name" : "angles B", "type" : "Vector3", "description" : ["Angles which will be reoriented."]}], "return" : "Vector3", "example" : ["crateAnglesInWorld = combineAngles(boatAngles, crateAnglesInBoat);"]}
json_instruct
{"type": "object", "properties": {"usage": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "params": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "type", "description"]}}, "return": {"type": "string"}, "example": {"type": "array", "items": {"type": "string"}}}, "required": ["usage", "description", "params", "return", "example"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"YaWhois.App": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "required": ["YaWhois.App"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"profiles" : {"YaWhois.App" : {"commandName" : "Project", "commandLineArgs" : "-I --verbose example.com"}}}
json_instruct
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"YaWhois.App": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "required": ["YaWhois.App"]}}, "required": ["profiles"], "$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"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "publish": {"type": "string"}}, "required": ["dev", "build", "publish"]}, "devDependencies": {"type": "object", "properties": {"vuepress": {"type": "string"}, "vuepress-plugin-code-copy": {"type": "string"}}, "required": ["vuepress", "vuepress-plugin-code-copy"]}}, "required": ["name", "version", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "docs", "version" : "1.0.0", "scripts" : {"dev" : "vuepress dev .", "build" : "vuepress build .", "publish" : "tools\\deploy.sh"}, "devDependencies" : {"vuepress" : "^1.8.2", "vuepress-plugin-code-copy" : "^1.0.6"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "publish": {"type": "string"}}, "required": ["dev", "build", "publish"]}, "devDependencies": {"type": "object", "properties": {"vuepress": {"type": "string"}, "vuepress-plugin-code-copy": {"type": "string"}}, "required": ["vuepress", "vuepress-plugin-code-copy"]}}, "required": ["name", "version", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "start_local": {"type": "string"}, "test": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["start", "start_local", "test", "coverage"]}, "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": {"body-parser": {"type": "string"}, "cors": {"type": "string"}, "errorhandler": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "npm": {"type": "string"}}, "required": ["body-parser", "cors", "errorhandler", "express", "mongoose", "morgan", "npm"]}, "devDependencies": {"type": "object", "properties": {"codecov": {"type": "string"}, "dotenv": {"type": "string"}, "istanbul": {"type": "string"}, "jasmine": {"type": "string"}, "supertest": {"type": "string"}}, "required": ["codecov", "dotenv", "istanbul", "jasmine", "supertest"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "do-it-2day-server", "version" : "1.0.0", "description" : "Server for the DoIt2Day Angular sample app.", "main" : "server.js", "scripts" : {"start" : "node src/server.js", "start_local" : "node -r dotenv/config src/server.js", "test" : "jasmine", "coverage" : "istanbul cover ./node_modules/jasmine/bin/jasmine.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/fabian-peters/DoIt2DayServer.git"}, "author" : "fabian-peters", "license" : "MIT", "bugs" : {"url" : "https://github.com/fabian-peters/DoIt2DayServer/issues"}, "homepage" : "https://github.com/fabian-peters/DoIt2DayServer#readme", "dependencies" : {"body-parser" : "^1.19.0", "cors" : "^2.8.5", "errorhandler" : "^1.5.1", "express" : "^4.17.1", "mongoose" : "^5.12.12", "morgan" : "^1.10.0", "npm" : "^7.6.0"}, "devDependencies" : {"codecov" : "^3.8.1", "dotenv" : "^8.2.0", "istanbul" : "^0.4.5", "jasmine" : "^3.7.0", "supertest" : "^6.1.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"}, "start_local": {"type": "string"}, "test": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["start", "start_local", "test", "coverage"]}, "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": {"body-parser": {"type": "string"}, "cors": {"type": "string"}, "errorhandler": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}, "morgan": {"type": "string"}, "npm": {"type": "string"}}, "required": ["body-parser", "cors", "errorhandler", "express", "mongoose", "morgan", "npm"]}, "devDependencies": {"type": "object", "properties": {"codecov": {"type": "string"}, "dotenv": {"type": "string"}, "istanbul": {"type": "string"}, "jasmine": {"type": "string"}, "supertest": {"type": "string"}}, "required": ["codecov", "dotenv", "istanbul", "jasmine", "supertest"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"nombre": {"type": "string"}, "alias": {"type": "string"}, "puesto": {"type": "string"}, "descripcion": {"type": "string"}, "transfondo": {"type": "string"}, "talentos": {"type": "string"}, "cerebro": {"type": "string"}, "cuerpo": {"type": "string"}, "tecnologia": {"type": "string"}, "labia": {"type": "string"}, "estres": {"type": "string"}, "alarde": {"type": "string"}, "caracteristicas": {"type": "string"}, "explicacion_normal": {"type": "string"}, "explicacion_preternatural": {"type": "string"}, "titulo-tabla": {"type": "string"}, "resultado": {"type": "string"}, "descripcion2": {"type": "string"}, "resultado6": {"type": "string"}, "resultado5": {"type": "string"}, "resultado4": {"type": "string"}, "resultado3": {"type": "string"}, "resultado2": {"type": "string"}, "resultado1": {"type": "string"}}, "required": ["nombre", "alias", "puesto", "descripcion", "transfondo", "talentos", "cerebro", "cuerpo", "tecnologia", "labia", "estres", "alarde", "caracteristicas", "explicacion_normal", "explicacion_preternatural", "titulo-tabla", "resultado", "descripcion2", "resultado6", "resultado5", "resultado4", "resultado3", "resultado2", "resultado1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nombre" : "Nombre Completo:", "alias" : "Alias:", "puesto" : "Puesto:", "descripcion" : "Descripci\u00f3n:", "transfondo" : "Transfondo:", "talentos" : "Talentos:", "cerebro" : "CEREBRO", "cuerpo" : "CUERPO", "tecnologia" : "TECNOLOG\u00cdA", "labia" : "LABIA", "estres" : "ESTR\u00c9S ACTUAL", "alarde" : "ALARDE ACTUAL", "caracteristicas" : "Caracter\u00edsticas", "explicacion_normal" : "Agentes normales - Reparte 9 dados entre las cuatro habilidades de personaje. Van de 1 a 4.", "explicacion_preternatural" : "Agentes preternaturales - Reparte 10 dados entre las cuatro habilidades de personaje. Van de 0 a 10. Coloque los dados que sobren sobre el apartado de Alarde", "titulo-tabla" : "Tabla de tirada de habilidad", "resultado" : "Resultado", "descripcion2" : "Descripci\u00f3n", "resultado6" : "\u00a1Genial! Describe el resultado y gana 2 dados de franquicia.", "resultado5" : "Bueno. Describe el resultado y gana 1 dado de franquicia.", "resultado4" : "Aceptable. Describe el resultado. Aunque es principalmente positivo,tienes que incluir un efecto negativo o humor\u00edstico.", "resultado3" : "Regular. El DJ decide tu destino, pero puede que te d\u00e9 la oportunidad de sugerir un \u00fanico efecto positivo (pero menor).", "resultado2" : "Malo. El DJ decide tu destino, aunque puedes sugerirle algo negativo que sea apropiado.", "resultado1" : "Terrible. El DJ puede ensa\u00f1arse contigo y ponerte en una situaci\u00f3n realmente complicada resultado de tu incompetencia."}
json_instruct
{"type": "object", "properties": {"nombre": {"type": "string"}, "alias": {"type": "string"}, "puesto": {"type": "string"}, "descripcion": {"type": "string"}, "transfondo": {"type": "string"}, "talentos": {"type": "string"}, "cerebro": {"type": "string"}, "cuerpo": {"type": "string"}, "tecnologia": {"type": "string"}, "labia": {"type": "string"}, "estres": {"type": "string"}, "alarde": {"type": "string"}, "caracteristicas": {"type": "string"}, "explicacion_normal": {"type": "string"}, "explicacion_preternatural": {"type": "string"}, "titulo-tabla": {"type": "string"}, "resultado": {"type": "string"}, "descripcion2": {"type": "string"}, "resultado6": {"type": "string"}, "resultado5": {"type": "string"}, "resultado4": {"type": "string"}, "resultado3": {"type": "string"}, "resultado2": {"type": "string"}, "resultado1": {"type": "string"}}, "required": ["nombre", "alias", "puesto", "descripcion", "transfondo", "talentos", "cerebro", "cuerpo", "tecnologia", "labia", "estres", "alarde", "caracteristicas", "explicacion_normal", "explicacion_preternatural", "titulo-tabla", "resultado", "descripcion2", "resultado6", "resultado5", "resultado4", "resultado3", "resultado2", "resultado1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"waypoints": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}}, "required": ["waypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"waypoints" : [{"lat" : -27.503614431928114, "lng" : 153.01686508017664}, {"lat" : -27.50013119151871, "lng" : 153.02176858184308}, {"lat" : -27.494500226154184, "lng" : 153.0190317815483}, {"lat" : -27.491075603673387, "lng" : 153.01327948869763}, {"lat" : -27.49122258478291, "lng" : 153.00630316640743}, {"lat" : -27.49108252791338, "lng" : 152.999323103374}, {"lat" : -27.487228047014415, "lng" : 152.99567377580203}, {"lat" : -27.48170454692707, "lng" : 152.99886448379564}, {"lat" : -27.476771463212252, "lng" : 153.00312625366257}, {"lat" : -27.472387444095723, "lng" : 153.00808651955955}, {"lat" : -27.468885430354067, "lng" : 153.01387822347306}, {"lat" : -27.470857247430622, "lng" : 153.01985628518628}, {"lat" : -27.476080418553387, "lng" : 153.02365144572224}, {"lat" : -27.480716619866765, "lng" : 153.0281262596006}, {"lat" : -27.477975961832325, "lng" : 153.03304966696314}, {"lat" : -27.471756577770556, "lng" : 153.0328563028655}, {"lat" : -27.465576349859, "lng" : 153.03281729526827}, {"lat" : -27.465076173838717, "lng" : 153.0378719601776}, {"lat" : -27.471084724711915, "lng" : 153.03954448634056}, {"lat" : -27.47620693852897, "lng" : 153.0430824391123}, {"lat" : -27.475147756343755, "lng" : 153.04938459701123}, {"lat" : -27.47185030101606, "lng" : 153.0551996536668}, {"lat" : -27.466265884933105, "lng" : 153.0548886650335}, {"lat" : -27.460550638025712, "lng" : 153.05221085116563}, {"lat" : -27.454352224090403, "lng" : 153.05185601703482}, {"lat" : -27.448457614202034, "lng" : 153.0496394197947}, {"lat" : -27.442466409496856, "lng" : 153.04953560966197}, {"lat" : -27.44074191934195, "lng" : 153.05597608960343}, {"lat" : -27.44157196595844, "lng" : 153.06290421376934}, {"lat" : -27.443317269247974, "lng" : 153.06962433489107}]}
json_instruct
{"type": "object", "properties": {"waypoints": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}}, "required": ["waypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["key", "value", "enabled"]}}, "_postman_variable_scope": {"type": "string"}, "_postman_exported_at": {"type": "string"}, "_postman_exported_using": {"type": "string"}}, "required": ["id", "name", "values", "_postman_variable_scope", "_postman_exported_at", "_postman_exported_using"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "9b33b06a-dd09-45ba-b4da-53c09fb4c282", "name" : "local - 8080", "values" : [{"key" : "host", "value" : "http://localhost:8080", "enabled" : true}], "_postman_variable_scope" : "environment", "_postman_exported_at" : "2018-12-08T20:08:14.603Z", "_postman_exported_using" : "Postman/6.5.3"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["key", "value", "enabled"]}}, "_postman_variable_scope": {"type": "string"}, "_postman_exported_at": {"type": "string"}, "_postman_exported_using": {"type": "string"}}, "required": ["id", "name", "values", "_postman_variable_scope", "_postman_exported_at", "_postman_exported_using"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-4xw8-vwjr-7vpq", "modified" : "2022-05-02T06:18:56Z", "published" : "2022-05-02T06:18:56Z", "aliases" : ["CVE-2010-1097"], "details" : "include/userlogin.class.php in DeDeCMS 5.5 GBK, when session.auto_start is enabled, allows remote attackers to bypass authentication and gain administrative access via a value of 1 for the _SESSION[dede_admin_id] parameter, as demonstrated by a request to uploads/include/dialog/select_soft_post.php.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2010-1097"}, {"type" : "WEB", "url" : "http://bbs.wolvez.org/topic/125/"}, {"type" : "WEB", "url" : "http://osvdb.org/62622"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/38790"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/38469"}], "database_specific" : {"cwe_ids" : ["CWE-287"], "severity" : "MODERATE", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "group": {"type": "string"}, "joblink": {"type": "boolean"}, "name": {"type": "string"}, "potential": {"type": "integer"}, "skills": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "skill": {"type": "string"}, "replaceable": {"type": "boolean"}}, "required": ["id", "skill", "replaceable"]}}}, "required": ["id", "group", "joblink", "name", "potential", "skills"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 8792, "group" : "81313100", "joblink" : false, "name" : "Fachkrankenschwester/-pfleger", "potential" : 25, "skills" : [{"id" : 63090, "skill" : "Krankenhaus-, Praxishygiene", "replaceable" : true}, {"id" : 64582, "skill" : "Patientenbetreuung", "replaceable" : false}, {"id" : 64657, "skill" : "Krankenpflege", "replaceable" : false}, {"id" : 124021, "skill" : "Behandlungspflege", "replaceable" : false}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "group": {"type": "string"}, "joblink": {"type": "boolean"}, "name": {"type": "string"}, "potential": {"type": "integer"}, "skills": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "skill": {"type": "string"}, "replaceable": {"type": "boolean"}}, "required": ["id", "skill", "replaceable"]}}}, "required": ["id", "group", "joblink", "name", "potential", "skills"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"77decb50aa6360f0dc9c8ded9086b94e": {"type": "string"}, "b5d4af08bf61e58d375923977290d67b": {"type": "string"}}, "required": ["77decb50aa6360f0dc9c8ded9086b94e", "b5d4af08bf61e58d375923977290d67b"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"77decb50aa6360f0dc9c8ded9086b94e" : "Shipping cost is {0}.", "b5d4af08bf61e58d375923977290d67b" : "Listening on {0} by {1}."}
json_instruct
{"type": "object", "properties": {"77decb50aa6360f0dc9c8ded9086b94e": {"type": "string"}, "b5d4af08bf61e58d375923977290d67b": {"type": "string"}}, "required": ["77decb50aa6360f0dc9c8ded9086b94e", "b5d4af08bf61e58d375923977290d67b"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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" : "0xee717cc6c1de1c9de5b16ebaa1baa8b4907a4352819becb6d4e1dae62617873a", "parentHash" : "0xe153df41f477902ac13a6f40aeee93340af3c76ad013e0bf7779380568050a6f", "number" : 90882, "timestamp" : 1439646852, "nonce" : "0x9a5c150c7d7ae035", "difficulty" : 3404009812297, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xe6A7a1d47ff21B6321162AEA7C6CB457D5476Bca", "extraData" : "0x476574682f76312e302e312d38326566323666362f6c696e75782f676f312e34", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "c613b8880c8ea3a18354234a43bab93becc5ad55"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}}, "required": ["name", "version", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "extras.angular.plus", "version" : "0.9.2", "main" : ["ngplus-overlay.js"], "dependencies" : {"angular" : ">=1.2.25 <1.4.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}}, "required": ["name", "version", "main", "dependencies"], "$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"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "aws/aws-sdk-php": {"type": "string"}, "psr/cache": {"type": "string"}, "psr/log": {"type": "string"}}, "required": ["php", "aws/aws-sdk-php", "psr/cache", "psr/log"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "roave/security-advisories": {"type": "string"}}, "required": ["phpunit/phpunit", "roave/security-advisories"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"CEmerson\\DBSafe\\": {"type": "string"}}, "required": ["CEmerson\\DBSafe\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"CEmerson\\DBSafe\\": {"type": "string"}}, "required": ["CEmerson\\DBSafe\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}}, "required": ["sort-packages"]}}, "required": ["name", "description", "type", "license", "minimum-stability", "require", "require-dev", "autoload", "autoload-dev", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "cemerson/dbsafe", "description" : "Library for using AWS Parameter Store or AWS Secrets Manager with database connections in PHP", "type" : "library", "license" : "MIT", "minimum-stability" : "stable", "require" : {"php" : "^7.1|^8.0", "aws/aws-sdk-php" : "^3.145", "psr/cache" : "^1.0", "psr/log" : "^1.1"}, "require-dev" : {"phpunit/phpunit" : "^9.2", "roave/security-advisories" : "dev-master"}, "autoload" : {"psr-4" : {"CEmerson\\DBSafe\\" : "src"}}, "autoload-dev" : {"psr-4" : {"CEmerson\\DBSafe\\" : "test"}}, "config" : {"sort-packages" : true}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "minimum-stability": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "aws/aws-sdk-php": {"type": "string"}, "psr/cache": {"type": "string"}, "psr/log": {"type": "string"}}, "required": ["php", "aws/aws-sdk-php", "psr/cache", "psr/log"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "roave/security-advisories": {"type": "string"}}, "required": ["phpunit/phpunit", "roave/security-advisories"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"CEmerson\\DBSafe\\": {"type": "string"}}, "required": ["CEmerson\\DBSafe\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"CEmerson\\DBSafe\\": {"type": "string"}}, "required": ["CEmerson\\DBSafe\\"]}}, "required": ["psr-4"]}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}}, "required": ["sort-packages"]}}, "required": ["name", "description", "type", "license", "minimum-stability", "require", "require-dev", "autoload", "autoload-dev", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "7314070", "regency_id" : "7314", "name" : "PITU RIAWA"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"solution_size": {"type": "integer"}, "ok": {"type": "boolean"}, "resemblance": {"type": "number"}, "problem_id": {"type": "integer"}, "solution_spec_hash": {"type": "string"}}, "required": ["solution_size", "ok", "resemblance", "problem_id", "solution_spec_hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"solution_size" : 2398, "ok" : true, "resemblance" : 0.65635, "problem_id" : 5493, "solution_spec_hash" : "ff2c21c9e92f0a31a14be242ea1836be32897357"}
json_instruct
{"type": "object", "properties": {"solution_size": {"type": "integer"}, "ok": {"type": "boolean"}, "resemblance": {"type": "number"}, "problem_id": {"type": "integer"}, "solution_spec_hash": {"type": "string"}}, "required": ["solution_size", "ok", "resemblance", "problem_id", "solution_spec_hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "integer"}, "winners": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "people": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}, "test": {"type": "object", "properties": {"people": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "required": ["people"]}}, "required": ["name", "value", "winners", "people", "test"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "John", "value" : 10000, "winners" : [{"name" : "what", "value" : "that"}, {"name" : "John", "value" : "200"}, {"name" : "Peter", "value" : "1000"}], "people" : {"name" : "peopleName", "value" : "peopleValue"}, "test" : {"people" : {"name" : "testName", "value" : "testValue"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "integer"}, "winners": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "people": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}, "test": {"type": "object", "properties": {"people": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "required": ["people"]}}, "required": ["name", "value", "winners", "people", "test"], "$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" : "conjoint", "definition" : "United; connected; associated. \"Influence conjoint.\" Glover. Conjoint degrees (Mus.), two notes which follow each other immediately in the order of the scale, as ut and re. Johnson. Conjoint tetrachords (Mus.), two tetrachords or fourths, where the same note is the highest of one and the lowest of the other; -- also written conjunct."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"namaKab" : "EMPAT LAWANG", "originalFilename" : "SUPRIANTO.jpg", "namaPartai" : "Partai NasDem", "id" : 16212, "noUrut" : 1, "nama" : "SUPRIYANTO", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "EMPAT LAWANG", "originalFilename" : "EPLAN.jpg", "namaPartai" : "Partai NasDem", "id" : 111361, "noUrut" : 2, "nama" : "EPLAN, A.Md", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "EMPAT LAWANG", "originalFilename" : "NOPIKA LEGANSARI.jpg", "namaPartai" : "Partai NasDem", "id" : 12194, "noUrut" : 3, "nama" : "NOPIKA LEGENSARI, S.Pd", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA PALEMBANG", "originalFilename" : "H NURDIN MUSTOPA.jpg", "namaPartai" : "Partai NasDem", "id" : 11996, "noUrut" : 4, "nama" : "H. NURDIN MUSTOPA, SH., M.Hum", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "EMPAT LAWANG", "originalFilename" : "ISKANDAR MULIADI, S.Sos.jpg", "namaPartai" : "Partai NasDem", "id" : 129526, "noUrut" : 5, "nama" : "ISKANDAR MULIADI, S.Sos", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "EMPAT LAWANG", "originalFilename" : "Yurmi.jpg", "namaPartai" : "Partai NasDem", "id" : 113219, "noUrut" : 6, "nama" : "YURMI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "EMPAT LAWANG", "originalFilename" : "ARDI WIRA TS.jpg", "namaPartai" : "Partai NasDem", "id" : 127507, "noUrut" : 7, "nama" : "ARDI WIRA TRI SAPUTRA", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA LUBUKLINGGAU", "originalFilename" : "LORA NONIKA.jpg", "namaPartai" : "Partai NasDem", "id" : 12103, "noUrut" : 8, "nama" : "LORA NONIKA", "stringJenisKelamin" : "Perempuan"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "$collection": {"type": "string"}, "uuid": {"type": "string"}, "font__name": {"type": "string"}, "code": {"type": "integer"}}, "required": ["name", "$collection", "uuid", "font__name", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "FontAwesome | flag-o", "$collection" : "main.glyphs", "uuid" : "150ce207-4657-4560-8336-cfcc2c1a72d3", "font__name" : "FontAwesome", "code" : 61725}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "$collection": {"type": "string"}, "uuid": {"type": "string"}, "font__name": {"type": "string"}, "code": {"type": "integer"}}, "required": ["name", "$collection", "uuid", "font__name", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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" : "3b683b3c-5679-4442-b928-7f0b371234d8", "playerTags" : [], "teamTags" : ["adc5b394-8f76-416d-9ce9-813706877b84", "105bc3ff-1320-4e37-8ef0-8d595cb95dd0"], "gameTags" : ["6370258d-a288-45ac-a052-604d9599821d"], "metadata" : {"away" : "adc5b394-8f76-416d-9ce9-813706877b84", "home" : "105bc3ff-1320-4e37-8ef0-8d595cb95dd0", "play" : 0, "stadium" : "cb94ac8b-003b-4d95-baf3-7c14b1c3fc29", "subPlay" : -1, "weather" : 18}, "created" : "2021-04-12T19:00:00.890Z", "season" : 15, "tournament" : -1, "type" : 0, "day" : 4, "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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "current_version": {"type": "object", "properties": {"requires": {"type": "object", "properties": {"gdal": {"type": "string"}, "ruby": {"type": "string"}, "nodejs": {"type": "string"}, "python": {"type": "string"}, "unp": {"type": "string"}, "zip": {"type": "string"}, "imagemagick": {"type": "string"}}, "required": ["gdal", "ruby", "nodejs", "python", "unp", "zip", "imagemagick"]}, "works_with": {"type": "object", "properties": {"dataservices-api-client-extension": {"type": "string"}, "carto_postgresql_ext": {"type": "string"}, "odbc_fdw": {"type": "string"}, "carto_windshaft": {"type": "string"}, "carto_sql_api": {"type": "string"}, "postgresql": {"type": "string"}, "postgis": {"type": "string"}, "redis": {"type": "string"}}, "required": ["dataservices-api-client-extension", "carto_postgresql_ext", "odbc_fdw", "carto_windshaft", "carto_sql_api", "postgresql", "postgis", "redis"]}}, "required": ["requires", "works_with"]}}, "required": ["name", "current_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "carto_builder", "current_version" : {"requires" : {"gdal" : ">=2.2.0 <2.4.0", "ruby" : ">=2.4.0 <2.5.0", "nodejs" : ">=10.3.0 <11.0.0", "python" : "~2.7.0", "unp" : ">=2.0.0", "zip" : ">=3.0.0", "imagemagick" : ">=6.9.0"}, "works_with" : {"dataservices-api-client-extension" : "0.26.2", "carto_postgresql_ext" : "0.29.0", "odbc_fdw" : "0.4.0", "carto_windshaft" : ">=6.2.0", "carto_sql_api" : ">=2.1.0", "postgresql" : ">=9.5.0", "postgis" : ">=2.2.0", "redis" : ">=4.0.0"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "current_version": {"type": "object", "properties": {"requires": {"type": "object", "properties": {"gdal": {"type": "string"}, "ruby": {"type": "string"}, "nodejs": {"type": "string"}, "python": {"type": "string"}, "unp": {"type": "string"}, "zip": {"type": "string"}, "imagemagick": {"type": "string"}}, "required": ["gdal", "ruby", "nodejs", "python", "unp", "zip", "imagemagick"]}, "works_with": {"type": "object", "properties": {"dataservices-api-client-extension": {"type": "string"}, "carto_postgresql_ext": {"type": "string"}, "odbc_fdw": {"type": "string"}, "carto_windshaft": {"type": "string"}, "carto_sql_api": {"type": "string"}, "postgresql": {"type": "string"}, "postgis": {"type": "string"}, "redis": {"type": "string"}}, "required": ["dataservices-api-client-extension", "carto_postgresql_ext", "odbc_fdw", "carto_windshaft", "carto_sql_api", "postgresql", "postgis", "redis"]}}, "required": ["requires", "works_with"]}}, "required": ["name", "current_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2013", "provinceId" : "63", "regencyId" : "08", "districtId" : "10", "name" : "Rantau Bujur Hulu"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "landowner", "definition" : "An owner of land."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"sketch": {"type": "string"}, "board": {"type": "string"}, "configuration": {"type": "string"}, "port": {"type": "string"}, "programmer": {"type": "string"}}, "required": ["sketch", "board", "configuration", "port", "programmer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"sketch" : "arduino/bt_demo.cpp", "board" : "arduino:avr:nano", "configuration" : "cpu=atmega328old", "port" : "/dev/cu.usbserial-1460", "programmer" : "AVR ISP"}
json_instruct
{"type": "object", "properties": {"sketch": {"type": "string"}, "board": {"type": "string"}, "configuration": {"type": "string"}, "port": {"type": "string"}, "programmer": {"type": "string"}}, "required": ["sketch", "board", "configuration", "port", "programmer"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "files": {"type": "array", "items": {"type": "string"}}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "prepublishOnly": {"type": "string"}, "postpublish": {"type": "string"}}, "required": ["test", "lint", "prepublishOnly", "postpublish"]}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"glob": {"type": "string"}, "unxhr": {"type": "string"}}, "required": ["glob", "unxhr"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}, "standard": {"type": "string"}}, "required": ["chai", "mocha", "standard"]}}, "required": ["name", "description", "keywords", "author", "version", "license", "engines", "files", "directories", "main", "scripts", "homepage", "bugs", "repository", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "asciidoctor-opal-runtime", "description" : "Opal Runtime for Asciidoctor.js", "keywords" : ["javascript", "opal", "asciidoctor", "runtime", "ruby"], "author" : "Guillaume Grossetie", "version" : "0.3.0", "license" : "MIT", "engines" : {"node" : ">=8.11"}, "files" : ["src"], "directories" : {"lib" : "src"}, "main" : "src/index.js", "scripts" : {"test" : "mocha spec/*.spec.js", "lint" : "standard src/index.js spec npm", "prepublishOnly" : "node npm/prepublish.js", "postpublish" : "node npm/postpublish.js"}, "homepage" : "http://github.com/mogztter/asciidoctor-opal-node-runtime", "bugs" : "https://github.com/mogztter/asciidoctor-opal-node-runtime/issues", "repository" : {"type" : "git", "url" : "git://github.com/mogztter/asciidoctor-opal-node-runtime.git"}, "dependencies" : {"glob" : "7.1.3", "unxhr" : "1.0.1"}, "devDependencies" : {"chai" : "4.2.0", "mocha" : "5.2.0", "standard" : "12.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "files": {"type": "array", "items": {"type": "string"}}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "lint": {"type": "string"}, "prepublishOnly": {"type": "string"}, "postpublish": {"type": "string"}}, "required": ["test", "lint", "prepublishOnly", "postpublish"]}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"glob": {"type": "string"}, "unxhr": {"type": "string"}}, "required": ["glob", "unxhr"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}, "standard": {"type": "string"}}, "required": ["chai", "mocha", "standard"]}}, "required": ["name", "description", "keywords", "author", "version", "license", "engines", "files", "directories", "main", "scripts", "homepage", "bugs", "repository", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 81958, "cartId" : "ea7a4e88-f8b6-4537-a043-cc69c187d503", "preferredProducts" : [1714, 3576, 4571, 2125, 2554, 4517, 3737, 1989], "productReviews" : [{"productId" : 1484, "reviewText" : "My neighbor Aldona has one of these. She works as a butler and she says it looks humongous.", "reviewDate" : "2020-04-13T17:21:13.4294804+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}, "registry": {"type": "string"}}, "required": ["access", "registry"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "release": {"type": "string"}}, "required": ["test", "release"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "babel-plugin-tester": {"type": "string"}, "jest": {"type": "string"}}, "required": ["@babel/core", "babel-plugin-tester", "jest"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "publishConfig", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@hnrchrdl/babel-plugin-import-sideeffects", "version" : "1.0.2", "description" : "Transform import statements to include side effects.", "main" : "dist/index.js", "repository" : "git@github.com:hnrchrdl/babel-plugin-import-sideeffects.git", "author" : "hnrch", "license" : "MIT", "publishConfig" : {"access" : "public", "registry" : "https://registry.npmjs.org/"}, "scripts" : {"test" : "jest", "release" : "npm publish --access public"}, "devDependencies" : {"@babel/core" : "^7.16.0", "babel-plugin-tester" : "^10.1.0", "jest" : "^27.3.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}, "registry": {"type": "string"}}, "required": ["access", "registry"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "release": {"type": "string"}}, "required": ["test", "release"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "babel-plugin-tester": {"type": "string"}, "jest": {"type": "string"}}, "required": ["@babel/core", "babel-plugin-tester", "jest"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "publishConfig", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "scripts": {"type": "object", "properties": {"electron-rebuild": {"type": "string"}, "link-modules": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["electron-rebuild", "link-modules", "postinstall"]}, "dependencies": {"type": "object", "properties": {"midi": {"type": "string"}, "serialport": {"type": "string"}, "node-link": {"type": "string"}}, "required": ["midi", "serialport", "node-link"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "author", "scripts", "dependencies", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "captivate", "version" : "1.0.0", "description" : "Electron application boilerplate based on React, React Router, Webpack, React Hot Loader for rapid application development", "main" : "./dist/main/main.js", "author" : {"name" : "Spenser Saling", "email" : "spenser0saling@gmail.com", "url" : "https://sailingtomars.com"}, "scripts" : {"electron-rebuild" : "node -r ts-node/register ../../.erb/scripts/electron-rebuild.js", "link-modules" : "node -r ts-node/register ../../.erb/scripts/link-modules.ts", "postinstall" : "npm run electron-rebuild && npm run link-modules"}, "dependencies" : {"midi" : "^2.0.0", "serialport" : "^9.2.8", "node-link" : "file:../../Node-Link"}, "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "scripts": {"type": "object", "properties": {"electron-rebuild": {"type": "string"}, "link-modules": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["electron-rebuild", "link-modules", "postinstall"]}, "dependencies": {"type": "object", "properties": {"midi": {"type": "string"}, "serialport": {"type": "string"}, "node-link": {"type": "string"}}, "required": ["midi", "serialport", "node-link"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "author", "scripts", "dependencies", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"outDir": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}}, "required": ["outDir", "types"]}, "include": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "include"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"extends" : "../tsconfig.json", "compilerOptions" : {"outDir" : "dist", "types" : ["node", "react", "styled-components", "jest"]}, "include" : ["./"]}
json_instruct
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"outDir": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}}, "required": ["outDir", "types"]}, "include": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "include"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "private": {"type": "boolean"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "run_at": {"type": "string"}}, "required": ["matches", "js", "run_at"]}}}, "required": ["name", "description", "category", "private", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "chathistory", "description" : "\u0e01\u0e14\u0e25\u0e39\u0e01\u0e28\u0e23\u0e02\u0e36\u0e49\u0e19/\u0e25\u0e07\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e22\u0e49\u0e2d\u0e19 chat \u0e17\u0e35\u0e48\u0e2a\u0e48\u0e07", "category" : "Chat", "private" : true, "content_scripts" : [{"matches" : ["http://mylive.in.th/streams/*", "http://mylive.in.th/chat/*"], "js" : ["content_script.js"], "run_at" : "document_end"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "private": {"type": "boolean"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "run_at": {"type": "string"}}, "required": ["matches", "js", "run_at"]}}}, "required": ["name", "description", "category", "private", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "array", "items": {"type": "string"}}, "Born": {"type": "array", "items": {"type": "string"}}, "Nationality": {"type": "array", "items": {"type": "string"}}, "Occupation": {"type": "array", "items": {"type": "string"}}, "Known for": {"type": "array", "items": {"type": "string"}}, "Title": {"type": "array", "items": {"type": "string"}}, "Spouse(s)": {"type": "array", "items": {"type": "string"}}, "Children": {"type": "array", "items": {"type": "string"}}, "Parent(s)": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "Born", "Nationality", "Occupation", "Known for", "Title", "Spouse(s)", "Children", "Parent(s)"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : ["Jean Francois Empain"], "Born" : ["5 June 1964 , Boulogne-Billancourt, France"], "Nationality" : ["Belgium"], "Occupation" : ["Internet Entrepreneur"], "Known for" : ["Last Baron Empian, Helvetic Clinics."], "Title" : ["Baron"], "Spouse(s)" : ["Veronique Rousselin (1990-2000) , Anne Simond (2018)"], "Children" : ["Philippine and Morgane"], "Parent(s)" : ["\u00c9douard-Jean Empain, Silvana Betuzzi"]}
json_instruct
{"type": "object", "properties": {"title": {"type": "array", "items": {"type": "string"}}, "Born": {"type": "array", "items": {"type": "string"}}, "Nationality": {"type": "array", "items": {"type": "string"}}, "Occupation": {"type": "array", "items": {"type": "string"}}, "Known for": {"type": "array", "items": {"type": "string"}}, "Title": {"type": "array", "items": {"type": "string"}}, "Spouse(s)": {"type": "array", "items": {"type": "string"}}, "Children": {"type": "array", "items": {"type": "string"}}, "Parent(s)": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "Born", "Nationality", "Occupation", "Known for", "Title", "Spouse(s)", "Children", "Parent(s)"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"component": {"type": "object", "properties": {"id": {"type": "string"}, "key": {"type": "string"}, "name": {"type": "string"}, "qualifier": {"type": "string"}, "measures": {"type": "array", "items": {"type": "object", "properties": {"metric": {"type": "string"}, "value": {"type": "string"}}, "required": ["metric", "value"]}}}, "required": ["id", "key", "name", "qualifier", "measures"]}}, "required": ["component"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"component" : {"id" : "AWUqTPRXXz0j1RnIAcUy", "key" : "NOS", "name" : "NOS", "qualifier" : "TRK", "measures" : [{"metric" : "SM_CPP_CLONE_TREE", "value" : "{\"cloneClasses\":[]}"}]}}
json_instruct
{"type": "object", "properties": {"component": {"type": "object", "properties": {"id": {"type": "string"}, "key": {"type": "string"}, "name": {"type": "string"}, "qualifier": {"type": "string"}, "measures": {"type": "array", "items": {"type": "object", "properties": {"metric": {"type": "string"}, "value": {"type": "string"}}, "required": ["metric", "value"]}}}, "required": ["id", "key", "name", "qualifier", "measures"]}}, "required": ["component"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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" : 1126049549, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "33efc9f7bf736d75905da002eac595bb", "wof:id" : 1126049549, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [1.052198, 52.103065, 1.052198, 52.103065], "geometry" : {"coordinates" : [1.052198, 52.103065], "type" : "Point"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"ps": {"type": "integer"}, "xbox": {"type": "integer"}}, "required": ["ps", "xbox"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ps" : 3097, "xbox" : 1853}
json_instruct
{"type": "object", "properties": {"ps": {"type": "integer"}, "xbox": {"type": "integer"}}, "required": ["ps", "xbox"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"29\"": {"type": "string"}, "\"36\"": {"type": "string"}, "\"38\"": {"type": "string"}, "\"39\"": {"type": "string"}, "\"41\"": {"type": "string"}, "\"42\"": {"type": "string"}, "\"43\"": {"type": "string"}, "\"47\"": {"type": "string"}, "\"49\"": {"type": "string"}, "\"50\"": {"type": "string"}, "\"52\"": {"type": "string"}, "\"53\"": {"type": "string"}, "\"55\"": {"type": "string"}, "\"56\"": {"type": "string"}, "\"58\"": {"type": "string"}, "\"60\"": {"type": "string"}, "\"61\"": {"type": "string"}, "\"62\"": {"type": "string"}}, "required": ["\"29\"", "\"36\"", "\"38\"", "\"39\"", "\"41\"", "\"42\"", "\"43\"", "\"47\"", "\"49\"", "\"50\"", "\"52\"", "\"53\"", "\"55\"", "\"56\"", "\"58\"", "\"60\"", "\"61\"", "\"62\""]}, "hits": {"type": "string"}}, "required": ["status", "tp", "msg", "result", "hits"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status" : "success", "tp" : 1, "msg" : "States fetched successfully.", "result" : {"\"29\"" : "Khartoum", "\"36\"" : "Red Sea", "\"38\"" : "Al Jazirah", "\"39\"" : "Al Qadarif", "\"41\"" : "White Nile", "\"42\"" : "Blue Nile", "\"43\"" : "Northern State", "\"47\"" : "Western Darfur", "\"49\"" : "Southern Darfur", "\"50\"" : "Southern Kordofan", "\"52\"" : "Kassala", "\"53\"" : "River Nile", "\"55\"" : "Northern Darfur", "\"56\"" : "North Kordofan", "\"58\"" : "Sinnar", "\"60\"" : "Eastern Darfur", "\"61\"" : "Central Darfur", "\"62\"" : "West Kordofan State"}, "hits" : "1318"}
json_instruct
{"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"29\"": {"type": "string"}, "\"36\"": {"type": "string"}, "\"38\"": {"type": "string"}, "\"39\"": {"type": "string"}, "\"41\"": {"type": "string"}, "\"42\"": {"type": "string"}, "\"43\"": {"type": "string"}, "\"47\"": {"type": "string"}, "\"49\"": {"type": "string"}, "\"50\"": {"type": "string"}, "\"52\"": {"type": "string"}, "\"53\"": {"type": "string"}, "\"55\"": {"type": "string"}, "\"56\"": {"type": "string"}, "\"58\"": {"type": "string"}, "\"60\"": {"type": "string"}, "\"61\"": {"type": "string"}, "\"62\"": {"type": "string"}}, "required": ["\"29\"", "\"36\"", "\"38\"", "\"39\"", "\"41\"", "\"42\"", "\"43\"", "\"47\"", "\"49\"", "\"50\"", "\"52\"", "\"53\"", "\"55\"", "\"56\"", "\"58\"", "\"60\"", "\"61\"", "\"62\""]}, "hits": {"type": "string"}}, "required": ["status", "tp", "msg", "result", "hits"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1109220026", "district_id" : "1109220", "name" : "KULAM"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["aics", "gulp-alioss-stream", "loopback-component-storage-ali-oss", "loopback-component-storage-oss", "rishiqing-deploy"]
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": {"upper_left_x": {"type": "number"}, "upper_left_y": {"type": "number"}, "bottom_right_x": {"type": "number"}, "bottom_right_y": {"type": "integer"}, "time": {"type": "integer"}, "is_final": {"type": "boolean"}, "event_type": {"type": "string"}, "op_order": {"type": "integer"}, "id": {"type": "integer"}}, "required": ["upper_left_x", "upper_left_y", "bottom_right_x", "bottom_right_y", "time", "is_final", "event_type", "op_order", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"upper_left_x" : 324.2261728497863, "upper_left_y" : 144.4572057251523, "bottom_right_x" : 1479.8838186510047, "bottom_right_y" : 1760, "time" : 1480245874678, "is_final" : false, "event_type" : "movement", "op_order" : 27, "id" : 27}
json_instruct
{"type": "object", "properties": {"upper_left_x": {"type": "number"}, "upper_left_y": {"type": "number"}, "bottom_right_x": {"type": "number"}, "bottom_right_y": {"type": "integer"}, "time": {"type": "integer"}, "is_final": {"type": "boolean"}, "event_type": {"type": "string"}, "op_order": {"type": "integer"}, "id": {"type": "integer"}}, "required": ["upper_left_x", "upper_left_y", "bottom_right_x", "bottom_right_y", "time", "is_final", "event_type", "op_order", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "1174020002", "district_id" : "1174020", "name" : "PALOH BATEE"}, {"id" : "1174020003", "district_id" : "1174020", "name" : "LHOK MON PUTEH"}, {"id" : "1174020004", "district_id" : "1174020", "name" : "COT GIREK"}, {"id" : "1174020005", "district_id" : "1174020", "name" : "MANYANG"}, {"id" : "1174020006", "district_id" : "1174020", "name" : "BLANG CRUM"}, {"id" : "1174020007", "district_id" : "1174020", "name" : "ALUE AWE"}, {"id" : "1174020008", "district_id" : "1174020", "name" : "CUT MAMPLAM"}, {"id" : "1174020009", "district_id" : "1174020", "name" : "MNS MEE"}, {"id" : "1174020010", "district_id" : "1174020", "name" : "MNS BLANG"}, {"id" : "1174020011", "district_id" : "1174020", "name" : "UTEUNKOT"}, {"id" : "1174020012", "district_id" : "1174020", "name" : "BLANG POHROH"}, {"id" : "1174020013", "district_id" : "1174020", "name" : "PAYA PUNTEUT"}, {"id" : "1174020014", "district_id" : "1174020", "name" : "KEUDE CUNDA"}, {"id" : "1174020015", "district_id" : "1174020", "name" : "MNS MESJID"}, {"id" : "1174020016", "district_id" : "1174020", "name" : "PANGGOI"}, {"id" : "1174020017", "district_id" : "1174020", "name" : "PAYA BILI"}, {"id" : "1174020018", "district_id" : "1174020", "name" : "MNS ALUE"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "prerequisite": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "semesterData": {"type": "array", "items": {}}, "prereqTree": {"type": "object", "properties": {"and": {"type": "array", "items": {"type": "string"}}}, "required": ["and"]}}, "required": ["acadYear", "description", "title", "department", "faculty", "workload", "prerequisite", "moduleCredit", "moduleCode", "semesterData", "prereqTree"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"acadYear" : "2019/2020", "description" : "This module provides student with an opportunity for advanced study in an area of finance. The topics covered will vary from semester to semester. Possible topics include finance theory and empirical research in finance.", "title" : "Seminars In Finance", "department" : "Finance", "faculty" : "NUS Business School", "workload" : [3, 0, 0, 4, 4], "prerequisite" : "FNA3101 and FNA3102", "moduleCredit" : "4", "moduleCode" : "FNA4112", "semesterData" : [], "prereqTree" : {"and" : ["FNA3101", "FNA3102"]}}
json_instruct
{"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "prerequisite": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "semesterData": {"type": "array", "items": {}}, "prereqTree": {"type": "object", "properties": {"and": {"type": "array", "items": {"type": "string"}}}, "required": ["and"]}}, "required": ["acadYear", "description", "title", "department", "faculty", "workload", "prerequisite", "moduleCredit", "moduleCode", "semesterData", "prereqTree"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"place_name" : "Huntington", "state_name" : "West Virginia", "state_abbrv" : "WV", "lat" : "38.4097", "long" : "-82.4423"}
json_instruct
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"limit" : 100, "name" : "Bane pickaxe + 1", "value" : 26668, "highalch" : 16000, "id" : 45156, "lowalch" : 10667, "name_pt" : "Picareta da maldi\u00e7\u00e3o + 1", "price" : 77189, "last" : 77189}
json_instruct
{"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "icao": {"type": "string"}, "iata": {"type": "string"}, "usaf": {"type": "string"}}, "required": ["wmo", "icao", "iata", "usaf"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "64383", "name" : {"en" : "Ruhengeri"}, "country" : "RW", "region" : "RU", "identifiers" : {"wmo" : "64383", "icao" : "HRYU", "iata" : "RHG", "usaf" : "643830"}, "location" : {"latitude" : -1.5, "longitude" : 29.6333, "elevation" : 1878}, "timezone" : "Africa/Kigali"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "icao": {"type": "string"}, "iata": {"type": "string"}, "usaf": {"type": "string"}}, "required": ["wmo", "icao", "iata", "usaf"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type": "integer"}, "species": {"type": "string"}, "monster_type": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "ability": {"type": "string"}, "has_effect": {"type": "boolean"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "is_tuner": {"type": "boolean"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "attribute", "atk", "species", "monster_type", "is_pendulum", "ability", "has_effect", "def", "level", "is_tuner"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 16135253, "name" : "Agido", "is_illegal" : false, "is_custom" : false, "text" : "When this card is destroyed and sent to the Graveyard as a result of battle, roll a six-sided die. You can Special Summon 1 Fairy-Type monster from your Graveyard whose Level is equal to the number rolled. (If the result is 6, you can Special Summon a Level 6 or higher monster.)", "images" : ["https://storage.googleapis.com/ygoprodeck.com/pics/16135253.jpg"], "type" : "Monster", "attribute" : "EARTH", "atk" : 1500, "species" : "Fairy", "monster_type" : "", "is_pendulum" : false, "ability" : "", "has_effect" : true, "def" : 1300, "level" : 4, "is_tuner" : false}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type": "integer"}, "species": {"type": "string"}, "monster_type": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "ability": {"type": "string"}, "has_effect": {"type": "boolean"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "is_tuner": {"type": "boolean"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "attribute", "atk", "species", "monster_type", "is_pendulum", "ability", "has_effect", "def", "level", "is_tuner"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "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" : [[[-88.438435, 43.020552], [-88.435243, 43.024237], [-88.435089, 43.025466], [-88.432706, 43.026012], [-88.432702, 43.032861], [-88.431842, 43.037332], [-88.432416, 43.039732], [-88.43014, 43.041611], [-88.427788, 43.042162], [-88.427493, 43.044209], [-88.425477, 43.045727], [-88.425115, 43.056214], [-88.4164, 43.054094], [-88.390737, 43.053383], [-88.35145, 43.048959], [-88.304207, 43.050589], [-88.304483, 43.021021], [-88.317403, 43.019307], [-88.339912, 43.020668], [-88.358649, 43.02023], [-88.36491, 43.018635], [-88.374135, 43.014749], [-88.389218, 43.010695], [-88.397987, 43.012648], [-88.412898, 43.017736], [-88.432387, 43.018172], [-88.438435, 43.020552]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 81817}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "repository": {"type": "string"}, "bugs": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}}, "required": ["dev"]}, "devDependencies": {"type": "object", "properties": {"git-commit-msg-linter": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["git-commit-msg-linter", "nodemon"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["express", "uuid"]}}, "required": ["name", "description", "version", "main", "license", "author", "repository", "bugs", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "finapi", "description" : "\ud83d\udd25 Aplica\u00e7\u00e3o simples para controle de financeiro constru\u00edda na trilha de NodeJS \u2014 Ignite", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "author" : {"name" : "Matheus Felipe Zanin", "email" : "matt_z6@hotmail.com", "url" : "https://github.com/mattz6"}, "repository" : "https://github.com/mattz6/finapi", "bugs" : "https://github.com/mattz6/finapi/issues", "scripts" : {"dev" : "nodemon src/server.js"}, "devDependencies" : {"git-commit-msg-linter" : "3.3.3", "nodemon" : "2.0.15"}, "dependencies" : {"express" : "^4.17.1", "uuid" : "^8.3.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "repository": {"type": "string"}, "bugs": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}}, "required": ["dev"]}, "devDependencies": {"type": "object", "properties": {"git-commit-msg-linter": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["git-commit-msg-linter", "nodemon"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["express", "uuid"]}}, "required": ["name", "description", "version", "main", "license", "author", "repository", "bugs", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"generate": {"type": "string"}, "test": {"type": "string"}, "clean": {"type": "string"}}, "required": ["generate", "test", "clean"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-typescript": {"type": "string"}, "@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "babel-jest": {"type": "string"}, "jest": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/preset-typescript", "@types/jest", "@types/node", "babel-jest", "jest", "ts-node", "typescript"]}}, "required": ["name", "version", "main", "repository", "author", "license", "dependencies", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "cerium-test", "version" : "1.0.0", "main" : "index.js", "repository" : "git@github.com:EwenLan/cerium-test.git", "author" : "EwenLan <ewen_lan@outlook.com>", "license" : "MIT", "dependencies" : {}, "scripts" : {"generate" : "rm -rf output; ts-node index.ts", "test" : "jest", "clean" : "rm -fR **/*.js"}, "devDependencies" : {"@babel/core" : "^7.16.0", "@babel/preset-env" : "^7.16.4", "@babel/preset-typescript" : "^7.16.0", "@types/jest" : "^27.0.3", "@types/node" : "^16.11.12", "babel-jest" : "^27.4.4", "jest" : "^27.4.4", "ts-node" : "^10.4.0", "typescript" : "^4.5.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"generate": {"type": "string"}, "test": {"type": "string"}, "clean": {"type": "string"}}, "required": ["generate", "test", "clean"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-typescript": {"type": "string"}, "@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "babel-jest": {"type": "string"}, "jest": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@babel/preset-typescript", "@types/jest", "@types/node", "babel-jest", "jest", "ts-node", "typescript"]}}, "required": ["name", "version", "main", "repository", "author", "license", "dependencies", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"resolution": {"type": "string"}, "tree": {"type": "object", "properties": {"src": {"type": "string"}, "raw": {"type": "string"}, "typings": {"type": "string"}}, "required": ["src", "raw", "typings"]}}, "required": ["resolution", "tree"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"resolution" : "main", "tree" : {"src" : "https://raw.githubusercontent.com/screepers/Screeps-Typescript-Declarations/TS2/dist/screeps.d.ts", "raw" : "github:screepers/Screeps-Typescript-Declarations/dist/screeps.d.ts#TS2", "typings" : "https://raw.githubusercontent.com/screepers/Screeps-Typescript-Declarations/TS2/dist/screeps.d.ts"}}
json_instruct
{"type": "object", "properties": {"resolution": {"type": "string"}, "tree": {"type": "object", "properties": {"src": {"type": "string"}, "raw": {"type": "string"}, "typings": {"type": "string"}}, "required": ["src", "raw", "typings"]}}, "required": ["resolution", "tree"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"<page title>": {"type": "string"}, "brand": {"type": "string"}, "color": {"type": "string"}, "fob price": {"type": "string"}, "minorder quantity": {"type": "string"}, "model": {"type": "string"}, "payment terms": {"type": "string"}, "port": {"type": "string"}, "size": {"type": "string"}, "supply ability": {"type": "string"}, "type": {"type": "string"}}, "required": ["<page title>", "brand", "color", "fob price", "minorder quantity", "model", "payment terms", "port", "size", "supply ability", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"<page title>" : "1006 Black Color Anti-water Anti-shock Black Digital Camera Case - Buy Black Digital Camera Case,Anti-water Black Digital Camera Case,Anti-shock Black Digital Camera Case Product on Alibaba.com", "brand" : "comers", "color" : "black,grey", "fob price" : "US $40.29 - 40.99 / Piece Get Latest\nPrice", "minorder quantity" : "150 Piece/Pieces", "model" : "1006", "payment terms" : "L/C,T/T,Western Union", "port" : "tianjin xingang", "size" : "26*13*25cm", "supply ability" : "10000 Piece/Pieces per Month", "type" : "backpack"}
json_instruct
{"type": "object", "properties": {"<page title>": {"type": "string"}, "brand": {"type": "string"}, "color": {"type": "string"}, "fob price": {"type": "string"}, "minorder quantity": {"type": "string"}, "model": {"type": "string"}, "payment terms": {"type": "string"}, "port": {"type": "string"}, "size": {"type": "string"}, "supply ability": {"type": "string"}, "type": {"type": "string"}}, "required": ["<page title>", "brand", "color", "fob price", "minorder quantity", "model", "payment terms", "port", "size", "supply ability", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "integer"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"value" : [968337645442474433, 965752232651722417, 975365283864734314, 947827446351663272, 958466368686566163, 947238436473664722]}
json_instruct
{"type": "object", "properties": {"value": {"type": "array", "items": {"type": "integer"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@alexamies/chinesedict-js": {"type": "string"}, "rxjs": {"type": "string"}}, "required": ["@alexamies/chinesedict-js", "rxjs"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "autoprefixer": {"type": "string"}, "babel-loader": {"type": "string"}, "css-loader": {"type": "string"}, "extract-loader": {"type": "string"}, "file-loader": {"type": "string"}, "node-sass": {"type": "string"}, "postcss-loader": {"type": "string"}, "sass-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@babel/core", "autoprefixer", "babel-loader", "css-loader", "extract-loader", "file-loader", "node-sass", "postcss-loader", "sass-loader", "typescript", "webpack", "webpack-cli", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "demo2", "version" : "1.0.0", "description" : "Chinese Dict Demo with two dictionaries", "main" : "private", "scripts" : {"build" : "webpack", "start" : "webpack-dev-server"}, "author" : "", "license" : "ISC", "dependencies" : {"@alexamies/chinesedict-js" : "../", "rxjs" : "^6.5.3"}, "devDependencies" : {"@babel/core" : "^7.6.4", "autoprefixer" : "^9.7.1", "babel-loader" : "^8.0.6", "css-loader" : "^3.2.0", "extract-loader" : "^3.1.0", "file-loader" : "^4.2.0", "node-sass" : "^4.13.1", "postcss-loader" : "^3.0.0", "sass-loader" : "^8.0.0", "typescript" : "^3.7.2", "webpack" : "^4.41.2", "webpack-cli" : "^3.3.10", "webpack-dev-server" : "^3.9.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@alexamies/chinesedict-js": {"type": "string"}, "rxjs": {"type": "string"}}, "required": ["@alexamies/chinesedict-js", "rxjs"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "autoprefixer": {"type": "string"}, "babel-loader": {"type": "string"}, "css-loader": {"type": "string"}, "extract-loader": {"type": "string"}, "file-loader": {"type": "string"}, "node-sass": {"type": "string"}, "postcss-loader": {"type": "string"}, "sass-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@babel/core", "autoprefixer", "babel-loader", "css-loader", "extract-loader", "file-loader", "node-sass", "postcss-loader", "sass-loader", "typescript", "webpack", "webpack-cli", "webpack-dev-server"]}}, "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": "object", "properties": {"extends": {"type": "string"}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"extends" : "./tsconfig", "exclude" : ["**/*.test.ts", "**/*.mock.ts", "src/browser-module.ts", "src/browser-rewrites", "src/dev-server.ts"]}
json_instruct
{"type": "object", "properties": {"extends": {"type": "string"}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}}}, "required": ["city", "borders"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"city" : {"name" : "CONCEI\u00c7\u00c3O DAS ALAGOAS", "state" : "MG"}, "borders" : [[{"lat" : -19.74061099689993, "lng" : -48.32720000027973}, {"lat" : -19.773797996680173, "lng" : -48.272930999565915}, {"lat" : -19.845606996865342, "lng" : -48.23103800030344}, {"lat" : -19.882808996537904, "lng" : -48.15452099974431}, {"lat" : -19.94689399666055, "lng" : -48.168129999599785}, {"lat" : -20.010903996921854, "lng" : -48.13734299987948}, {"lat" : -20.045465785817328, "lng" : -48.20340964443949}, {"lat" : -20.07792066550627, "lng" : -48.25342513516182}, {"lat" : -20.127883961375687, "lng" : -48.21863549673077}, {"lat" : -20.143796443351107, "lng" : -48.26510009619244}, {"lat" : -20.11380109164702, "lng" : -48.31541286231368}, {"lat" : -20.11351104230073, "lng" : -48.40577677567762}, {"lat" : -20.13812321681297, "lng" : -48.491116131804006}, {"lat" : -20.133629874718906, "lng" : -48.53743516340205}, {"lat" : -20.06866099660766, "lng" : -48.52878099994314}, {"lat" : -19.999710996964893, "lng" : -48.55650399955988}, {"lat" : -19.889928996625827, "lng" : -48.54436399999855}, {"lat" : -19.83506399630636, "lng" : -48.48136499959503}, {"lat" : -19.777354997035445, "lng" : -48.45445299960619}, {"lat" : -19.795958997010075, "lng" : -48.38803599986147}, {"lat" : -19.74061099689993, "lng" : -48.32720000027973}]]}
json_instruct
{"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}}}, "required": ["city", "borders"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}, "files.eol": {"type": "string"}}, "required": ["cSpell.words", "files.eol"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cSpell.words" : ["Sudoo"], "files.eol" : "\n"}
json_instruct
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}, "files.eol": {"type": "string"}}, "required": ["cSpell.words", "files.eol"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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": "string"}, "hireable": {"type": "null"}, "bio": {"type": "null"}, "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" : "jessepollak", "repos" : 1, "login" : "jessepollak", "id" : 1097953, "avatar_url" : "https://avatars2.githubusercontent.com/u/1097953?v=3", "url" : "https://api.github.com/users/jessepollak", "html_url" : "https://github.com/jessepollak", "followers_url" : "https://api.github.com/users/jessepollak/followers", "following_url" : "https://api.github.com/users/jessepollak/following{/other_user}", "gists_url" : "https://api.github.com/users/jessepollak/gists{/gist_id}", "starred_url" : "https://api.github.com/users/jessepollak/starred{/owner}{/repo}", "subscriptions_url" : "https://api.github.com/users/jessepollak/subscriptions", "organizations_url" : "https://api.github.com/users/jessepollak/orgs", "repos_url" : "https://api.github.com/users/jessepollak/repos", "events_url" : "https://api.github.com/users/jessepollak/events{/privacy}", "received_events_url" : "https://api.github.com/users/jessepollak/received_events", "type" : "User", "site_admin" : false, "name" : "Jesse Pollak", "company" : "Clef", "blog" : "https://jessepollak.com", "location" : "Oakland, CA", "email" : "hello@jessepollak.me", "hireable" : null, "bio" : null, "public_repos" : 86, "public_gists" : 29, "followers" : 417, "following" : 51, "created_at" : "2011-10-03T06:15:01Z", "updated_at" : "2017-02-23T23:49:35Z"}
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": "string"}, "hireable": {"type": "null"}, "bio": {"type": "null"}, "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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}, "34": {"type": "string"}, "35": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"edges" : [[8, 1], [8, 21], [8, 35], [8, 35], [5, 8], [8, 13], [13, 8], [5, 11], [7, 8], [21, 8], [18, 26], [8, 31], [4, 8], [14, 10], [8, 3], [8, 23], [8, 3], [25, 8], [2, 8], [27, 8], [31, 8], [4, 8], [8, 4], [16, 8], [10, 7], [8, 4], [8, 23], [8, 12], [4, 8], [23, 8], [33, 31], [6, 8], [8, 34], [30, 32], [19, 0], [8, 27], [8, 31], [8, 7], [29, 8], [31, 8], [8, 27], [10, 9], [8, 24], [17, 20], [22, 15], [5, 15], [28, 8], [13, 8]], "features" : {"0" : "1", "1" : "1", "2" : "1", "3" : "2", "4" : "5", "5" : "3", "6" : "1", "7" : "3", "8" : "37", "9" : "1", "10" : "3", "11" : "1", "12" : "1", "13" : "3", "14" : "1", "15" : "2", "16" : "1", "17" : "1", "18" : "1", "19" : "1", "20" : "1", "21" : "2", "22" : "1", "23" : "3", "24" : "1", "25" : "1", "26" : "1", "27" : "3", "28" : "1", "29" : "1", "30" : "1", "31" : "5", "32" : "1", "33" : "1", "34" : "1", "35" : "2"}}
json_instruct
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}, "34": {"type": "string"}, "35": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 27014, "citation_title" : "Advances in Structural Vector Autoregressions with Imperfect Identifying Information", "citation_author" : ["Christiane Baumeister", "James D. Hamilton"], "citation_publication_date" : "2020-04-20", "issue_date" : "2020-04-16", "revision_date" : "None", "topics" : ["Econometrics", "Estimation Methods", "Environmental and Resource Economics", "Energy"], "program" : ["Environment and Energy Economics", "Economic Fluctuations and Growth", "Monetary Economics"], "projects" : null, "working_groups" : null, "abstract" : "\n\nThis paper examines methods for structural interpretation of vector autoregressions when the identifying information is regarded as imperfect or incomplete. We suggest that a Bayesian approach offers a unifying theme for guiding inference in such settings. Among other advantages, the unified approach solves a problem with calculating elasticities that appears not to have been recognized by earlier researchers. We also call attention to some computational concerns of which researchers who approach this problem using other methods should be aware.\n\n", "acknowledgement" : "\nWe thank Diego Kaenzig and Lam Nguyen for helpful comments on an earlier draft of this paper. The views expressed herein are those of the authors and do not necessarily reflect the views of the National Bureau of Economic Research.\n\n\n"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "TROY Battlemag 5.56x45 STANAG 30-mermilik \u015farj\u00f6r", "ShortName" : "Battlemag", "Description" : "5.56x45 m\u00fchimmat i\u00e7in 30 mermilik, TROY Battlemag polimer \u015farj\u00f6r."}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["name", "description", "icon"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "\u70e4\u5236", "description" : "\u4e86\u89e3\u70e4\u9762\u5305\u673a\u7684\u6b63\u786e\u4f7f\u7528\u65b9\u6cd5\u5427\uff01", "icon" : "sandwichable:toaster"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["name", "description", "icon"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"268706a9050816135d419a8662dc2cd9": {"type": "string"}}, "required": ["268706a9050816135d419a8662dc2cd9"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"268706a9050816135d419a8662dc2cd9" : "query CityBMWListQuery(\n $count: Int!\n $cursor: String\n $citySlug: String!\n) {\n city(slug: $citySlug) {\n ...CityBMWList_city_1G22uz\n }\n}\n\nfragment CityBMWList_city_1G22uz on City {\n name\n slug\n sponsoredContent {\n shows(first: $count, status: RUNNING, after: $cursor, sort: PARTNER_ASC) {\n edges {\n node {\n id\n _id\n __id\n name\n status\n href\n is_followed\n isStubShow\n exhibition_period\n cover_image {\n url\n }\n location {\n coordinates {\n lat\n lng\n }\n __id\n }\n type\n start_at\n end_at\n partner {\n __typename\n ... on Partner {\n name\n type\n profile {\n image {\n url(version: \"square\")\n }\n __id\n }\n }\n ... on Node {\n __id\n }\n ... on ExternalPartner {\n __id\n }\n }\n __typename\n }\n cursor\n }\n pageInfo {\n endCursor\n hasNextPage\n }\n }\n }\n}\n"}
json_instruct
{"type": "object", "properties": {"268706a9050816135d419a8662dc2cd9": {"type": "string"}}, "required": ["268706a9050816135d419a8662dc2cd9"], "$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"}, "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" : 8, "n_trials" : 210, "objective" : "markowitz_analytic_on_cube", "white" : "platypus_epsmoea", "black" : "scipy_slsqp", "traceback" : ["passing", "passing"], "best_val" : [0.33016587111012896, -0.0002442836384213276], "best_x" : [[0.36138688355632964, 0.03540819310913512, 0.05706538111110748, 0.06870902077701853, 0.35423826181694895, 0.01030566764355434, 0.13706643154669187, 0.031871420193313266], [0.06806781683762134, 0.12552805445324955, 0.12533969982548968, 0.1423585515265569, 0.2800202189293874, 0.14065045078270455, 7.998054906499903e-18, 0.11803628435073153]], "feval_count" : [211, 392], "n_trials_instructed" : [210, 66], "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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"REPORT": {"type": "object", "properties": {"HEADER": {"type": "string"}, "LOADING_CHART": {"type": "string"}, "NO_ENOUGH_DATA": {"type": "string"}, "DOWNLOAD_AGENT_REPORTS": {"type": "string"}, "METRICS": {"type": "object", "properties": {"CONVERSATIONS": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESC": {"type": "string"}}, "required": ["NAME", "DESC"]}, "INCOMING_MESSAGES": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESC": {"type": "string"}}, "required": ["NAME", "DESC"]}, "OUTGOING_MESSAGES": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESC": {"type": "string"}}, "required": ["NAME", "DESC"]}, "FIRST_RESPONSE_TIME": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESC": {"type": "string"}}, "required": ["NAME", "DESC"]}, "RESOLUTION_TIME": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESC": {"type": "string"}}, "required": ["NAME", "DESC"]}, "RESOLUTION_COUNT": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESC": {"type": "string"}}, "required": ["NAME", "DESC"]}}, "required": ["CONVERSATIONS", "INCOMING_MESSAGES", "OUTGOING_MESSAGES", "FIRST_RESPONSE_TIME", "RESOLUTION_TIME", "RESOLUTION_COUNT"]}, "DATE_RANGE": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}}, "required": ["HEADER", "LOADING_CHART", "NO_ENOUGH_DATA", "DOWNLOAD_AGENT_REPORTS", "METRICS", "DATE_RANGE"]}}, "required": ["REPORT"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"REPORT" : {"HEADER" : "Jelent\u00e9sek", "LOADING_CHART" : "T\u00e1bl\u00e1zat adatok bet\u00f6lt\u00e9se...", "NO_ENOUGH_DATA" : "Nem \u00e9rkezett el\u00e9g adat hogy jelent\u00e9st gener\u00e1ljunk, k\u00e9rj\u00fck pr\u00f3b\u00e1ld k\u00e9s\u0151bb.", "DOWNLOAD_AGENT_REPORTS" : "\u00dcgyn\u00f6k jelent\u00e9sek let\u00f6lt\u00e9se", "METRICS" : {"CONVERSATIONS" : {"NAME" : "Besz\u00e9lget\u00e9sek", "DESC" : "( Teljes )"}, "INCOMING_MESSAGES" : {"NAME" : "Be\u00e9rkez\u0151 \u00fcznetek", "DESC" : "( Teljes )"}, "OUTGOING_MESSAGES" : {"NAME" : "Kimen\u0151 \u00fczenetek", "DESC" : "( Teljes )"}, "FIRST_RESPONSE_TIME" : {"NAME" : "Els\u0151 reakci\u00f3 id\u0151", "DESC" : "( \u00c1tlag )"}, "RESOLUTION_TIME" : {"NAME" : "Megold\u00e1si id\u0151", "DESC" : "( \u00c1tlag )"}, "RESOLUTION_COUNT" : {"NAME" : "Megold\u00e1sok sz\u00e1ma", "DESC" : "( Teljes )"}}, "DATE_RANGE" : [{"id" : 0, "name" : "Utols\u00f3 7 nap"}, {"id" : 1, "name" : "Utols\u00f3 30 nap"}, {"id" : 2, "name" : "Last 3 months"}, {"id" : 3, "name" : "Last 6 months"}, {"id" : 4, "name" : "Last year"}]}}
json_instruct
{"type": "object", "properties": {"REPORT": {"type": "object", "properties": {"HEADER": {"type": "string"}, "LOADING_CHART": {"type": "string"}, "NO_ENOUGH_DATA": {"type": "string"}, "DOWNLOAD_AGENT_REPORTS": {"type": "string"}, "METRICS": {"type": "object", "properties": {"CONVERSATIONS": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESC": {"type": "string"}}, "required": ["NAME", "DESC"]}, "INCOMING_MESSAGES": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESC": {"type": "string"}}, "required": ["NAME", "DESC"]}, "OUTGOING_MESSAGES": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESC": {"type": "string"}}, "required": ["NAME", "DESC"]}, "FIRST_RESPONSE_TIME": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESC": {"type": "string"}}, "required": ["NAME", "DESC"]}, "RESOLUTION_TIME": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESC": {"type": "string"}}, "required": ["NAME", "DESC"]}, "RESOLUTION_COUNT": {"type": "object", "properties": {"NAME": {"type": "string"}, "DESC": {"type": "string"}}, "required": ["NAME", "DESC"]}}, "required": ["CONVERSATIONS", "INCOMING_MESSAGES", "OUTGOING_MESSAGES", "FIRST_RESPONSE_TIME", "RESOLUTION_TIME", "RESOLUTION_COUNT"]}, "DATE_RANGE": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}}, "required": ["HEADER", "LOADING_CHART", "NO_ENOUGH_DATA", "DOWNLOAD_AGENT_REPORTS", "METRICS", "DATE_RANGE"]}}, "required": ["REPORT"], "$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"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "conquest:block/light_sienna_stucco_segmental_arch_1"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "9420020001", "district_id" : "9420020", "name" : "MOLOF"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "anyOf": {"type": "array", "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}}, "required": ["$schema", "title", "description", "anyOf"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "http://json-schema.org/draft-04/schema#", "title" : "LSDL Schema", "description" : "Linguistic Schema Definition Language schema", "anyOf" : [{"$ref" : "lsdlschema-3.3.json#"}, {"$ref" : "lsdlschema-3.2.json#"}, {"$ref" : "lsdlschema-3.1.json#"}, {"$ref" : "lsdlschema-3.0.json#"}, {"$ref" : "lsdlschema-2.0.json#"}, {"$ref" : "lsdlschema-1.2.json#"}, {"$ref" : "lsdlschema-1.0.json#"}, {"$ref" : "lsdlschema-0.7.json#"}]}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "anyOf": {"type": "array", "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}}, "required": ["$schema", "title", "description", "anyOf"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 70305, "cartId" : "9ea1af7f-6c8d-4705-8866-75b3c5ec9e33", "preferredProducts" : [825, 984, 480, 115, 641, 4343, 2175, 4745], "productReviews" : [{"productId" : 221, "reviewText" : "My neighbor Frona has one of these. She works as a gambler and she says it looks bearded.", "reviewDate" : "2016-09-13T09:26:30.0846324+03:00"}, {"productId" : 1895, "reviewText" : "My locust loves to play with it.", "reviewDate" : "2017-06-13T01:50:19.9283241+03:00"}, {"productId" : 2749, "reviewText" : "I tried to slay it but got truffle all over it.", "reviewDate" : "2019-02-18T12:20:15.64235+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#"}
Generate a valid JSON object that conforms to the following schema: {"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" : "95274", "place_name" : "La Fuente", "place_type" : "Barrio", "county" : "Alvarado", "state" : "Veracruz de Ignacio de la Llave", "city" : "Alvarado"}]
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"require": {"type": "object", "properties": {"guzzlehttp/guzzle": {"type": "string"}, "monolog/monolog": {"type": "string"}}, "required": ["guzzlehttp/guzzle", "monolog/monolog"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"": {"type": "string"}}, "required": [""]}}, "required": ["psr-4"]}}, "required": ["require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"require" : {"guzzlehttp/guzzle" : "~6.0", "monolog/monolog" : "~1.17.2"}, "autoload" : {"psr-4" : {"" : "src/"}}}
json_instruct
{"type": "object", "properties": {"require": {"type": "object", "properties": {"guzzlehttp/guzzle": {"type": "string"}, "monolog/monolog": {"type": "string"}}, "required": ["guzzlehttp/guzzle", "monolog/monolog"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"": {"type": "string"}}, "required": [""]}}, "required": ["psr-4"]}}, "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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"deploy": {"type": "string"}}, "required": ["deploy"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "files": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "bitcoinjs-lib": {"type": "string"}, "keythereum": {"type": "string"}, "litecore-lib": {"type": "string"}, "wif": {"type": "string"}}, "required": ["axios", "bitcoinjs-lib", "keythereum", "litecore-lib", "wif"]}, "devDependencies": {"type": "object", "properties": {"mii-logger.js": {"type": "string"}}, "required": ["mii-logger.js"]}}, "required": ["name", "version", "description", "main", "scripts", "engines", "keywords", "repository", "files", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "the-crypto-gate", "version" : "1.0.7", "description" : "The-crypto-gate: Blockchain API Library", "main" : "init.js", "scripts" : {"deploy" : "node ./deploy.js"}, "engines" : {"node" : ">=8.0.0"}, "keywords" : ["Blockchain API", "BTC", "crypto-currency"], "repository" : {"type" : "git", "url" : "https://github.com/ch3ll0v3k/the-crypto-gate.git"}, "files" : ["src"], "author" : "https://github.com/ch3ll0v3k", "license" : "MIT", "dependencies" : {"axios" : "^0.18.0", "bitcoinjs-lib" : "^5.0.3", "keythereum" : "^1.0.4", "litecore-lib" : "^0.13.22", "wif" : "^2.0.6"}, "devDependencies" : {"mii-logger.js" : "^1.1.62"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"deploy": {"type": "string"}}, "required": ["deploy"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "files": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "bitcoinjs-lib": {"type": "string"}, "keythereum": {"type": "string"}, "litecore-lib": {"type": "string"}, "wif": {"type": "string"}}, "required": ["axios", "bitcoinjs-lib", "keythereum", "litecore-lib", "wif"]}, "devDependencies": {"type": "object", "properties": {"mii-logger.js": {"type": "string"}}, "required": ["mii-logger.js"]}}, "required": ["name", "version", "description", "main", "scripts", "engines", "keywords", "repository", "files", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"translations": {"type": "object", "properties": {"No rule given": {"type": "string"}, "File access control": {"type": "string"}, "Restrict access to files based on factors such as filetype, user group memberships, time and more.": {"type": "string"}, "Each rule group consists of one or more rules. A request matches a group if all rules evaluate to true. If a request matches at least one of the defined groups, the request is blocked and the file content can not be read or written.": {"type": "string"}}, "required": ["No rule given", "File access control", "Restrict access to files based on factors such as filetype, user group memberships, time and more.", "Each rule group consists of one or more rules. A request matches a group if all rules evaluate to true. If a request matches at least one of the defined groups, the request is blocked and the file content can not be read or written."]}, "pluralForm": {"type": "string"}}, "required": ["translations", "pluralForm"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"translations" : {"No rule given" : "Nun se dieron regles", "File access control" : "Control d'accesu a ficheros", "Restrict access to files based on factors such as filetype, user group memberships, time and more." : "Torga autom\u00e1ticamente los ficheros seg\u00fan la so triba, grupu d'usuarios, hora y m\u00e1s.", "Each rule group consists of one or more rules. A request matches a group if all rules evaluate to true. If a request matches at least one of the defined groups, the request is blocked and the file content can not be read or written." : "Cada regla de grupu consiste nuna o m\u00e1s regles. Una solicit\u00fa concasa con un grupu si toles regles evaluaes son verdaderes. Si una solicit\u00fa concasa polo menos con una de los grupos defin\u00edos, bl\u00f3quiase y el so conten\u00edu nun pue lleese o escrbise."}, "pluralForm" : "nplurals=2; plural=(n != 1);"}
json_instruct
{"type": "object", "properties": {"translations": {"type": "object", "properties": {"No rule given": {"type": "string"}, "File access control": {"type": "string"}, "Restrict access to files based on factors such as filetype, user group memberships, time and more.": {"type": "string"}, "Each rule group consists of one or more rules. A request matches a group if all rules evaluate to true. If a request matches at least one of the defined groups, the request is blocked and the file content can not be read or written.": {"type": "string"}}, "required": ["No rule given", "File access control", "Restrict access to files based on factors such as filetype, user group memberships, time and more.", "Each rule group consists of one or more rules. A request matches a group if all rules evaluate to true. If a request matches at least one of the defined groups, the request is blocked and the file content can not be read or written."]}, "pluralForm": {"type": "string"}}, "required": ["translations", "pluralForm"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"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" : 54927, "cartId" : "955a0fe6-ee52-41d6-8546-b5160d589c68", "preferredProducts" : [1401, 2220, 1284, 3034, 1095, 3654, 1216], "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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index" : 2948, "redacted" : false, "hash" : 3485580444, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d808-73", "text" : "W. K. KELLOGG FOUNDATION\n250 CHAMPION STREET\nBATTLE CREEK, MICHIGAN\nDIVISION OF EDUCATION\nMAURICE F. SEAY\nDIRECTOR\nMarch 1 'J3 1959 phone wo s-s\nRECEIVED\nNAEB HEADQUARTERS\nMAR 18 1959\nT|8|9|ip|ll|12,l|2|8|4,5,6\nL\nMr. Harry J. Skornia, Exec. Director\nNat*l. Ass'n. of Educational Broadcasters\n1^ Gregory Hall\nUrbana, Illinois\nDear Harry:\nYour slides were very helpful and I have made good use\nof them. I should have returned them sooner. They are\nBeing mailed today.\nSincerely and with best wishes}\nft-\nMaurice F. Seay\nMFS/fh"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "JUANA CARMEN", "frequency" : 505, "gender" : "female"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"testData": {"type": "string"}, "trueY": {"type": "string"}, "predictedY": {"type": "string"}, "probabilityY": {"type": "string"}, "precomputedExplanations.localFeatureImportance.scores": {"type": "string"}, "dataSummary.featureNames": {"type": "string"}, "dataSummary.classNames": {"type": "string"}, "precomputedExplanations.localFeatureImportance.intercept": {"type": "string"}}, "required": ["testData", "trueY", "predictedY", "probabilityY", "precomputedExplanations.localFeatureImportance.scores", "dataSummary.featureNames", "dataSummary.classNames", "precomputedExplanations.localFeatureImportance.intercept"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"testData" : "ExperimentRun/AutoML_2a41b9e7-10e7-4834-a59e-0f003ae86b0d_16/explanation/7000948b/eval_data_viz", "trueY" : "ExperimentRun/AutoML_2a41b9e7-10e7-4834-a59e-0f003ae86b0d_16/explanation/7000948b/true_ys_viz", "predictedY" : "ExperimentRun/AutoML_2a41b9e7-10e7-4834-a59e-0f003ae86b0d_16/explanation/7000948b/ys_pred_viz", "probabilityY" : "ExperimentRun/AutoML_2a41b9e7-10e7-4834-a59e-0f003ae86b0d_16/explanation/7000948b/ys_pred_proba_viz", "precomputedExplanations.localFeatureImportance.scores" : "ExperimentRun/AutoML_2a41b9e7-10e7-4834-a59e-0f003ae86b0d_16/explanation/7000948b/local_importance_values", "dataSummary.featureNames" : "ExperimentRun/AutoML_2a41b9e7-10e7-4834-a59e-0f003ae86b0d_16/explanation/7000948b/features", "dataSummary.classNames" : "ExperimentRun/AutoML_2a41b9e7-10e7-4834-a59e-0f003ae86b0d_16/explanation/7000948b/classes", "precomputedExplanations.localFeatureImportance.intercept" : "ExperimentRun/AutoML_2a41b9e7-10e7-4834-a59e-0f003ae86b0d_16/explanation/7000948b/expected_values"}
json_instruct
{"type": "object", "properties": {"testData": {"type": "string"}, "trueY": {"type": "string"}, "predictedY": {"type": "string"}, "probabilityY": {"type": "string"}, "precomputedExplanations.localFeatureImportance.scores": {"type": "string"}, "dataSummary.featureNames": {"type": "string"}, "dataSummary.classNames": {"type": "string"}, "precomputedExplanations.localFeatureImportance.intercept": {"type": "string"}}, "required": ["testData", "trueY", "predictedY", "probabilityY", "precomputedExplanations.localFeatureImportance.scores", "dataSummary.featureNames", "dataSummary.classNames", "precomputedExplanations.localFeatureImportance.intercept"], "$schema": "http://json-schema.org/draft-07/schema#"}