input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "requirement": {"type": "string"}, "locked_text": {"type": "string"}, "type": {"type": "string"}, "flags": {"type": "array", "items": {"type": "string"}}, "tiers": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "points": {"type": "integer"}}, "required": ["count", "points"]}}}, "required": ["id", "name", "description", "requirement", "locked_text", "type", "flags", "tiers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 5524, "name" : "Jormag's World", "description" : "Journal: Jormag's World Completed", "requirement" : "Complete the story chapter Jormag's World.", "locked_text" : "", "type" : "Default", "flags" : ["Permanent"], "tiers" : [{"count" : 1, "points" : 1}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "requirement": {"type": "string"}, "locked_text": {"type": "string"}, "type": {"type": "string"}, "flags": {"type": "array", "items": {"type": "string"}}, "tiers": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "points": {"type": "integer"}}, "required": ["count", "points"]}}}, "required": ["id", "name", "description", "requirement", "locked_text", "type", "flags", "tiers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "desecration", "definition" : "The act of desecrating; profanation; condition of anything desecrated."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@fancyapps/fancybox": {"type": "string"}, "angular-bootstrap-colorpicker": {"type": "string"}, "angular-summernote": {"type": "string"}, "angular-ui-sortable": {"type": "string"}, "jquery-warn-before-unload": {"type": "string"}, "ng-file-upload": {"type": "string"}}, "required": ["@fancyapps/fancybox", "angular-bootstrap-colorpicker", "angular-summernote", "angular-ui-sortable", "jquery-warn-before-unload", "ng-file-upload"]}}, "required": ["name", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "promethee", "private" : true, "dependencies" : {"@fancyapps/fancybox" : "^3.5.2", "angular-bootstrap-colorpicker" : "", "angular-summernote" : "^0.8.1", "angular-ui-sortable" : "^0.18.0", "jquery-warn-before-unload" : "^1.0.2", "ng-file-upload" : "^12.2.13"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@fancyapps/fancybox": {"type": "string"}, "angular-bootstrap-colorpicker": {"type": "string"}, "angular-summernote": {"type": "string"}, "angular-ui-sortable": {"type": "string"}, "jquery-warn-before-unload": {"type": "string"}, "ng-file-upload": {"type": "string"}}, "required": ["@fancyapps/fancybox", "angular-bootstrap-colorpicker", "angular-summernote", "angular-ui-sortable", "jquery-warn-before-unload", "ng-file-upload"]}}, "required": ["name", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"sounds": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "volume": {"type": "number"}}, "required": ["name", "volume"]}}, "subtitle": {"type": "string"}}, "required": ["sounds", "subtitle"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"sounds" : [{"name" : "mob/horse/skeleton/water/gallop1", "volume" : 0.45}, {"name" : "mob/horse/skeleton/water/gallop2", "volume" : 0.45}, {"name" : "mob/horse/skeleton/water/gallop3", "volume" : 0.45}, {"name" : "mob/horse/skeleton/water/gallop4", "volume" : 0.45}], "subtitle" : "subtitles.entity.horse.gallop"}
json_instruct
{"type": "object", "properties": {"sounds": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "volume": {"type": "number"}}, "required": ["name", "volume"]}}, "subtitle": {"type": "string"}}, "required": ["sounds", "subtitle"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "post_id": {"type": "string"}, "image_name": {"type": "string"}, "image_path": {"type": "string"}, "thumbnail_path": {"type": "string"}, "datetime": {"type": "number"}, "url": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "popularity_score": {"type": "integer"}, "phash": {"type": "string"}, "duplicated_images": {"type": "array", "items": {"type": "string"}}, "duplicated_posts": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "post_id": {"type": "string"}, "datetime": {"type": "number"}}, "required": ["url", "title", "author", "post_id", "datetime"]}}, "labels": {"type": "array", "items": {"type": "string"}}, "remarks": {"type": "string"}}, "required": ["id", "post_id", "image_name", "image_path", "thumbnail_path", "datetime", "url", "title", "author", "popularity_score", "phash", "duplicated_images", "duplicated_posts", "labels", "remarks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "8axs3z", "post_id" : "reddit/dataisugly/8axs3z", "image_name" : "8axs3z_0", "image_path" : "preview/8axs3z_0.jpg", "thumbnail_path" : "thumbnail/8axs3z_0.jpg", "datetime" : 1523274257.0, "url" : "https://reddit.com/r/dataisugly/comments/8axs3z/as_johnny_depp_got_older_his_age_increased/", "title" : "As Johnny Depp got older, his age increased.", "author" : "tcmalloc", "popularity_score" : 166, "phash" : "eed2b52fe01d9260", "duplicated_images" : ["reddit/dataisbeautiful/8awx8s_0"], "duplicated_posts" : [{"url" : "https://reddit.com/r/dataisbeautiful/comments/8awx8s/as_johnny_depp_got_older_more_successful_his_gfs/", "title" : "As Johnny Depp got older / more successful, his GF's got younger [OC]", "author" : "Smart_Ass_Pawn", "post_id" : "reddit/dataisbeautiful/8awx8s", "datetime" : 1523262547.0}], "labels" : ["data:categorical", "data:quantitative", "domain:entertainment", "effect:confuesed", "fault:axis:incorrectlabel", "form:barchart"], "remarks" : "Incorrect x-axis label positioning."}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "post_id": {"type": "string"}, "image_name": {"type": "string"}, "image_path": {"type": "string"}, "thumbnail_path": {"type": "string"}, "datetime": {"type": "number"}, "url": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "popularity_score": {"type": "integer"}, "phash": {"type": "string"}, "duplicated_images": {"type": "array", "items": {"type": "string"}}, "duplicated_posts": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "post_id": {"type": "string"}, "datetime": {"type": "number"}}, "required": ["url", "title", "author", "post_id", "datetime"]}}, "labels": {"type": "array", "items": {"type": "string"}}, "remarks": {"type": "string"}}, "required": ["id", "post_id", "image_name", "image_path", "thumbnail_path", "datetime", "url", "title", "author", "popularity_score", "phash", "duplicated_images", "duplicated_posts", "labels", "remarks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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" : "3326150002", "district_id" : "3326150", "name" : "NGALIAN"}, {"id" : "3326150003", "district_id" : "3326150", "name" : "PANDAN ARUM"}, {"id" : "3326150004", "district_id" : "3326150", "name" : "KARANGANYAR"}, {"id" : "3326150005", "district_id" : "3326150", "name" : "SILIREJO"}, {"id" : "3326150007", "district_id" : "3326150", "name" : "DADIREJO"}, {"id" : "3326150008", "district_id" : "3326150", "name" : "SIDOREJO"}, {"id" : "3326150010", "district_id" : "3326150", "name" : "TANJUNG"}, {"id" : "3326150011", "district_id" : "3326150", "name" : "SAMBOREJO"}, {"id" : "3326150012", "district_id" : "3326150", "name" : "PACAR"}, {"id" : "3326150013", "district_id" : "3326150", "name" : "KARANGJOMPO"}, {"id" : "3326150014", "district_id" : "3326150", "name" : "TEGALDOWO"}, {"id" : "3326150015", "district_id" : "3326150", "name" : "MULYOREJO"}, {"id" : "3326150016", "district_id" : "3326150", "name" : "JERUKSARI"}]
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jshint": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["jshint", "mocha"]}, "dependencies": {"type": "object", "properties": {"scmp": {"type": "string"}}, "required": ["scmp"]}}, "required": ["name", "version", "description", "engines", "main", "types", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "simple-encryptor", "version" : "3.0.0", "description" : "Simplified encryption/decryption for node.js", "engines" : {"node" : ">= 4.5.0"}, "main" : "index.js", "types" : "index.d.ts", "scripts" : {"test" : "make test"}, "repository" : {"type" : "git", "url" : "https://github.com/sehrope/node-simple-encryptor"}, "keywords" : ["encryptor", "crypto", "aes", "encrypt", "decrypt"], "author" : "Sehrope Sarkuni <sehrope@jackdb.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/sehrope/node-simple-encryptor/issues"}, "homepage" : "https://github.com/sehrope/node-simple-encryptor", "devDependencies" : {"jshint" : "latest", "mocha" : "^5"}, "dependencies" : {"scmp" : "2.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"jshint": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["jshint", "mocha"]}, "dependencies": {"type": "object", "properties": {"scmp": {"type": "string"}}, "required": ["scmp"]}}, "required": ["name", "version", "description", "engines", "main", "types", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"PRE": {"type": "integer"}, "ENC": {"type": "array", "items": {"type": "integer"}}}, "required": ["PRE", "ENC"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"PRE" : 3600, "ENC" : [43765760, 1, 45359104, 1, 45608960, 1, 47620096, 5, 48869376, 1, 50118656, 8, 50450432, 1, 54161408, 8, 117481472, 2, 117768192, 1, 118341632, 3, 123416576, 1, 131448832, 1, 135880704, 1, 141828096, 1, 144961536, 1, 151044096, 1, 158613504, 1, 163479552, 1, 146825216, 7, 147894272, 1, 148975616, 1, 149569536, 1, 149839872, 1, 150708224, 1, 152928256, 2, 155631616, 2, 156983296, 1, 159145984, 3, 161304576, 244]}
json_instruct
{"type": "object", "properties": {"PRE": {"type": "integer"}, "ENC": {"type": "array", "items": {"type": "integer"}}}, "required": ["PRE", "ENC"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "cicero": {"type": "object", "properties": {"template": {"type": "string"}, "language": {"type": "string"}, "version": {"type": "string"}}, "required": ["template", "language", "version"]}}, "required": ["name", "version", "description", "author", "license", "cicero"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ip-payment", "version" : "0.1.0", "description" : "This clause is a payment clause for IP agreement, such as trademark or copyright licenses aggreements.", "author" : "Accord Project", "license" : "Apache-2.0", "cicero" : {"template" : "clause", "language" : "javascript", "version" : "^0.4.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "cicero": {"type": "object", "properties": {"template": {"type": "string"}, "language": {"type": "string"}, "version": {"type": "string"}}, "required": ["template", "language", "version"]}}, "required": ["name", "version", "description", "author", "license", "cicero"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Heder Coin", "symbol" : "HEDR", "logoURI" : "https://raw.githubusercontent.com/HederGit/crypto/main/logo.png", "decimals" : 0, "address" : "FwovKxHTJA8pLtSnkJWxFyTetTU1kKzg7o6gjRgFAAXf", "chainId" : 101, "tags" : ["social-token"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"subreddit" : "JamesBlake", "author" : "oizaro", "count" : 8}
json_instruct
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$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" : 116911, "name" : "Bigger Eurogamer", "description" : "blah blah blah widens Eurogamer up quite a bit and kills comments a lot<br>Screenshot shown with https://userstyles.org/styles/116412/double-double-scrollbar-buttons<br></p>http://puu.sh/jd7tM.png<br>Screenshot is too big for this site (>200Kb)", "user" : {"id" : 292806, "name" : "dizzy zane", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : "ccby"}, "updated" : "2015-07-26T04:46:36.000Z", "weekly_install_count" : 0, "total_install_count" : 157, "rating" : null, "after_screenshot_name" : "https://userstyles.org/auto_style_screenshots/116911-after.png?r=1584864076", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2015-07-26T04:46:36.000Z", "category" : "site", "raw_subcategory" : "eurogamer", "subcategory" : "eurogamer", "additional_info" : null, "style_tags" : [], "css" : "@-moz-document domain(\"eurogamer.net\") {\r\n#new-comments,#reply-box,.comment-count,#fragment-2,.cover-image,#header,#sidebar,.social{display:none!important}\r\n\r\n.hd,#content{width:99%;float:none}\r\n.followBar{width:100%}\r\n.image-gallery,.video{width:50%!important;display:block!important;margin:0 auto 0 auto!important;float:none!important}\r\n#fragment-1{margin:5px}\r\n.illustration{display:block!important;margin:0 auto 0 auto!important;float:none!important}\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/116911/bigger-eurogamer.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#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["active-expressions", "aexpr-interpretation", "aexpr-source-transformation-propagation", "aexpr-ticking", "aexpr-trigger", "array-to-stack", "composite-scopes-all", "reactive-object-queries"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"pci_projects_project_users_roles": {"type": "string"}, "pci_projects_project_users_roles_cancel": {"type": "string"}, "pci_projects_project_users_roles_edit": {"type": "string"}, "pci_projects_project_users_roles_edit_success": {"type": "string"}, "pci_projects_project_users_roles_edit_error": {"type": "string"}}, "required": ["pci_projects_project_users_roles", "pci_projects_project_users_roles_cancel", "pci_projects_project_users_roles_edit", "pci_projects_project_users_roles_edit_success", "pci_projects_project_users_roles_edit_error"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pci_projects_project_users_roles" : "Editar los roles", "pci_projects_project_users_roles_cancel" : "Cancelar", "pci_projects_project_users_roles_edit" : "Aceptar", "pci_projects_project_users_roles_edit_success" : "Los permisos del usuario se han modificado correctamente. Los cambios no son instant\u00e1neos y pueden tardar hasta 10 minutos en guardarse.", "pci_projects_project_users_roles_edit_error" : "Se ha producido un error al actualizar los roles del usuario {{ message }}."}
json_instruct
{"type": "object", "properties": {"pci_projects_project_users_roles": {"type": "string"}, "pci_projects_project_users_roles_cancel": {"type": "string"}, "pci_projects_project_users_roles_edit": {"type": "string"}, "pci_projects_project_users_roles_edit_success": {"type": "string"}, "pci_projects_project_users_roles_edit_error": {"type": "string"}}, "required": ["pci_projects_project_users_roles", "pci_projects_project_users_roles_cancel", "pci_projects_project_users_roles_edit", "pci_projects_project_users_roles_edit_success", "pci_projects_project_users_roles_edit_error"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Hello_World": {"type": "string"}, "Arg1": {"type": "array", "items": {"type": "integer"}}, "Arg2": {"type": "object", "properties": {"A": {"type": "integer"}, "B": {"type": "string"}, "C": {"type": "boolean"}, "D": {"type": "boolean"}, "E": {"type": "array", "items": {"type": "integer"}}}, "required": ["A", "B", "C", "D", "E"]}, "Arg3": {"type": "number"}, "Arg4": {"type": "number"}, "Str1": {"type": "string"}, "Str2": {"type": "string"}, "Str3": {"type": "string"}}, "required": ["Hello_World", "Arg1", "Arg2", "Arg3", "Arg4", "Str1", "Str2", "Str3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Hello_World" : "Hello From Json File!", "Arg1" : [1, 2, 3, 4, 5, 6], "Arg2" : {"A" : 1, "B" : "string", "C" : true, "D" : false, "E" : [1, 2, 3, 4]}, "Arg3" : 3.0, "Arg4" : 7.0, "Str1" : "This is from Json!", "Str2" : "This is from Json but cannot be overwrite!", "Str3" : "This is from json but won't show up!"}
json_instruct
{"type": "object", "properties": {"Hello_World": {"type": "string"}, "Arg1": {"type": "array", "items": {"type": "integer"}}, "Arg2": {"type": "object", "properties": {"A": {"type": "integer"}, "B": {"type": "string"}, "C": {"type": "boolean"}, "D": {"type": "boolean"}, "E": {"type": "array", "items": {"type": "integer"}}}, "required": ["A", "B", "C", "D", "E"]}, "Arg3": {"type": "number"}, "Arg4": {"type": "number"}, "Str1": {"type": "string"}, "Str2": {"type": "string"}, "Str3": {"type": "string"}}, "required": ["Hello_World", "Arg1", "Arg2", "Arg3", "Arg4", "Str1", "Str2", "Str3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"distance": {"type": "number"}}, "required": ["distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"distance" : 0.0005653482781419568}
json_instruct
{"type": "object", "properties": {"distance": {"type": "number"}}, "required": ["distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "electron-rebuild": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "lint-fix": {"type": "string"}}, "required": ["start", "electron-rebuild", "test", "lint", "lint-fix"]}, "dependencies": {"type": "object", "properties": {"electron": {"type": "string"}, "xterm": {"type": "string"}, "node-pty": {"type": "string"}, "xterm-addon-fit": {"type": "string"}, "electron-reload": {"type": "string"}, "libxmljs2": {"type": "string"}, "electron-default-menu": {"type": "string"}}, "required": ["electron", "xterm", "node-pty", "xterm-addon-fit", "electron-reload", "libxmljs2", "electron-default-menu"]}, "devDependencies": {"type": "object", "properties": {"electron-rebuild": {"type": "string"}, "mocha": {"type": "string"}, "rewire": {"type": "string"}, "standard": {"type": "string"}, "nyc": {"type": "string"}}, "required": ["electron-rebuild", "mocha", "rewire", "standard", "nyc"]}, "standard": {"type": "object", "properties": {"ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["ignore"]}}, "required": ["name", "version", "main", "license", "scripts", "dependencies", "devDependencies", "standard"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "lfsterm", "version" : "1.0.0", "main" : "./src/main.js", "license" : "MIT", "scripts" : {"start" : "electron .", "electron-rebuild" : "electron-rebuild -f -w node-pty", "test" : "nyc --reporter=html --reporter=text mocha", "lint" : "standard", "lint-fix" : "standard --fix"}, "dependencies" : {"electron" : "^8.2.1", "xterm" : "^4.4.0", "node-pty" : "^0.9.0", "xterm-addon-fit" : "^0.3.0", "electron-reload" : "^1.5.0", "libxmljs2" : "0.25.1", "electron-default-menu" : "^1.0.1"}, "devDependencies" : {"electron-rebuild" : "^1.10.1", "mocha" : "^7.1.1", "rewire" : "^5.0.0", "standard" : "^14.3.3", "nyc" : "^15.0.1"}, "standard" : {"ignore" : ["/src/book/"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "electron-rebuild": {"type": "string"}, "test": {"type": "string"}, "lint": {"type": "string"}, "lint-fix": {"type": "string"}}, "required": ["start", "electron-rebuild", "test", "lint", "lint-fix"]}, "dependencies": {"type": "object", "properties": {"electron": {"type": "string"}, "xterm": {"type": "string"}, "node-pty": {"type": "string"}, "xterm-addon-fit": {"type": "string"}, "electron-reload": {"type": "string"}, "libxmljs2": {"type": "string"}, "electron-default-menu": {"type": "string"}}, "required": ["electron", "xterm", "node-pty", "xterm-addon-fit", "electron-reload", "libxmljs2", "electron-default-menu"]}, "devDependencies": {"type": "object", "properties": {"electron-rebuild": {"type": "string"}, "mocha": {"type": "string"}, "rewire": {"type": "string"}, "standard": {"type": "string"}, "nyc": {"type": "string"}}, "required": ["electron-rebuild", "mocha", "rewire", "standard", "nyc"]}, "standard": {"type": "object", "properties": {"ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["ignore"]}}, "required": ["name", "version", "main", "license", "scripts", "dependencies", "devDependencies", "standard"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"widgetLabel": {"type": "string"}, "startTracking": {"type": "string"}, "stopTracking": {"type": "string"}}, "required": ["widgetLabel", "startTracking", "stopTracking"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"widgetLabel" : "Putanja", "startTracking" : "Po\u010dni da prati\u0161 moju lokaciju", "stopTracking" : "Prestani da prati\u0161 moju lokaciju"}
json_instruct
{"type": "object", "properties": {"widgetLabel": {"type": "string"}, "startTracking": {"type": "string"}, "stopTracking": {"type": "string"}}, "required": ["widgetLabel", "startTracking", "stopTracking"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this 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" : "37289", "place_name" : "Villas Bugambilias", "place_type" : "Fraccionamiento", "county" : "Le\u00f3n", "state" : "Guanajuato", "city" : "Le\u00f3n de los Aldama"}, {"postal_code" : "37289", "place_name" : "San Jorge", "place_type" : "Colonia", "county" : "Le\u00f3n", "state" : "Guanajuato", "city" : "Le\u00f3n de los Aldama"}, {"postal_code" : "37289", "place_name" : "Granja Ceres", "place_type" : "Colonia", "county" : "Le\u00f3n", "state" : "Guanajuato", "city" : "Le\u00f3n de los Aldama"}, {"postal_code" : "37289", "place_name" : "Oasis", "place_type" : "Residencial", "county" : "Le\u00f3n", "state" : "Guanajuato", "city" : "Le\u00f3n de los Aldama"}, {"postal_code" : "37289", "place_name" : "La Haciendita", "place_type" : "Colonia", "county" : "Le\u00f3n", "state" : "Guanajuato", "city" : "Le\u00f3n de los Aldama"}, {"postal_code" : "37289", "place_name" : "Fracciones San Pedro", "place_type" : "Colonia", "county" : "Le\u00f3n", "state" : "Guanajuato", "city" : "Le\u00f3n de los Aldama"}, {"postal_code" : "37289", "place_name" : "Anturios", "place_type" : "Residencial", "county" : "Le\u00f3n", "state" : "Guanajuato", "city" : "Le\u00f3n de los Aldama"}, {"postal_code" : "37289", "place_name" : "Natura", "place_type" : "Residencial", "county" : "Le\u00f3n", "state" : "Guanajuato", "city" : "Le\u00f3n de los Aldama"}, {"postal_code" : "37289", "place_name" : "Guadalupe", "place_type" : "Barrio", "county" : "Le\u00f3n", "state" : "Guanajuato", "city" : "Le\u00f3n de los Aldama"}]
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Aubignas", "dpt" : "Ard\u00e8che", "inscrits" : 354, "abs" : 73, "votants" : 281, "blancs" : 33, "nuls" : 11, "exp" : 237, "res" : [{"panneau" : "1", "voix" : 133}, {"panneau" : "2", "voix" : 104}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$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"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "unity": {"type": "string"}, "unityRelease": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "type": {"type": "string"}}, "required": ["name", "version", "displayName", "description", "unity", "unityRelease", "keywords", "author", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "com.spontadit.example", "version" : "1.0.0", "displayName" : "Shader Controller", "description" : "Generate Monobehaviour scripts from shader to easily animate properties.", "unity" : "2019.3", "unityRelease" : "7f1", "keywords" : ["Post-Process", "Shader", "Animation"], "author" : {"name" : "Stephane Pontadit", "email" : "stephane.pontadit@gmail.com", "url" : "https://github.com/SPontadit/ShaderController"}, "type" : "tool"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "unity": {"type": "string"}, "unityRelease": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "type": {"type": "string"}}, "required": ["name", "version", "displayName", "description", "unity", "unityRelease", "keywords", "author", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "_id": {"type": "string"}, "dist": {"type": "object", "properties": {"shasum": {"type": "string"}, "tarball": {"type": "string"}}, "required": ["shasum", "tarball"]}, "_from": {"type": "string"}, "_npmVersion": {"type": "string"}, "_npmUser": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "directories": {"type": "object", "properties": {}, "required": []}, "_shasum": {"type": "string"}, "_resolved": {"type": "string"}, "readme": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "license", "_id", "dist", "_from", "_npmVersion", "_npmUser", "maintainers", "directories", "_shasum", "_resolved", "readme"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "rework-visit", "version" : "1.0.0", "description" : "Rework declaration visitor utility", "keywords" : ["css", "rework"], "license" : "MIT", "_id" : "rework-visit@1.0.0", "dist" : {"shasum" : "9945b2803f219e2f7aca00adb8bc9f640f842c9a", "tarball" : "http://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz"}, "_from" : "rework-visit@^1.0.0", "_npmVersion" : "1.2.14", "_npmUser" : {"name" : "tjholowaychuk", "email" : "tj@vision-media.ca"}, "maintainers" : [{"name" : "tjholowaychuk", "email" : "tj@vision-media.ca"}], "directories" : {}, "_shasum" : "9945b2803f219e2f7aca00adb8bc9f640f842c9a", "_resolved" : "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", "readme" : "ERROR: No README data found!"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "_id": {"type": "string"}, "dist": {"type": "object", "properties": {"shasum": {"type": "string"}, "tarball": {"type": "string"}}, "required": ["shasum", "tarball"]}, "_from": {"type": "string"}, "_npmVersion": {"type": "string"}, "_npmUser": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "directories": {"type": "object", "properties": {}, "required": []}, "_shasum": {"type": "string"}, "_resolved": {"type": "string"}, "readme": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "license", "_id", "dist", "_from", "_npmVersion", "_npmUser", "maintainers", "directories", "_shasum", "_resolved", "readme"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"binance-smart-chain": {"type": "string"}}, "required": ["binance-smart-chain"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "reddit": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram", "reddit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "se7en-2", "symbol" : "se7en", "name" : "SE7EN", "platforms" : {"binance-smart-chain" : "0x6cd502ab164e37231c20578214f874a8adbdc7c2"}, "hashing_algorithm" : null, "categories" : [], "description" : {"en" : "The only token where you can only sell one day a week and passively earn BNB while you hold! \r\nThis token was built to last; the dividend pool grows with every bit and sell, rewarding our holders every hour! Selling is disabled from Monday-Saturday, and enabled every Sunday.\r\nDynamic taxes! Buy taxes decrease throughout the week, while sell taxes decrease every hour of."}, "country_origin" : "", "genesis_date" : null, "contract_address" : "0x6cd502ab164e37231c20578214f874a8adbdc7c2", "url" : "https://www.se7enbsc.com/", "explorers" : ["https://bscscan.com/token/0x6cd502ab164e37231c20578214f874a8adbdc7c2"], "twitter" : "se7enbsc", "telegram" : "se7enbsc", "reddit" : "se7enbsc"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"binance-smart-chain": {"type": "string"}}, "required": ["binance-smart-chain"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country_origin": {"type": "string"}, "genesis_date": {"type": "null"}, "contract_address": {"type": "string"}, "url": {"type": "string"}, "explorers": {"type": "array", "items": {"type": "string"}}, "twitter": {"type": "string"}, "telegram": {"type": "string"}, "reddit": {"type": "string"}}, "required": ["id", "symbol", "name", "platforms", "hashing_algorithm", "categories", "description", "country_origin", "genesis_date", "contract_address", "url", "explorers", "twitter", "telegram", "reddit"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"solidity.compileUsingRemoteVersion": {"type": "string"}}, "required": ["solidity.compileUsingRemoteVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"solidity.compileUsingRemoteVersion" : "v0.5.2+commit.1df8f40c"}
json_instruct
{"type": "object", "properties": {"solidity.compileUsingRemoteVersion": {"type": "string"}}, "required": ["solidity.compileUsingRemoteVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "capital": {"type": "string"}}, "required": ["name", "capital"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "Abia", "capital" : "Umuahia"}, {"name" : "Adamawa", "capital" : "Yola"}, {"name" : "Akwa Ibom", "capital" : "Uyo"}, {"name" : "Anambra", "capital" : "Awka"}, {"name" : "Bauchi", "capital" : "Bauchi"}, {"name" : "Benue", "capital" : "Makurdi"}, {"name" : "Borno", "capital" : "Maiduguri"}, {"name" : "Bayelsa", "capital" : "Yenagoa"}, {"name" : "Cross River", "capital" : "Calabar"}, {"name" : "Delta", "capital" : "Asaba"}, {"name" : "Ebonyi", "capital" : "Abakaliki"}, {"name" : "Edo", "capital" : "Benin"}, {"name" : "Ekiti", "capital" : "Ado-Ekiti"}, {"name" : "Enugu", "capital" : "Enugu"}, {"name" : "Federal Capital Territory", "capital" : "Abuja"}, {"name" : "Gombe", "capital" : "Gombe"}, {"name" : "Jigawa", "capital" : "Dutse"}, {"name" : "Imo", "capital" : "Owerri"}, {"name" : "Kaduna", "capital" : "Kaduna"}, {"name" : "Kebbi", "capital" : "Birnin Kebbi"}, {"name" : "Kano", "capital" : "Kano"}, {"name" : "Kogi", "capital" : "Lokoja"}, {"name" : "Lagos", "capital" : "Ikeja"}, {"name" : "Katsina", "capital" : "Katsina"}, {"name" : "Kwara", "capital" : "Ilorin"}, {"name" : "Nasarawa", "capital" : "Lafia"}, {"name" : "Niger", "capital" : "Minna"}, {"name" : "Ogun", "capital" : "Abeokuta"}, {"name" : "Ondo", "capital" : "Akure"}, {"name" : "Rivers", "capital" : "Port Harcourt"}, {"name" : "Oyo", "capital" : "Ibadan"}, {"name" : "Osun", "capital" : "Osogbo"}, {"name" : "Sokoto", "capital" : "Sokoto"}, {"name" : "Plateau", "capital" : "Jos"}, {"name" : "Taraba", "capital" : "Jalingo"}, {"name" : "Yobe", "capital" : "Damaturu"}, {"name" : "Zamfara", "capital" : "Gusau"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "capital": {"type": "string"}}, "required": ["name", "capital"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"900763861": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900763862": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900763863": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900763861", "900763862", "900763863"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900763861" : {"nama" : "TPS 1", "dapil" : [9101, 19107, 2911702]}, "900763862" : {"nama" : "TPS 2", "dapil" : [9101, 19107, 2911702]}, "900763863" : {"nama" : "TPS 3", "dapil" : [9101, 19107, 2911702]}}
json_instruct
{"type": "object", "properties": {"900763861": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900763862": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900763863": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900763861", "900763862", "900763863"], "$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"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 172615, "info" : {"name" : "Duolingo hide leagues", "description" : "This userstyle hides the leagues seen on the homepage of Duolingo(.com)", "additionalInfo" : "<u>Updates:</u> <i>(dd-mm-yyyy)</i>\r\n<b>07-03-2021</b> | Fixed userstyle (How long has this been broken?)\r\n<b>30-03-2020</b> | Fixed userstyle (broke since Duolingo updated their site)\r\n<b>09-06-2019</b> | Style released!", "format" : "uso", "category" : "duolingo", "createdAt" : "2019-06-09T17:15:46.000Z", "updatedAt" : "2021-03-07T02:09:35.000Z", "license" : "CC0-1.0", "author" : {"id" : 800037, "name" : "Thiibo"}}, "stats" : {"installs" : {"total" : 625, "weekly" : 6}}, "screenshots" : {"main" : {"name" : "172615_after.jpeg", "archived" : true}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain('duolingo.com') {\r\n._1_p4S._3Gj5_ {display: none;}\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "A Sense-Based Translation Model for Statistical Machine Translation.", "fields" : ["transfer based machine translation", "example based machine translation", "synchronous context free grammar", "semeval", "topic model"], "abstract" : "The sense in which a word is used determines the translation of the word. In this paper, we propose a sense-based translation model to integrate word senses into statistical machine translation. We build a broad-coverage sense tagger based on a nonparametric Bayesian topic model that automatically learns sense clusters for words in the source language. The proposed sense-based translation model enables the decoder to select appropriate translations for source words according to the inferred senses for these words using maximum entropy classifiers. Our method is significantly different from previous word sense disambiguation reformulatedfor machine translation in that the latter neglects word senses in nature. We test the effectiveness of the proposed sensebased translation model on a large-scale Chinese-to-English translation task. Results show that the proposed model substantially outperforms not only the baseline but also the previous reformulated word sense disambiguation.", "citation" : "Citations (14)", "year" : "2014", "departments" : ["Soochow University"], "conf" : "acl", "authors" : ["Deyi Xiong.....http://dblp.org/pers/hd/x/Xiong:Deyi", "Min Zhang.....http://dblp.org/pers/hd/z/Zhang_0005:Min"], "pages" : 11}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-sanitize": {"type": "string"}, "bootstrap": {"type": "string"}, "marked": {"type": "string"}, "highlightjs": {"type": "string"}, "angular-ui-codemirror": {"type": "string"}}, "required": ["angular", "angular-sanitize", "bootstrap", "marked", "highlightjs", "angular-ui-codemirror"]}}, "required": ["name", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Markdown Editor with AngularJs", "dependencies" : {"angular" : "1.3.x", "angular-sanitize" : "~1.3.x", "bootstrap" : "~3.x", "marked" : "~0.3.x", "highlightjs" : "~8.4.0", "angular-ui-codemirror" : "~0.3.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-sanitize": {"type": "string"}, "bootstrap": {"type": "string"}, "marked": {"type": "string"}, "highlightjs": {"type": "string"}, "angular-ui-codemirror": {"type": "string"}}, "required": ["angular", "angular-sanitize", "bootstrap", "marked", "highlightjs", "angular-ui-codemirror"]}}, "required": ["name", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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" : "Plain Dealing", "state_name" : "Louisiana", "state_abbrv" : "LA", "lat" : "32.9074", "long" : "-93.6905"}
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 an example JSON object that satisfies this schema: {"type": "object", "properties": {"output_model_file": {"type": "string"}, "wavelength_file": {"type": "string"}, "normalize": {"type": "string"}, "reference_windows": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "sources": {"type": "array", "items": {"type": "object", "properties": {"input_spectrum_files": {"type": "array", "items": {"type": "string"}}, "n_components": {"type": "integer"}, "windows": {"type": "array", "items": {"type": "object", "properties": {"interval": {"type": "array", "items": {"type": "integer"}}, "regularizer": {"type": "number"}, "correlation": {"type": "string"}}, "required": ["interval", "regularizer", "correlation"]}}}, "required": ["input_spectrum_files", "n_components", "windows"]}}}, "required": ["output_model_file", "wavelength_file", "normalize", "reference_windows", "sources"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"output_model_file" : "../input/ecostress_surface_model.mat", "wavelength_file" : "../input/avirisc_hytes_wavelengths.txt", "normalize" : "None", "reference_windows" : [[400, 1300], [1450, 1700], [2100, 2450]], "sources" : [{"input_spectrum_files" : ["../../../data/reflectance/ecostress_library_with_mixtures"], "n_components" : 20, "windows" : [{"interval" : [300, 400], "regularizer" : 0.0001, "correlation" : "EM"}, {"interval" : [400, 1300], "regularizer" : 1e-05, "correlation" : "EM"}, {"interval" : [1300, 1450], "regularizer" : 1e-05, "correlation" : "EM"}, {"interval" : [1450, 1700], "regularizer" : 1e-05, "correlation" : "EM"}, {"interval" : [1700, 2100], "regularizer" : 1e-05, "correlation" : "EM"}, {"interval" : [2100, 2450], "regularizer" : 1e-05, "correlation" : "EM"}, {"interval" : [2450, 2550], "regularizer" : 0.0001, "correlation" : "EM"}, {"interval" : [7500, 12100], "regularizer" : 1e-05, "correlation" : "GP", "gp_magnitude" : 1e-05, "gp_width" : 50}]}]}
json_instruct
{"type": "object", "properties": {"output_model_file": {"type": "string"}, "wavelength_file": {"type": "string"}, "normalize": {"type": "string"}, "reference_windows": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "sources": {"type": "array", "items": {"type": "object", "properties": {"input_spectrum_files": {"type": "array", "items": {"type": "string"}}, "n_components": {"type": "integer"}, "windows": {"type": "array", "items": {"type": "object", "properties": {"interval": {"type": "array", "items": {"type": "integer"}}, "regularizer": {"type": "number"}, "correlation": {"type": "string"}}, "required": ["interval", "regularizer", "correlation"]}}}, "required": ["input_spectrum_files", "n_components", "windows"]}}}, "required": ["output_model_file", "wavelength_file", "normalize", "reference_windows", "sources"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "coverArt": {"type": "string"}, "copyright_year": {"type": "string"}, "genres": {"type": "array", "items": {"type": "string"}}, "supporters": {"type": "array", "items": {"type": "object", "properties": {"role": {"type": "string"}, "name": {"type": "string"}}, "required": ["role", "name"]}}, "sections": {"type": "array", "items": {"type": "object", "properties": {"section": {"type": "integer"}, "title": {"type": "string"}, "readers": {"type": "array", "items": {"type": "integer"}}, "path": {"type": "string"}, "duration": {"type": "integer"}}, "required": ["section", "title", "readers", "path", "duration"]}}}, "required": ["title", "description", "duration", "language", "authors", "coverArt", "copyright_year", "genres", "supporters", "sections"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Bible (DRV) Apocrypha/Deuterocanon: Baruch", "description" : "The Book of Baruch consists of exhortation to Jews in exile to accept exile, hope for the mercy of God, and resist the temptation to worship idols of the nations. The Book of Baruch, occasionally referred to as 1 Baruch, is called a deuterocanonical or apocryphal book of the Bible. Although not in the Hebrew Bible, it is found in the Greek Bible (LXX) and in the Vulgate Bible, and also in Theodotion's version. There it is found among the prophetical books which also include Isaiah, Jeremiah, Lamentations, Ezekiel, Daniel, and the twelve minor prophets. It is named after Baruch ben Neriah, Jeremiah's scribe. Scholars propose that it was written during or shortly after the period of the Maccabees. In the Vulgate, the King James Bible, and many other versions, the Letter of Jeremiah is appended to the end of the Book of Baruch as a sixth chapter. (Summary by Wikipedia, modified by Sam Stinson)", "duration" : 1907, "language" : "English", "authors" : [{"id" : "1183", "name" : " Douay-Rheims Version (DRV)"}], "coverArt" : "https://www.archive.org/download/LibrivoxCdCoverArt13/Baruch_DRV_1112.jpg", "copyright_year" : "1752", "genres" : ["Douay-Rheims Version"], "supporters" : [{"role" : "Read by", "name" : "Sam Stinson"}, {"role" : "Book Coordinator", "name" : "Sam Stinson"}, {"role" : "Meta Coordinator", "name" : "Leon Mire"}], "sections" : [{"section" : 1, "title" : "Chapters 01-03", "readers" : [908], "path" : "https://www.archive.org/download/baruch_drv_0806_librivox/baruch_01-03_drb_64kb.mp3", "duration" : 874}, {"section" : 2, "title" : "Chapters 04-06", "readers" : [908], "path" : "https://www.archive.org/download/baruch_drv_0806_librivox/baruch_04-06_drb_64kb.mp3", "duration" : 1033}]}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "coverArt": {"type": "string"}, "copyright_year": {"type": "string"}, "genres": {"type": "array", "items": {"type": "string"}}, "supporters": {"type": "array", "items": {"type": "object", "properties": {"role": {"type": "string"}, "name": {"type": "string"}}, "required": ["role", "name"]}}, "sections": {"type": "array", "items": {"type": "object", "properties": {"section": {"type": "integer"}, "title": {"type": "string"}, "readers": {"type": "array", "items": {"type": "integer"}}, "path": {"type": "string"}, "duration": {"type": "integer"}}, "required": ["section", "title", "readers", "path", "duration"]}}}, "required": ["title", "description", "duration", "language", "authors", "coverArt", "copyright_year", "genres", "supporters", "sections"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"shaka-player.compiled.js": {"type": "string"}}, "required": ["shaka-player.compiled.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"shaka-player.compiled.js" : "sha256-bVIA+dez++cGSZuosbXLBp56eiYQkQO63L9kGnGyhvo="}
json_instruct
{"type": "object", "properties": {"shaka-player.compiled.js": {"type": "string"}}, "required": ["shaka-player.compiled.js"], "$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"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"querystring": {"type": "string"}}, "required": ["querystring"]}}, "required": ["name", "version", "main", "repository", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "response-adapter", "version" : "1.0.2", "main" : "index.js", "repository" : "git@github.com:IonDevOrg/response-adapter.git", "author" : "Daniel Farias <daniel.dsfarias@gmail.com>", "license" : "MIT", "dependencies" : {"querystring" : "^0.2.1"}}
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": {"querystring": {"type": "string"}}, "required": ["querystring"]}}, "required": ["name", "version", "main", "repository", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"download_url": {"type": "string"}, "file_name": {"type": "string"}, "install_cmd": {"type": "string"}, "install_args": {"type": "string"}, "install_time": {"type": "object", "properties": {"kit": {"type": "string"}, "driver": {"type": "string"}}, "required": ["kit", "driver"]}}, "required": ["download_url", "file_name", "install_cmd", "install_args", "install_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"download_url" : "https://software-download.microsoft.com/download/sg/20348.1.210507-1500.fe_release_amd64fre_SERVER_LOF_PACKAGES_OEM.iso", "file_name" : "20348.1.210507-1500.fe_release_amd64fre_SERVER_LOF_PACKAGES_OEM.iso", "install_cmd" : "powershell", "install_args" : "-ExecutionPolicy Bypass -File @sw_path@\\fod.ps1 -isoPath @sw_path@\\@file_name@", "install_time" : {"kit" : "before", "driver" : "before"}}
json_instruct
{"type": "object", "properties": {"download_url": {"type": "string"}, "file_name": {"type": "string"}, "install_cmd": {"type": "string"}, "install_args": {"type": "string"}, "install_time": {"type": "object", "properties": {"kit": {"type": "string"}, "driver": {"type": "string"}}, "required": ["kit", "driver"]}}, "required": ["download_url", "file_name", "install_cmd", "install_args", "install_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "subtitle": {"type": "string"}}, "required": ["title", "subtitle"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"title" : "IBM Design Competition '19", "subtitle" : "3rd Place"}, {"title" : "Crown Prince Scholarship Program", "subtitle" : "Top 20"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "subtitle": {"type": "string"}}, "required": ["title", "subtitle"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Polar Codes: Speed of Polarization and Polynomial Gap to Capacity.", "fields" : ["polar", "block code", "combinatorics", "channel capacity", "polarization", "mathematics", "discrete mathematics", "polynomial", "bounded function", "generator matrix"], "abstract" : "We prove that, for all binary-input symmetric memory less channels, polar codes enable reliable communication at rates within e > 0 of the Shannon capacity with a block length, construction complexity, and decoding complexity all bounded by a polynomial in 1/e. Polar coding gives the first known explicit construction with rigorous proofs of all these properties. We give an elementary proof of the capacity achieving property of polar codes that does not rely on the martingale convergence theorem. As a result, we are able to explicitly show that polar codes can have block length (and consequently also encoding and decoding complexity) that is bounded by a polynomial in the gap to capacity. The generator matrix of such polar codes can be constructed in polynomial time using merging of channel output symbols to reduce the alphabet size of the channels seen at the decoder.", "citation" : "Citations (56)", "year" : "2013", "departments" : ["Carnegie Mellon University", "Carnegie Mellon University", "Carnegie Mellon University", "Carnegie Mellon University"], "conf" : "focs", "authors" : ["Venkatesan Guruswami.....http://dblp.org/pers/hd/g/Guruswami:Venkatesan", "Patrick Xia.....http://dblp.org/pers/hd/x/Xia:Patrick"], "pages" : 10}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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" : [[[-66.155035, 18.439026], [-66.154557, 18.442907], [-66.151878, 18.447036], [-66.150022, 18.443185], [-66.152195, 18.442375], [-66.152144, 18.438795], [-66.155035, 18.439026]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 82591}}]}
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 sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"title" : "Canadian Undergraduate Physics Conference 2018 Planning Committee", "description" : "Helped plan and manage a conference which hosted close to 100+ attendees at the University of Alberta."}, {"title" : "Blessed Oscar Romero High School Graduation Ceremony Master of Ceremonies", "description" : "Gave a short speech, hosted and spoke at Blessed Oscar Romero graduation ceremony at the Jubilee Auditorium in front of 400 people."}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"]}, "$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"}}, "required": ["name", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "lru-cache", "version" : "2.5.0"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"course_code": {"type": "string"}, "course_name": {"type": "string"}, "faculty": {"type": "string"}, "school": {"type": "string"}, "units": {"type": "string"}, "duration": {"type": "string"}, "description": {"type": "string"}, "prerequisites": {"type": "string"}, "incompatible": {"type": "string"}, "restricted": {"type": "string"}}, "required": ["course_code", "course_name", "faculty", "school", "units", "duration", "description", "prerequisites", "incompatible", "restricted"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"course_code" : "STAT7013", "course_name" : "Project or Thesis I", "faculty" : "Science", "school" : "Mathematics & Physics School", "units" : "8", "duration" : "One Semester", "description" : "Research project/thesis report on topic in research field as recommended by supervisor and approved by Head of School.", "prerequisites" : "Permission of Head of School", "incompatible" : "", "restricted" : ""}
json_instruct
{"type": "object", "properties": {"course_code": {"type": "string"}, "course_name": {"type": "string"}, "faculty": {"type": "string"}, "school": {"type": "string"}, "units": {"type": "string"}, "duration": {"type": "string"}, "description": {"type": "string"}, "prerequisites": {"type": "string"}, "incompatible": {"type": "string"}, "restricted": {"type": "string"}}, "required": ["course_code", "course_name", "faculty", "school", "units", "duration", "description", "prerequisites", "incompatible", "restricted"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"published" : "2015-09-16T15:10:07Z", "media-type" : "News", "title" : "Philadelphia Controller's Office...", "id" : "7ec26381-fc2b-4844-8f08-b3eb3925940d", "content" : "Philadelphia's Office of the Controller says the city's Department of Licenses and Inspections habitually jeopardizes public safety by allowing uncertified workers to conduct building inspections. \n\nAn investigation found that two inspectors performed 1,900 inspections without being properly certified. \n\nThe Philadelphia Inquirer reports (http://bit.ly/1igIhBJ ) controllers found the department doesn't effectively monitor inspector overtime in addition to using a computer system that allows data to be altered without a trace. \n\nController's Office officials say the department put up such a \"huge resistance\" that they were forced to subpoena documents that were requested but not provided. \n\nThe report states that what began as a simple audit became a \"special investigation\" once the issues were uncovered following pushback from L&I officials. \n\nL&I officials declined comment. \n\n___ \n\nInformation from: The Philadelphia Inquirer, http://www.inquirer.com", "source" : "DailyNews724.com"}
json_instruct
{"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}, "briefDescription": {"type": "string"}, "yearOfEstablishment": {"type": "string"}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress", "briefDescription", "yearOfEstablishment"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contacts" : [], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=1472", "name" : "HEARDS FOUNDATION (Health Environment Education and Rural Development Service Foundation)", "primaryEmail" : "heardsfoundation@gmail.com", "website" : "www.heardsfoundation.weebly.com", "organisationType" : ["Advocacy & Campaigning", "Direct Service", "Network", "Support"], "telephone" : ["919448596438", "918223274449"], "mainAddrress" : {"state" : "Karnataka", "address" : ["# 1 T.A.P.C.M.S. Building,", "Post Office Road", "Periyapatna", "Mysuru (Mysore)", "Karnataka", "571107"]}, "briefDescription" : "Our NGO has been working since 9 years in creating awareness in Water shed development,protecting the environment and several other activities like Legal awareness, AIDS awareness, forestation, health camps, solid waste management etc,", "yearOfEstablishment" : "2002"}
json_instruct
{"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}, "briefDescription": {"type": "string"}, "yearOfEstablishment": {"type": "string"}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress", "briefDescription", "yearOfEstablishment"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"_index": {"type": "string"}, "_type": {"type": "string"}, "_id": {"type": "string"}, "_score": {"type": "integer"}, "_source": {"type": "object", "properties": {"index": {"type": "string"}, "name": {"type": "string"}, "esType": {"type": "string"}, "config": {"type": "object", "properties": {}, "required": []}, "active": {"type": "boolean"}, "timestamp": {"type": "string"}}, "required": ["index", "name", "esType", "config", "active", "timestamp"]}}, "required": ["_index", "_type", "_id", "_score", "_source"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_index" : "arranger-projects-niaid_1", "_type" : "arranger-projects-niaid_1", "_id" : "niaid", "_score" : 1, "_source" : {"index" : "niaid", "name" : "subject", "esType" : "subject", "config" : {}, "active" : true, "timestamp" : "2018-09-27T21:27:11.921Z"}}
json_instruct
{"type": "object", "properties": {"_index": {"type": "string"}, "_type": {"type": "string"}, "_id": {"type": "string"}, "_score": {"type": "integer"}, "_source": {"type": "object", "properties": {"index": {"type": "string"}, "name": {"type": "string"}, "esType": {"type": "string"}, "config": {"type": "object", "properties": {}, "required": []}, "active": {"type": "boolean"}, "timestamp": {"type": "string"}}, "required": ["index", "name", "esType", "config", "active", "timestamp"]}}, "required": ["_index", "_type", "_id", "_score", "_source"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"$schema": {"type": "string"}, "snek_type": {"type": "string"}}, "required": ["$schema", "snek_type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "./schema/config.schema.json", "snek_type" : "cool"}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "snek_type": {"type": "string"}}, "required": ["$schema", "snek_type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"month": {"type": "array", "items": {"type": "string"}}, "weekdays": {"type": "array", "items": {"type": "string"}}, "shortDatePattern": {"type": "string"}, "longDatePattern": {"type": "string"}, "shortTimePattern": {"type": "string"}, "longTimePattern": {"type": "string"}}, "required": ["month", "weekdays", "shortDatePattern", "longDatePattern", "shortTimePattern", "longTimePattern"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"month" : ["\u041d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0425\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0413\u0443\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0414\u04e9\u0440\u04e9\u0432\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0422\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0417\u0443\u0440\u0433\u0430\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0414\u043e\u043b\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u041d\u0430\u0439\u043c\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0415\u0441\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0410\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", "\u0410\u0440\u0432\u0430\u043d \u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", "\u0410\u0440\u0432\u0430\u043d \u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", ""], "weekdays" : ["\u043d\u044f\u043c", "\u0434\u0430\u0432\u0430\u0430", "\u043c\u044f\u0433\u043c\u0430\u0440", "\u043b\u0445\u0430\u0433\u0432\u0430", "\u043f\u04af\u0440\u044d\u0432", "\u0431\u0430\u0430\u0441\u0430\u043d", "\u0431\u044f\u043c\u0431\u0430"], "shortDatePattern" : "yyyy-MM-dd", "longDatePattern" : "dddd, yyyy '\u043e\u043d\u044b' MM '\u0441\u0430\u0440\u044b\u043d' d", "shortTimePattern" : "HH:mm", "longTimePattern" : "HH:mm:ss"}
json_instruct
{"type": "object", "properties": {"month": {"type": "array", "items": {"type": "string"}}, "weekdays": {"type": "array", "items": {"type": "string"}}, "shortDatePattern": {"type": "string"}, "longDatePattern": {"type": "string"}, "shortTimePattern": {"type": "string"}, "longTimePattern": {"type": "string"}}, "required": ["month", "weekdays", "shortDatePattern", "longDatePattern", "shortTimePattern", "longTimePattern"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"classifier": {"type": "string"}, "apiVersion": {"type": "string"}, "main": {"type": "string"}, "organizationId": {"type": "string"}, "groupId": {"type": "string"}, "assetId": {"type": "string"}, "version": {"type": "string"}}, "required": ["classifier", "apiVersion", "main", "organizationId", "groupId", "assetId", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"classifier" : "oas", "apiVersion" : "v1", "main" : "api.json", "organizationId" : "8bfc8bbf-5508-419e-aadc-77dfe18a8172", "groupId" : "f1e97bc6-315a-4490-82a7-23abe036327a.anypoint-platform", "assetId" : "api-manager-api", "version" : "1.0.11"}
json_instruct
{"type": "object", "properties": {"classifier": {"type": "string"}, "apiVersion": {"type": "string"}, "main": {"type": "string"}, "organizationId": {"type": "string"}, "groupId": {"type": "string"}, "assetId": {"type": "string"}, "version": {"type": "string"}}, "required": ["classifier", "apiVersion", "main", "organizationId", "groupId", "assetId", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"App\\": {"type": "string"}}, "required": ["App\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"App\\Tests\\": {"type": "string"}}, "required": ["App\\Tests\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"doctrine/orm": {"type": "string"}, "pomm-project/model-manager": {"type": "string"}, "prooph/pdo-event-store": {"type": "string"}, "symfony/cache": {"type": "string"}, "symfony/uid": {"type": "string"}}, "required": ["doctrine/orm", "pomm-project/model-manager", "prooph/pdo-event-store", "symfony/cache", "symfony/uid"]}, "config": {"type": "object", "properties": {"allow-plugins": {"type": "object", "properties": {"composer/package-versions-deprecated": {"type": "boolean"}}, "required": ["composer/package-versions-deprecated"]}}, "required": ["allow-plugins"]}}, "required": ["name", "description", "type", "license", "authors", "minimum-stability", "autoload", "autoload-dev", "require", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "gquemener/repositoring", "description" : "A set of read/write repository implementations, because why not!", "type" : "project", "license" : "MIT", "authors" : [{"name" : "Gildas Qu\u00e9m\u00e9ner", "email" : "gildas.quemener@gmail.com"}], "minimum-stability" : "stable", "autoload" : {"psr-4" : {"App\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"App\\Tests\\" : "tests/"}}, "require" : {"doctrine/orm" : "^2.8", "pomm-project/model-manager" : "^2.0", "prooph/pdo-event-store" : "^1.13", "symfony/cache" : "^6.0", "symfony/uid" : "^6.0"}, "config" : {"allow-plugins" : {"composer/package-versions-deprecated" : true}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"App\\": {"type": "string"}}, "required": ["App\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"App\\Tests\\": {"type": "string"}}, "required": ["App\\Tests\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"doctrine/orm": {"type": "string"}, "pomm-project/model-manager": {"type": "string"}, "prooph/pdo-event-store": {"type": "string"}, "symfony/cache": {"type": "string"}, "symfony/uid": {"type": "string"}}, "required": ["doctrine/orm", "pomm-project/model-manager", "prooph/pdo-event-store", "symfony/cache", "symfony/uid"]}, "config": {"type": "object", "properties": {"allow-plugins": {"type": "object", "properties": {"composer/package-versions-deprecated": {"type": "boolean"}}, "required": ["composer/package-versions-deprecated"]}}, "required": ["allow-plugins"]}}, "required": ["name", "description", "type", "license", "authors", "minimum-stability", "autoload", "autoload-dev", "require", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "220184010200", "text" : "\u82c7\u5b50\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "220184010201", "text" : "\u5411\u524d\u6751\u59d4\u4f1a"}, {"id" : "220184010202", "text" : "\u5411\u534e\u6751\u59d4\u4f1a"}, {"id" : "220184010203", "text" : "\u5411\u9633\u6751\u59d4\u4f1a"}, {"id" : "220184010204", "text" : "\u957f\u9752\u6751\u59d4\u4f1a"}, {"id" : "220184010205", "text" : "\u737e\u5b50\u6d1e\u6751\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"tasks": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}}, "required": ["tasks", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"tasks" : ["serverless-api-s3", "serverless-api-s3-bucket", "serverless-data-s3", "serverless-data-s3-bucket"], "description" : "Manage serverless configuration for an s3 bucket."}
json_instruct
{"type": "object", "properties": {"tasks": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}}, "required": ["tasks", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"1AFnEXSsqBiddwfoRaN85PDgwFXeK1Y4aa": {"type": "string"}}, "required": ["1AFnEXSsqBiddwfoRaN85PDgwFXeK1Y4aa"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"address" : "1BLogC9LN4oPDcruNz3qo1ysa133E9AGg8", "cert_auth_type" : "web", "cert_sign" : "GyyP3ewXZ0lq/M+m13lqaWOM0uTffSucQrHt94vxci3mOxAUin8J+kxdsoUwGBeaAbhdOEeD4yKhK1c/QNsDssc=", "cert_user_id" : "christopha@zeroid.bit", "files" : {"data.json" : {"sha512" : "dc311e0b16faa351d7a08dc4cd5419d7170e85ed5a8186fa8529bf21584143ce", "size" : 175}}, "inner_path" : "data/users/1AFnEXSsqBiddwfoRaN85PDgwFXeK1Y4aa/content.json", "modified" : 1493174289, "signs" : {"1AFnEXSsqBiddwfoRaN85PDgwFXeK1Y4aa" : "HEkCEElKHtMQ/wno2YoM1+VhgOqPdLyitBACyS1zzeSubh2AEqH5YZytW/ACcwXRaonbgOfEPvRjEokvlNx84vo="}}
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}, "required": ["sha512", "size"]}}, "required": ["data.json"]}, "inner_path": {"type": "string"}, "modified": {"type": "integer"}, "signs": {"type": "object", "properties": {"1AFnEXSsqBiddwfoRaN85PDgwFXeK1Y4aa": {"type": "string"}}, "required": ["1AFnEXSsqBiddwfoRaN85PDgwFXeK1Y4aa"]}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "150423203200", "text" : "\u6c99\u5df4\u5c14\u53f0\u560e\u67e5\u6751\u59d4\u5458\u4f1a"}, {"id" : "150423203201", "text" : "\u5854\u672c\u82b1\u560e\u67e5\u6751\u59d4\u5458\u4f1a"}, {"id" : "150423203202", "text" : "\u547c\u7279\u52d2\u560e\u67e5\u6751\u59d4\u5458\u4f1a"}, {"id" : "150423203203", "text" : "\u547c\u52d2\u65af\u56fe\u5e03\u90ce\u560e\u67e5\u6751\u59d4\u5458\u4f1a"}, {"id" : "150423203204", "text" : "\u67e5\u5e72\u9521\u70ed\u560e\u67e5\u6751\u59d4\u5458\u4f1a"}, {"id" : "150423203205", "text" : "\u6d69\u4f0a\u65e5\u6bdb\u90fd\u560e\u67e5\u6751\u59d4\u5458\u4f1a"}, {"id" : "150423203206", "text" : "\u6bdb\u6566\u6566\u8fbe\u560e\u67e5\u6751\u59d4\u5458\u4f1a"}, {"id" : "150423203207", "text" : "\u73e0\u814a\u6c81\u560e\u67e5\u6751\u59d4\u5458\u4f1a"}, {"id" : "150423203208", "text" : "\u67e5\u5e72\u6c90\u6ca6\u560e\u67e5\u6751\u59d4\u5458\u4f1a"}, {"id" : "150423203209", "text" : "\u5df4\u5f66\u9521\u90a3\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "150423203210", "text" : "\u8fbe\u9a6c\u91d1\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "150423203211", "text" : "\u5c97\u6839\u6751\u6c11\u59d4\u5458\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"enabled": {"type": "boolean"}, "description": {"type": "string"}, "full_description": {"type": "string"}, "author": {"type": "string"}}, "required": ["enabled", "description", "full_description", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"enabled" : true, "description" : "It computes the expression-error-rate of an hypothesis file with respect to a reference file.", "full_description" : "The expression-error-rate is an error measure to be minimized: 0.0 means no errors, 100.0 means 100% of errors.", "author" : "Mauro Cettolo and Roldano Cattoni from FBK"}
json_instruct
{"type": "object", "properties": {"enabled": {"type": "boolean"}, "description": {"type": "string"}, "full_description": {"type": "string"}, "author": {"type": "string"}}, "required": ["enabled", "description", "full_description", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : "Edmund Waller", "classification" : "Rhymed Stanza", "keywords" : ["Time", "Brevity", "Relationships", "Living", "Love", "Men", "Women", "Romantic Love", "Desire", "Infatuation", "Crushes", "Realistic", "Complicated"], "period" : "17th Century", "reference" : "http://www.poetryfoundation.org/poem/174709", "region" : "England", "text" : ["Go, lovely rose!", "Tell her that wastes her time and me,", "That now she knows,", "When I resemble her to thee,", "How sweet and fair she seems to be.", "Tell her that\u2019s young,", "And shuns to have her graces spied,", "That hadst thou sprung", "In deserts, where no men abide,", "Thou must have uncommended died.", "Small is the worth", "Of beauty from the light retired;", "Bid her come forth,", "Suffer herself to be desired,", "And not blush so to be admired.", "Then die! that she", "The common fate of all things rare", "May read in thee;", "How small a part of time they share", "That are so wondrous sweet and fair!"], "title" : "Song", "year" : ""}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "language-name": {"type": "string"}, "language-name-romanized-sorted": {"type": "string"}, "language-button-text": {"type": "string"}, "terms": {"type": "string"}, "Privacy Policy": {"type": "string"}, "search-input-button": {"type": "string"}, "search-input-label": {"type": "string"}, "wiki": {"type": "object", "properties": {"name": {"type": "string"}, "slogan": {"type": "string"}, "entries": {"type": "string"}}, "required": ["name", "slogan", "entries"]}, "wiktionary": {"type": "object", "properties": {"name": {"type": "string"}, "slogan": {"type": "string"}, "entries": {"type": "string"}}, "required": ["name", "slogan", "entries"]}, "wikibooks": {"type": "object", "properties": {"entries": {"type": "string"}}, "required": ["entries"]}, "wikinews": {"type": "object", "properties": {"entries": {"type": "string"}}, "required": ["entries"]}, "wikiquote": {"type": "object", "properties": {"entries": {"type": "string"}}, "required": ["entries"]}, "wikivoyage": {"type": "object", "properties": {"slogan": {"type": "string"}}, "required": ["slogan"]}, "wikidata": {"type": "object", "properties": {"name": {"type": "string"}, "slogan": {"type": "string"}}, "required": ["name", "slogan"]}, "mediawiki": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["@metadata", "language-name", "language-name-romanized-sorted", "language-button-text", "terms", "Privacy Policy", "search-input-button", "search-input-label", "wiki", "wiktionary", "wikibooks", "wikinews", "wikiquote", "wikivoyage", "wikidata", "mediawiki"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@metadata" : {"authors" : ["Papuass", "Silraks"]}, "language-name" : "Latvie\u0161u", "language-name-romanized-sorted" : "Latviesu", "language-button-text" : "Lasi Vikip\u0113diju tav\u0101 valod\u0101", "terms" : "Lieto\u0161anas noteikumi", "Privacy Policy" : "Priv\u0101tuma politika", "search-input-button" : "Mekl\u0113t", "search-input-label" : "Mekl\u0113t Vikip\u0113dij\u0101", "wiki" : {"name" : "Vikip\u0113dija", "slogan" : "Br\u012bv\u0101 enciklop\u0113dija", "entries" : "raksti"}, "wiktionary" : {"name" : "Wiktionary", "slogan" : "Br\u012bv\u0101 v\u0101rdn\u012bca", "entries" : "ieraksti"}, "wikibooks" : {"entries" : "lapas"}, "wikinews" : {"entries" : "raksti"}, "wikiquote" : {"entries" : "raksti"}, "wikivoyage" : {"slogan" : "Br\u012bvs ce\u013cojumu gids"}, "wikidata" : {"name" : "Vikidati", "slogan" : "Br\u012bva zin\u0101\u0161anu b\u0101ze"}, "mediawiki" : {"name" : "MediaWiki"}}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "language-name": {"type": "string"}, "language-name-romanized-sorted": {"type": "string"}, "language-button-text": {"type": "string"}, "terms": {"type": "string"}, "Privacy Policy": {"type": "string"}, "search-input-button": {"type": "string"}, "search-input-label": {"type": "string"}, "wiki": {"type": "object", "properties": {"name": {"type": "string"}, "slogan": {"type": "string"}, "entries": {"type": "string"}}, "required": ["name", "slogan", "entries"]}, "wiktionary": {"type": "object", "properties": {"name": {"type": "string"}, "slogan": {"type": "string"}, "entries": {"type": "string"}}, "required": ["name", "slogan", "entries"]}, "wikibooks": {"type": "object", "properties": {"entries": {"type": "string"}}, "required": ["entries"]}, "wikinews": {"type": "object", "properties": {"entries": {"type": "string"}}, "required": ["entries"]}, "wikiquote": {"type": "object", "properties": {"entries": {"type": "string"}}, "required": ["entries"]}, "wikivoyage": {"type": "object", "properties": {"slogan": {"type": "string"}}, "required": ["slogan"]}, "wikidata": {"type": "object", "properties": {"name": {"type": "string"}, "slogan": {"type": "string"}}, "required": ["name", "slogan"]}, "mediawiki": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["@metadata", "language-name", "language-name-romanized-sorted", "language-button-text", "terms", "Privacy Policy", "search-input-button", "search-input-label", "wiki", "wiktionary", "wikibooks", "wikinews", "wikiquote", "wikivoyage", "wikidata", "mediawiki"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"network_list": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "network_filename": {"type": "string"}, "file_location": {"type": "string"}, "executor_name": {"type": "string"}, "category_filename": {"type": "string"}, "input_width": {"type": "string"}, "input_height": {"type": "string"}}, "required": ["name", "network_filename", "file_location", "executor_name", "category_filename", "input_width", "input_height"]}}}, "required": ["network_list"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"network_list" : [{"name" : "ResNet_18", "network_filename" : "Resnet-18.nnp", "file_location" : "https://nnabla.org/pretrained-models/nnp_models/imagenet/Resnet-18/", "executor_name" : "Executor", "category_filename" : "category_names.txt", "input_width" : "320", "input_height" : "320"}, {"name" : "MobileNet", "network_filename" : "MobileNet.nnp", "file_location" : "https://nnabla.org/pretrained-models/nnp_models/imagenet/MobileNet/", "executor_name" : "Executor", "category_filename" : "category_names.txt", "input_width" : "320", "input_height" : "320"}, {"name" : "SENet-154", "network_filename" : "SENet-154.nnp", "file_location" : "https://nnabla.org/pretrained-models/nnp_models/imagenet/SENet-154/", "executor_name" : "Executor", "category_filename" : "category_names.txt", "input_width" : "320", "input_height" : "320"}, {"name" : "SqueezeNet_v1.1", "network_filename" : "SqueezeNet-1.1.nnp", "file_location" : "https://nnabla.org/pretrained-models/nnp_models/imagenet/SqueezeNet-1.1/", "executor_name" : "Executor", "category_filename" : "category_names.txt", "input_width" : "320", "input_height" : "320"}, {"name" : "AlexNet", "network_filename" : "imagenet_alexnet.nnp", "file_location" : "assets", "executor_name" : "Executor", "category_filename" : "ILSVRC2012_ClassList.txt", "input_width" : "320", "input_height" : "320"}]}
json_instruct
{"type": "object", "properties": {"network_list": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "network_filename": {"type": "string"}, "file_location": {"type": "string"}, "executor_name": {"type": "string"}, "category_filename": {"type": "string"}, "input_width": {"type": "string"}, "input_height": {"type": "string"}}, "required": ["name", "network_filename", "file_location", "executor_name", "category_filename", "input_width", "input_height"]}}}, "required": ["network_list"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"83": {"type": "object", "properties": {"tagDescription": {"type": "array", "items": {"type": "string"}}, "tagDate": {"type": "array", "items": {"type": "string"}}}, "required": ["tagDescription", "tagDate"]}, "1698": {"type": "object", "properties": {"tagDate": {"type": "array", "items": {"type": "string"}}, "tagDescription": {"type": "array", "items": {"type": "string"}}}, "required": ["tagDate", "tagDescription"]}, "1085": {"type": "object", "properties": {"tagDate": {"type": "array", "items": {"type": "string"}}, "tagDescription": {"type": "array", "items": {"type": "string"}}}, "required": ["tagDate", "tagDescription"]}, "572": {"type": "object", "properties": {"tagDescription": {"type": "array", "items": {"type": "string"}}, "tagDate": {"type": "array", "items": {"type": "string"}}}, "required": ["tagDescription", "tagDate"]}, "1620": {"type": "object", "properties": {"tagDate": {"type": "array", "items": {"type": "string"}}, "tagDescription": {"type": "array", "items": {"type": "string"}}}, "required": ["tagDate", "tagDescription"]}, "336": {"type": "object", "properties": {"tagDescription": {"type": "array", "items": {"type": "string"}}, "tagDate": {"type": "array", "items": {"type": "string"}}}, "required": ["tagDescription", "tagDate"]}, "871": {"type": "object", "properties": {"tagDate": {"type": "array", "items": {"type": "string"}}, "tagDescription": {"type": "array", "items": {"type": "string"}}}, "required": ["tagDate", "tagDescription"]}}, "required": ["83", "1698", "1085", "572", "1620", "336", "871"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"83" : {"tagDescription" : ["Items 5281 to 5397"], "tagDate" : ["1918-01-01T00:00:00.000Z"]}, "1698" : {"tagDate" : ["1918-01-01T00:00:00.000Z"], "tagDescription" : ["Items 5877 to 6040"]}, "1085" : {"tagDate" : ["1918-01-01T00:00:00.000Z"], "tagDescription" : ["Items 5731 to 5860"]}, "572" : {"tagDescription" : ["Items 5531 to 5686"], "tagDate" : ["1918-01-01T00:00:00.000Z"]}, "1620" : {"tagDate" : ["1918-01-01T00:00:00.000Z"], "tagDescription" : ["Items 5861 to 5876"]}, "336" : {"tagDescription" : ["Items 5398 to 5530"], "tagDate" : ["1918-01-01T00:00:00.000Z"]}, "871" : {"tagDate" : ["1918-01-01T00:00:00.000Z"], "tagDescription" : ["Items 5687 to 5730"]}}
json_instruct
{"type": "object", "properties": {"83": {"type": "object", "properties": {"tagDescription": {"type": "array", "items": {"type": "string"}}, "tagDate": {"type": "array", "items": {"type": "string"}}}, "required": ["tagDescription", "tagDate"]}, "1698": {"type": "object", "properties": {"tagDate": {"type": "array", "items": {"type": "string"}}, "tagDescription": {"type": "array", "items": {"type": "string"}}}, "required": ["tagDate", "tagDescription"]}, "1085": {"type": "object", "properties": {"tagDate": {"type": "array", "items": {"type": "string"}}, "tagDescription": {"type": "array", "items": {"type": "string"}}}, "required": ["tagDate", "tagDescription"]}, "572": {"type": "object", "properties": {"tagDescription": {"type": "array", "items": {"type": "string"}}, "tagDate": {"type": "array", "items": {"type": "string"}}}, "required": ["tagDescription", "tagDate"]}, "1620": {"type": "object", "properties": {"tagDate": {"type": "array", "items": {"type": "string"}}, "tagDescription": {"type": "array", "items": {"type": "string"}}}, "required": ["tagDate", "tagDescription"]}, "336": {"type": "object", "properties": {"tagDescription": {"type": "array", "items": {"type": "string"}}, "tagDate": {"type": "array", "items": {"type": "string"}}}, "required": ["tagDescription", "tagDate"]}, "871": {"type": "object", "properties": {"tagDate": {"type": "array", "items": {"type": "string"}}, "tagDescription": {"type": "array", "items": {"type": "string"}}}, "required": ["tagDate", "tagDescription"]}}, "required": ["83", "1698", "1085", "572", "1620", "336", "871"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"idArt": {"type": "string"}, "series": {"type": "string"}, "booktitle": {"type": "string"}, "year": {"type": "string"}, "place": {"type": "string"}, "location": {"type": "object", "properties": {"lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["lat", "lon"]}, "title": {"type": "string"}, "abstract": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pdf1page": {"type": "string"}, "pdfarticle": {"type": "string"}}, "required": ["idArt", "series", "booktitle", "year", "place", "location", "title", "abstract", "authors", "pdf1page", "pdfarticle"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"idArt" : "266", "series" : "Revue des Nouvelles Technologies de l'Information", "booktitle" : "EGC", "year" : "2012", "place" : "Bordeaux", "location" : {"lat" : 44.837789, "lon" : -0.57918}, "title" : "Un environnement efficace pour la classification d'images \u00e0 grande \u00e9chelle", "abstract" : "La plupart des processus de classification d'images comportent troisprincipales \u00e9tapes : l'extraction de descripteurs de bas niveaux, la cr\u00e9ation d'unvocabulaire visuel par quantification et l'apprentissage \u00e0 l'aide d'un algorithmede classification (eg.SVM). De nombreux probl\u00e8mes se posent pour le passage\u00e0 l'\u00e9chelle comme avec l'ensemble de donn\u00e9es ImageNet contenant 14 millionsd'images et 21,841 classes. La complexit\u00e9 concerne le temps d'ex\u00e9cution dechaque t\u00e2che et les besoins en m\u00e9moire et disque (eg. le stockage des SIFTs n\u00e9cessite11To). Nous pr\u00e9sentons une version parall\u00e8le de LibSVM pour traiter degrands ensembles de donn\u00e9es dans un temps raisonnable. De plus, il y a beaucoupde perte d'information lors de la phase de quantification et les mots visuelsobtenus ne sont pas assez discriminants pour de grands ensembles d'images.Nous proposons d'utiliser plusieurs descripteurs simultan\u00e9ment pour am\u00e9liorerla pr\u00e9cision de la classification sur de grands ensembles d'images. Nous pr\u00e9sentonsnos premiers r\u00e9sultats sur les 10 plus grandes classes (24,817 images)d'ImageNet.", "authors" : ["Thanh-Nghi Doan", "Fran\u00e7ois Poulet"], "pdf1page" : "http://editions-rnti.fr/render_pdf.php?p1&p=1001189", "pdfarticle" : "http://editions-rnti.fr/render_pdf.php?p=1001189"}
json_instruct
{"type": "object", "properties": {"idArt": {"type": "string"}, "series": {"type": "string"}, "booktitle": {"type": "string"}, "year": {"type": "string"}, "place": {"type": "string"}, "location": {"type": "object", "properties": {"lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["lat", "lon"]}, "title": {"type": "string"}, "abstract": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pdf1page": {"type": "string"}, "pdfarticle": {"type": "string"}}, "required": ["idArt", "series", "booktitle", "year", "place", "location", "title", "abstract", "authors", "pdf1page", "pdfarticle"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lastUpdated" : 1655019279666, "username" : "MCSwavest", "scores" : [{"xp" : 4792, "rank" : 248, "cardId" : 618}, {"xp" : 4757, "rank" : 359, "cardId" : 612}, {"xp" : 4877, "rank" : 159, "cardId" : 658}, {"xp" : 5532, "rank" : 279, "cardId" : 659}, {"xp" : 13294, "rank" : 288, "cardId" : 603}, {"xp" : 10859, "rank" : 261, "cardId" : 277}, {"xp" : 4797, "rank" : 183, "cardId" : 636}, {"xp" : 9939, "rank" : 482, "cardId" : 512}]}
json_instruct
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"generated_in": {"type": "string"}, "stat": {"type": "string"}, "moderators": {"type": "object", "properties": {"on_this_page": {"type": "string"}, "page": {"type": "string"}, "perpage": {"type": "string"}, "total": {"type": "string"}, "user": {"type": "object", "properties": {"display_name": {"type": "string"}, "id": {"type": "string"}, "is_creator": {"type": "string"}, "is_plus": {"type": "string"}, "is_staff": {"type": "string"}, "profileurl": {"type": "string"}, "realname": {"type": "string"}, "username": {"type": "string"}, "videosurl": {"type": "string"}, "portraits": {"type": "object", "properties": {"portrait": {"type": "array", "items": {"type": "object", "properties": {"height": {"type": "string"}, "width": {"type": "string"}, "_content": {"type": "string"}}, "required": ["height", "width", "_content"]}}}, "required": ["portrait"]}}, "required": ["display_name", "id", "is_creator", "is_plus", "is_staff", "profileurl", "realname", "username", "videosurl", "portraits"]}}, "required": ["on_this_page", "page", "perpage", "total", "user"]}}, "required": ["generated_in", "stat", "moderators"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"generated_in" : "0.1075", "stat" : "ok", "moderators" : {"on_this_page" : "1", "page" : "1", "perpage" : "25", "total" : "1", "user" : {"display_name" : "Matt Hooks", "id" : "888046", "is_creator" : "1", "is_plus" : "0", "is_staff" : "0", "profileurl" : "http://vimeo.com/matthooks", "realname" : "Matt Hooks", "username" : "matthooks", "videosurl" : "http://vimeo.com/matthooks/videos", "portraits" : {"portrait" : [{"height" : "30", "width" : "30", "_content" : "http://images.vimeo.com/11/42/16/114216178/114216178_30.jpg"}, {"height" : "75", "width" : "75", "_content" : "http://images.vimeo.com/11/42/16/114216178/114216178_75.jpg"}, {"height" : "100", "width" : "100", "_content" : "http://images.vimeo.com/11/42/16/114216178/114216178_100.jpg"}, {"height" : "300", "width" : "300", "_content" : "http://images.vimeo.com/11/42/16/114216178/114216178_300.jpg"}]}}}}
json_instruct
{"type": "object", "properties": {"generated_in": {"type": "string"}, "stat": {"type": "string"}, "moderators": {"type": "object", "properties": {"on_this_page": {"type": "string"}, "page": {"type": "string"}, "perpage": {"type": "string"}, "total": {"type": "string"}, "user": {"type": "object", "properties": {"display_name": {"type": "string"}, "id": {"type": "string"}, "is_creator": {"type": "string"}, "is_plus": {"type": "string"}, "is_staff": {"type": "string"}, "profileurl": {"type": "string"}, "realname": {"type": "string"}, "username": {"type": "string"}, "videosurl": {"type": "string"}, "portraits": {"type": "object", "properties": {"portrait": {"type": "array", "items": {"type": "object", "properties": {"height": {"type": "string"}, "width": {"type": "string"}, "_content": {"type": "string"}}, "required": ["height", "width", "_content"]}}}, "required": ["portrait"]}}, "required": ["display_name", "id", "is_creator", "is_plus", "is_staff", "profileurl", "realname", "username", "videosurl", "portraits"]}}, "required": ["on_this_page", "page", "perpage", "total", "user"]}}, "required": ["generated_in", "stat", "moderators"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"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": {"php": {"type": "string"}, "ext-mbstring": {"type": "string"}}, "required": ["php", "ext-mbstring"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"NlpTools\\": {"type": "string"}}, "required": ["NlpTools\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"NlpTools\\": {"type": "string"}}, "required": ["NlpTools\\"]}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "description", "keywords", "license", "authors", "require", "require-dev", "autoload", "autoload-dev", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "nlp-tools/nlp-tools", "description" : "NlpTools is a set of php classes for beginner to semi advanced natural language processing work.", "keywords" : ["nlp", "machine learning"], "license" : "WTFPL", "authors" : [{"name" : "Angelos Katharopoulos", "email" : "angelos@yourse.gr"}], "require" : {"php" : ">=8", "ext-mbstring" : "*"}, "require-dev" : {"phpunit/phpunit" : "^9.5"}, "autoload" : {"psr-4" : {"NlpTools\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"NlpTools\\" : "tests/"}}, "scripts" : {"test" : "phpunit -c tests/"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"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": {"php": {"type": "string"}, "ext-mbstring": {"type": "string"}}, "required": ["php", "ext-mbstring"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"NlpTools\\": {"type": "string"}}, "required": ["NlpTools\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"NlpTools\\": {"type": "string"}}, "required": ["NlpTools\\"]}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "description", "keywords", "license", "authors", "require", "require-dev", "autoload", "autoload-dev", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Recharts.js": {"type": "string"}, "Recharts.min.js": {"type": "string"}}, "required": ["Recharts.js", "Recharts.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Recharts.js" : "sha512-B1PxTcQYLRrH4dmqRxiK18tTSlrWgoxl+XLFIZET55ksOtwsyjf8aaGROVgbcQ0XXARSZRaqXp1YhNPp8HMu9A==", "Recharts.min.js" : "sha512-YgqcrBDFIJRufzawIlNigpmo54jB5f9YYbJmORiHTp3PUrCkW1AY7USL29UXX1jYhz1/dkM41z6yOXMINmnQ+A=="}
json_instruct
{"type": "object", "properties": {"Recharts.js": {"type": "string"}, "Recharts.min.js": {"type": "string"}}, "required": ["Recharts.js", "Recharts.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"mochaExplorer.files": {"type": "string"}, "mochaExplorer.require": {"type": "string"}}, "required": ["mochaExplorer.files", "mochaExplorer.require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"mochaExplorer.files" : "../test/*.ts", "mochaExplorer.require" : "ts-node/register"}
json_instruct
{"type": "object", "properties": {"mochaExplorer.files": {"type": "string"}, "mochaExplorer.require": {"type": "string"}}, "required": ["mochaExplorer.files", "mochaExplorer.require"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"number": {"type": "string"}, "name": {"type": "string"}, "generation": {"type": "integer"}, "description": {"type": "string"}, "species": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "abilities": {"type": "object", "properties": {"normal": {"type": "array", "items": {"type": "string"}}, "hidden": {"type": "array", "items": {"type": "string"}}}, "required": ["normal", "hidden"]}, "height": {"type": "string"}, "weight": {"type": "string"}, "eggGroups": {"type": "array", "items": {"type": "string"}}, "gender": {"type": "array", "items": {"type": "integer"}}, "family": {"type": "object", "properties": {"id": {"type": "integer"}, "evolutionStage": {"type": "integer"}, "evolutionLine": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "evolutionStage", "evolutionLine"]}, "sprites": {"type": "object", "properties": {"default": {"type": "string"}, "shiny": {"type": "string"}}, "required": ["default", "shiny"]}, "isStarter": {"type": "boolean"}, "isLegendary": {"type": "boolean"}, "isMythical": {"type": "boolean"}, "isUltraBeast": {"type": "boolean"}, "isMega": {"type": "boolean"}}, "required": ["number", "name", "generation", "description", "species", "types", "abilities", "height", "weight", "eggGroups", "gender", "family", "sprites", "isStarter", "isLegendary", "isMythical", "isUltraBeast", "isMega"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"number" : "397", "name" : "Staravia", "generation" : 4, "description" : "It flies around forests and fields in search of bug Pok\u00e9mon. It stays within a huge flock.", "species" : "Starling", "types" : ["Normal", "Flying"], "abilities" : {"normal" : ["Intimidate"], "hidden" : ["Reckless"]}, "height" : "2'", "weight" : "34.2 lbs.", "eggGroups" : ["Flying"], "gender" : [50, 50], "family" : {"id" : 206, "evolutionStage" : 2, "evolutionLine" : ["Starly", "Staravia", "Staraptor"]}, "sprites" : {"default" : "https://pisaucer.github.io/staticmon/images/397.png", "shiny" : "https://pisaucer.github.io/staticmon/images/shiny/397.png"}, "isStarter" : false, "isLegendary" : false, "isMythical" : false, "isUltraBeast" : false, "isMega" : false}
json_instruct
{"type": "object", "properties": {"number": {"type": "string"}, "name": {"type": "string"}, "generation": {"type": "integer"}, "description": {"type": "string"}, "species": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "abilities": {"type": "object", "properties": {"normal": {"type": "array", "items": {"type": "string"}}, "hidden": {"type": "array", "items": {"type": "string"}}}, "required": ["normal", "hidden"]}, "height": {"type": "string"}, "weight": {"type": "string"}, "eggGroups": {"type": "array", "items": {"type": "string"}}, "gender": {"type": "array", "items": {"type": "integer"}}, "family": {"type": "object", "properties": {"id": {"type": "integer"}, "evolutionStage": {"type": "integer"}, "evolutionLine": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "evolutionStage", "evolutionLine"]}, "sprites": {"type": "object", "properties": {"default": {"type": "string"}, "shiny": {"type": "string"}}, "required": ["default", "shiny"]}, "isStarter": {"type": "boolean"}, "isLegendary": {"type": "boolean"}, "isMythical": {"type": "boolean"}, "isUltraBeast": {"type": "boolean"}, "isMega": {"type": "boolean"}}, "required": ["number", "name", "generation", "description", "species", "types", "abilities", "height", "weight", "eggGroups", "gender", "family", "sprites", "isStarter", "isLegendary", "isMythical", "isUltraBeast", "isMega"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"mean_absolute_error": {"type": "number"}, "mean_squared_error": {"type": "number"}, "_runtime": {"type": "integer"}, "_timestamp": {"type": "integer"}, "_step": {"type": "integer"}, "val mean_absolute_error": {"type": "number"}, "val mean_squared_error": {"type": "number"}, "_wandb": {"type": "object", "properties": {"runtime": {"type": "integer"}}, "required": ["runtime"]}}, "required": ["mean_absolute_error", "mean_squared_error", "_runtime", "_timestamp", "_step", "val mean_absolute_error", "val mean_squared_error", "_wandb"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"mean_absolute_error" : 37421.43287671233, "mean_squared_error" : 3265112959.478082, "_runtime" : 9, "_timestamp" : 1629882365, "_step" : 1, "val mean_absolute_error" : 37421.43287671233, "val mean_squared_error" : 3265112959.478082, "_wandb" : {"runtime" : 9}}
json_instruct
{"type": "object", "properties": {"mean_absolute_error": {"type": "number"}, "mean_squared_error": {"type": "number"}, "_runtime": {"type": "integer"}, "_timestamp": {"type": "integer"}, "_step": {"type": "integer"}, "val mean_absolute_error": {"type": "number"}, "val mean_squared_error": {"type": "number"}, "_wandb": {"type": "object", "properties": {"runtime": {"type": "integer"}}, "required": ["runtime"]}}, "required": ["mean_absolute_error", "mean_squared_error", "_runtime", "_timestamp", "_step", "val mean_absolute_error", "val mean_squared_error", "_wandb"], "$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"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "Skim\u00fctze mit Augenl\u00f6chern", "ShortName" : "Shmaska", "Description" : "Wahnsinn, Mann! So muss das aussehen. Warm und komfortabel."}
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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "difficulty": {"type": "string"}, "question": {"type": "null"}}, "required": ["number", "title", "url", "difficulty", "question"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"number" : "711", "title" : "Number of Distinct Islands II", "url" : "https://leetcode.com/problems/number-of-distinct-islands-ii", "difficulty" : "Hard", "question" : null}
json_instruct
{"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "difficulty": {"type": "string"}, "question": {"type": "null"}}, "required": ["number", "title", "url", "difficulty", "question"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "ilikewood:block/torch/byg_palm"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "jsFileName": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-nodeunit": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-regarde": {"type": "string"}, "grunt-contrib-stylus": {"type": "string"}, "grunt-contrib-cssmin": {"type": "string"}, "grunt-contrib-connect": {"type": "string"}, "grunt-contrib-copy": {"type": "string"}, "grunt-contrib-livereload": {"type": "string"}}, "required": ["grunt", "grunt-contrib-concat", "grunt-contrib-uglify", "grunt-contrib-nodeunit", "grunt-contrib-jshint", "grunt-regarde", "grunt-contrib-stylus", "grunt-contrib-cssmin", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-livereload"]}}, "required": ["name", "homepage", "jsFileName", "version", "description", "main", "scripts", "repository", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "AppTemplate", "homepage" : "http://www.calendee.com", "jsFileName" : "app", "version" : "0.0.0", "description" : "Phonegap App Template", "main" : "Gruntfile.js", "scripts" : {"test" : "grunt test"}, "repository" : "", "author" : "Calendee LLC", "license" : "MIT", "devDependencies" : {"grunt" : "~0.4.1", "grunt-contrib-concat" : "~0.2.0", "grunt-contrib-uglify" : "~0.2.0", "grunt-contrib-nodeunit" : "~0.1.2", "grunt-contrib-jshint" : "~0.4.3", "grunt-regarde" : "~0.1.1", "grunt-contrib-stylus" : "~0.5.0", "grunt-contrib-cssmin" : "~0.6.0", "grunt-contrib-connect" : "~0.3.0", "grunt-contrib-copy" : "~0.4.0", "grunt-contrib-livereload" : "~0.1.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "jsFileName": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-nodeunit": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-regarde": {"type": "string"}, "grunt-contrib-stylus": {"type": "string"}, "grunt-contrib-cssmin": {"type": "string"}, "grunt-contrib-connect": {"type": "string"}, "grunt-contrib-copy": {"type": "string"}, "grunt-contrib-livereload": {"type": "string"}}, "required": ["grunt", "grunt-contrib-concat", "grunt-contrib-uglify", "grunt-contrib-nodeunit", "grunt-contrib-jshint", "grunt-regarde", "grunt-contrib-stylus", "grunt-contrib-cssmin", "grunt-contrib-connect", "grunt-contrib-copy", "grunt-contrib-livereload"]}}, "required": ["name", "homepage", "jsFileName", "version", "description", "main", "scripts", "repository", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"probe_id": {"type": "integer"}, "resolvers": {"type": "array", "items": {"type": "object", "properties": {"ipv6_tcp": {"type": "boolean"}, "resolver_asn": {"type": "integer"}, "resolver_net": {"type": "string"}, "ipv4_tcp": {"type": "boolean"}, "internal": {"type": "string"}, "ipv6_cap": {"type": "boolean"}}, "required": ["ipv6_tcp", "resolver_asn", "resolver_net", "ipv4_tcp", "internal", "ipv6_cap"]}}}, "required": ["probe_id", "resolvers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"probe_id" : 12065, "resolvers" : [{"ipv6_tcp" : true, "resolver_asn" : 790, "resolver_net" : "195.197.0.0/16", "ipv4_tcp" : true, "internal" : "192.168.10.1", "ipv6_cap" : true}]}
json_instruct
{"type": "object", "properties": {"probe_id": {"type": "integer"}, "resolvers": {"type": "array", "items": {"type": "object", "properties": {"ipv6_tcp": {"type": "boolean"}, "resolver_asn": {"type": "integer"}, "resolver_net": {"type": "string"}, "ipv4_tcp": {"type": "boolean"}, "internal": {"type": "string"}, "ipv6_cap": {"type": "boolean"}}, "required": ["ipv6_tcp", "resolver_asn", "resolver_net", "ipv4_tcp", "internal", "ipv6_cap"]}}}, "required": ["probe_id", "resolvers"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"e_id" : "14479", "title" : "\u4e2d\u56fd\u7b2c\u4e00\u6240\u97f3\u4e50\u5b66\u9662\u6210\u7acb", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u572894\u5e74\u524d\u7684\u4eca\u5929\uff0c1927\u5e7411\u670827\u65e5(\u519c\u53861927\u5e7411\u67084\u65e5)\uff0c\u4e2d\u56fd\u7b2c\u4e00\u6240\u97f3\u4e50\u5b66\u9662\u6210\u7acb\u30021927\u5e7411\u670827\u65e5\uff0c\u4e2d\u56fd\u6700\u65e9\u65b0\u578b\u97f3\u4e50\u9ad8\u7b49\u5b66\u5e9c\u201c\u56fd\u7acb\u97f3\u4e50\u9662\u201d\uff08\u4eca\u4e0a\u6d77\u97f3\u4e50\u5b66\u9662\uff09\u8bde\u751f\u30021927\u5e7410\u6708\u5357\u4eac\u56fd\u6c11\u653f\u5e9c\u5927\u5b66\u9662\u9662\u957f\u8521\u5143\u57f9\u6839\u636e\u5176\u4e00\u8d2f\u5021\u5bfc\u7684\u201c\u4ee5\u7f8e\u80b2\u4ee3\u5b97\u6559\u201d\u7684\u6559\u80b2\u5b97\u65e8\uff0c\u6d3e\u8096\u53cb\u6885\u535a\u58eb\u5230\u4e0a\u6d77\u7b79\u5efa\u56fd\u7acb\u97f3\u4e50\u9662\u3002\u8096\u53cb\u6885\uff0c\u5e7f\u4e1c\u9999\u5c71\uff08\u4eca\u4e2d\u5c71\u5e02\uff09\u4eba\u3002\u662f\u6c11\u56fd\u5143\u5e74\u56fd\u6b4c\uff08\u537f\u4e91\u6b4c\uff09\u7684\u4f5c\u66f2\u8005\uff0c\u8096\u53cb\u6885\u53c2\u7167\u6cd5\u56fd\u201c\u56fd\u7acb\u5df4\u9ece\u97f3\u4e50\u9662\u201d\uff0c\u529e\u8d77\u4e86\u4e2d\u56fd\u7b2c\u4e00\u6240\u97f3\u4e50\u9ad8\u6821\u3002\u7531\u8521\u5143\u57f9\u517c\u4efb\u9662\u957f\uff0c12\u6708\u8521\u5143\u57f9\u56e0\u5927\u5b66\u9662\u516c\u52a1\u7eb7\u7e41\uff0c\u59d4\u6d3e\u6559\u52a1\u4e3b\u4efb\u8096\u53cb\u6885\u4ee3\u7406\u9662\u957f\u30021929\u5e747\u6708\u5949\u5357\u4eac\u653f\u5e9c\u4e4b\u547d\uff0c\u5b66\u6821\u66f4\u540d\u4e3a\u56fd\u7acb\u97f3\u4e50\u4e13\u79d1\u5b66\u6821\uff0c\u6b64\u540e\u4fbf\u9010\u6e10\u6210\u4e3a\u4e2d\u56fd\u4e00\u6240\u8457\u540d\u7684\u97f3\u4e50\u5b66\u5e9c\u3002", "picNo" : "0", "picUrl" : []}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"cloudPlatform": {"type": "string"}, "name": {"type": "string"}, "region": {"type": "string"}, "credentialId": {"type": "integer"}, "image": {"type": "string"}, "onFailureAction": {"type": "string"}, "availabilityZone": {"type": "string"}, "failurePolicy": {"type": "object", "properties": {"id": {"type": "integer"}, "threshold": {"type": "integer"}, "adjustmentType": {"type": "string"}}, "required": ["id", "threshold", "adjustmentType"]}, "instanceGroups": {"type": "array", "items": {"type": "object", "properties": {"templateId": {"type": "integer"}, "nodeCount": {"type": "integer"}, "group": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "integer"}, "metadata": {"type": "array", "items": {"type": "object", "properties": {"privateIp": {"type": "string"}, "publicIp": {"type": "string"}, "instanceId": {"type": "string"}, "ambariServer": {"type": "boolean"}, "discoveryFQDN": {"type": "string"}, "instanceGroup": {"type": "string"}, "instanceStatus": {"type": "string"}}, "required": ["privateIp", "publicIp", "instanceId", "ambariServer", "discoveryFQDN", "instanceGroup", "instanceStatus"]}}}, "required": ["templateId", "nodeCount", "group", "type", "id", "metadata"]}}, "securityGroupId": {"type": "integer"}, "networkId": {"type": "integer"}, "parameters": {"type": "object", "properties": {"dedicatedInstances": {"type": "boolean"}}, "required": ["dedicatedInstances"]}, "consulServerCount": {"type": "integer"}, "created": {"type": "integer"}, "orchestrator": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["cloudPlatform", "name", "region", "credentialId", "image", "onFailureAction", "availabilityZone", "failurePolicy", "instanceGroups", "securityGroupId", "networkId", "parameters", "consulServerCount", "created", "orchestrator"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cloudPlatform" : "AWS", "name" : "mystack", "region" : "EU-WEST-1", "credentialId" : 51, "image" : "aws-image", "onFailureAction" : "ROLLBACK", "availabilityZone" : "avZone", "failurePolicy" : {"id" : 1, "threshold" : 10, "adjustmentType" : "EXACT"}, "instanceGroups" : [{"templateId" : 1, "nodeCount" : 10, "group" : "gateway-group", "type" : "GATEWAY", "id" : 0, "metadata" : [{"privateIp" : "10.0.0.1", "publicIp" : "52.53.54.55", "instanceId" : "instance", "ambariServer" : false, "discoveryFQDN" : "instance", "instanceGroup" : "gateway-group", "instanceStatus" : "REGISTERED"}]}], "securityGroupId" : 52, "networkId" : 53, "parameters" : {"dedicatedInstances" : true}, "consulServerCount" : 1, "created" : 8000000, "orchestrator" : {"type" : "MARATHON"}}
json_instruct
{"type": "object", "properties": {"cloudPlatform": {"type": "string"}, "name": {"type": "string"}, "region": {"type": "string"}, "credentialId": {"type": "integer"}, "image": {"type": "string"}, "onFailureAction": {"type": "string"}, "availabilityZone": {"type": "string"}, "failurePolicy": {"type": "object", "properties": {"id": {"type": "integer"}, "threshold": {"type": "integer"}, "adjustmentType": {"type": "string"}}, "required": ["id", "threshold", "adjustmentType"]}, "instanceGroups": {"type": "array", "items": {"type": "object", "properties": {"templateId": {"type": "integer"}, "nodeCount": {"type": "integer"}, "group": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "integer"}, "metadata": {"type": "array", "items": {"type": "object", "properties": {"privateIp": {"type": "string"}, "publicIp": {"type": "string"}, "instanceId": {"type": "string"}, "ambariServer": {"type": "boolean"}, "discoveryFQDN": {"type": "string"}, "instanceGroup": {"type": "string"}, "instanceStatus": {"type": "string"}}, "required": ["privateIp", "publicIp", "instanceId", "ambariServer", "discoveryFQDN", "instanceGroup", "instanceStatus"]}}}, "required": ["templateId", "nodeCount", "group", "type", "id", "metadata"]}}, "securityGroupId": {"type": "integer"}, "networkId": {"type": "integer"}, "parameters": {"type": "object", "properties": {"dedicatedInstances": {"type": "boolean"}}, "required": ["dedicatedInstances"]}, "consulServerCount": {"type": "integer"}, "created": {"type": "integer"}, "orchestrator": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["cloudPlatform", "name", "region", "credentialId", "image", "onFailureAction", "availabilityZone", "failurePolicy", "instanceGroups", "securityGroupId", "networkId", "parameters", "consulServerCount", "created", "orchestrator"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "homepage", "role"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "pimcore/installer-plugin": {"type": "string"}}, "required": ["php", "pimcore/installer-plugin"]}}, "required": ["name", "description", "type", "license", "keywords", "homepage", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "basilicom-pimcore-plugin/hide-status-bar", "description" : "Hides the Pimcore status bar (version info and warnings) for ordinary users.", "type" : "pimcore-plugin", "license" : "BSD-3-Clause", "keywords" : ["pimcore", "statusbar", "plugin"], "homepage" : "http://basilicom.de/en/pimcore", "authors" : [{"name" : "basilicom Team", "email" : "info@basilicom.de", "homepage" : "http://basilicom.de/", "role" : "Developer"}], "require" : {"php" : ">=5.3.0", "pimcore/installer-plugin" : "~1.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "homepage", "role"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "pimcore/installer-plugin": {"type": "string"}}, "required": ["php", "pimcore/installer-plugin"]}}, "required": ["name", "description", "type", "license", "keywords", "homepage", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"0cc360c963609b7c4ecf0b82d02a4fff": {"type": "string"}, "130848fb8a2410bbb210d1e4b215b9f0": {"type": "string"}, "36b3bde9dcd609e0be9a05c7fcbeaadb": {"type": "string"}, "36c49732b9f58d259812cfb5ec6de895": {"type": "string"}, "388f95dbd90b33cabc5c2f1c79767662": {"type": "string"}, "5ad265d55cba0590648ab6e4082a7ffc": {"type": "string"}, "5bd4357e0ae920069a47377e8d1fbe1c": {"type": "string"}, "658d8d500a2672b722bbef8bda5b6272": {"type": "string"}, "80a32e80cbed65eba2103201a7c94710": {"type": "string"}, "85a1de9aa1df6f285abcabd10bf1e787": {"type": "string"}, "85bdbbfb1bb3e7546e7731eebf414b89": {"type": "string"}, "8608b869d7e9337160761d61314ed998": {"type": "string"}, "9fe8bf7bb0666019398fc51ea7918791": {"type": "string"}, "a4eb9d2c3bac1b4f7adff30970ee26cc": {"type": "string"}, "a667e8c3f10277513e38863832b0119d": {"type": "string"}, "baa04cd08950779fd7a771e9b3bfc36d": {"type": "string"}}, "required": ["0cc360c963609b7c4ecf0b82d02a4fff", "130848fb8a2410bbb210d1e4b215b9f0", "36b3bde9dcd609e0be9a05c7fcbeaadb", "36c49732b9f58d259812cfb5ec6de895", "388f95dbd90b33cabc5c2f1c79767662", "5ad265d55cba0590648ab6e4082a7ffc", "5bd4357e0ae920069a47377e8d1fbe1c", "658d8d500a2672b722bbef8bda5b6272", "80a32e80cbed65eba2103201a7c94710", "85a1de9aa1df6f285abcabd10bf1e787", "85bdbbfb1bb3e7546e7731eebf414b89", "8608b869d7e9337160761d61314ed998", "9fe8bf7bb0666019398fc51ea7918791", "a4eb9d2c3bac1b4f7adff30970ee26cc", "a667e8c3f10277513e38863832b0119d", "baa04cd08950779fd7a771e9b3bfc36d"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"0cc360c963609b7c4ecf0b82d02a4fff" : "\u76ee\u524d\u4e0d\u652f\u63f4 {{addPropertyToActual()}}\u3002", "130848fb8a2410bbb210d1e4b215b9f0" : "\u76ee\u524d\u4e0d\u652f\u63f4 {{showFields()}}\u3002", "36b3bde9dcd609e0be9a05c7fcbeaadb" : "\u8cc7\u6599\uff1a", "36c49732b9f58d259812cfb5ec6de895" : "\u76ee\u524d\u4e0d\u652f\u63f4 {{searchForPropertyInActual()}}\u3002", "388f95dbd90b33cabc5c2f1c79767662" : "\u76ee\u524d\u4e0d\u652f\u63f4 {{propertyHasNotBeenDeleted()}}\u3002", "5ad265d55cba0590648ab6e4082a7ffc" : "\u4e0d\u652f\u63f4 ID \u7684\u4f4d\u7f6e\u4fdd\u7559\u5143\uff1a{0}", "5bd4357e0ae920069a47377e8d1fbe1c" : "\u76ee\u524d\u4e0d\u652f\u63f4 {{showIndexes()}}\u3002", "658d8d500a2672b722bbef8bda5b6272" : "\u76ee\u524d\u4e0d\u652f\u63f4 {{getColumnsToDrop()}}\u3002", "80a32e80cbed65eba2103201a7c94710" : "\u627e\u4e0d\u5230\u6a21\u578b\uff1a{0}", "85a1de9aa1df6f285abcabd10bf1e787" : "\u4e0d\u652f\u63f4\u51fd\u6578 {{setDefaultOptions}}", "85bdbbfb1bb3e7546e7731eebf414b89" : "\u7f3a\u5c11\u7cbe\u6e96\u5ea6\u7684\u55ae\u4f4d\u6c92\u6709\u610f\u7fa9", "8608b869d7e9337160761d61314ed998" : "\u76ee\u524d\u4e0d\u652f\u63f4 {{getAddModifyColumns()}}\u3002", "9fe8bf7bb0666019398fc51ea7918791" : "\u4e0d\u652f\u63f4\u51fd\u6578 {{setNullableProperty}}", "a4eb9d2c3bac1b4f7adff30970ee26cc" : "options \u5fc5\u9808\u662f\u7269\u4ef6\uff1a{0}", "a667e8c3f10277513e38863832b0119d" : "\u76ee\u524d\u4e0d\u652f\u63f4 {{getDropColumns()}}\u3002", "baa04cd08950779fd7a771e9b3bfc36d" : "\u76ee\u524d\u4e0d\u652f\u63f4 {{applySqlChanges()}}\u3002"}
json_instruct
{"type": "object", "properties": {"0cc360c963609b7c4ecf0b82d02a4fff": {"type": "string"}, "130848fb8a2410bbb210d1e4b215b9f0": {"type": "string"}, "36b3bde9dcd609e0be9a05c7fcbeaadb": {"type": "string"}, "36c49732b9f58d259812cfb5ec6de895": {"type": "string"}, "388f95dbd90b33cabc5c2f1c79767662": {"type": "string"}, "5ad265d55cba0590648ab6e4082a7ffc": {"type": "string"}, "5bd4357e0ae920069a47377e8d1fbe1c": {"type": "string"}, "658d8d500a2672b722bbef8bda5b6272": {"type": "string"}, "80a32e80cbed65eba2103201a7c94710": {"type": "string"}, "85a1de9aa1df6f285abcabd10bf1e787": {"type": "string"}, "85bdbbfb1bb3e7546e7731eebf414b89": {"type": "string"}, "8608b869d7e9337160761d61314ed998": {"type": "string"}, "9fe8bf7bb0666019398fc51ea7918791": {"type": "string"}, "a4eb9d2c3bac1b4f7adff30970ee26cc": {"type": "string"}, "a667e8c3f10277513e38863832b0119d": {"type": "string"}, "baa04cd08950779fd7a771e9b3bfc36d": {"type": "string"}}, "required": ["0cc360c963609b7c4ecf0b82d02a4fff", "130848fb8a2410bbb210d1e4b215b9f0", "36b3bde9dcd609e0be9a05c7fcbeaadb", "36c49732b9f58d259812cfb5ec6de895", "388f95dbd90b33cabc5c2f1c79767662", "5ad265d55cba0590648ab6e4082a7ffc", "5bd4357e0ae920069a47377e8d1fbe1c", "658d8d500a2672b722bbef8bda5b6272", "80a32e80cbed65eba2103201a7c94710", "85a1de9aa1df6f285abcabd10bf1e787", "85bdbbfb1bb3e7546e7731eebf414b89", "8608b869d7e9337160761d61314ed998", "9fe8bf7bb0666019398fc51ea7918791", "a4eb9d2c3bac1b4f7adff30970ee26cc", "a667e8c3f10277513e38863832b0119d", "baa04cd08950779fd7a771e9b3bfc36d"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1976, 5], [1979, 5], [1981, 6], [1985, 5], [1987, 5], [1989, 5], [1990, 6], [1991, 6], [1994, 6], [1995, 5], [1996, 8], [1997, 5], [1999, 5], [2004, 7], [2005, 6], [2006, 7], [2008, 5], [2009, 6], [2011, 6]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"test_accuracy": {"type": "number"}, "test_loss": {"type": "number"}, "test_IoU": {"type": "number"}}, "required": ["test_accuracy", "test_loss", "test_IoU"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"test_accuracy" : 94.85151397515527, "test_loss" : 0.14783233404159551, "test_IoU" : 0.5472159054411241}
json_instruct
{"type": "object", "properties": {"test_accuracy": {"type": "number"}, "test_loss": {"type": "number"}, "test_IoU": {"type": "number"}}, "required": ["test_accuracy", "test_loss", "test_IoU"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"sujay": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "author": {"type": "string"}}, "required": ["id", "title", "author"]}}, "vijay": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "body": {"type": "string"}}, "required": ["id", "body"]}}, "akshay": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}}, "required": ["id", "title"]}}}, "required": ["sujay", "vijay", "akshay"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"sujay" : [{"id" : 1, "title" : "json-server1", "author" : "typicode1"}], "vijay" : [{"id" : 1, "body" : "some comment"}], "akshay" : [{"id" : 2, "title" : "cheetah"}]}
json_instruct
{"type": "object", "properties": {"sujay": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "author": {"type": "string"}}, "required": ["id", "title", "author"]}}, "vijay": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "body": {"type": "string"}}, "required": ["id", "body"]}}, "akshay": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}}, "required": ["id", "title"]}}}, "required": ["sujay", "vijay", "akshay"], "$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"}, "sdks": {"type": "object", "properties": {"Dart": {"type": "string"}, "Flutter": {"type": "string"}}, "required": ["Dart", "Flutter"]}, "sections": {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"other.dots @ 0.0.0": {"type": "object", "properties": {"dep.dots": {"type": "string"}}, "required": ["dep.dots"]}}, "required": ["other.dots @ 0.0.0"]}}, "required": ["dependencies"]}}, "required": ["name", "version", "sdks", "sections"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "with.dots", "version" : "2.3.0+020300", "sdks" : {"Dart" : "2.9.0-3.0.dev.flutter-a69cb6d700", "Flutter" : "1.18.0-9.0.pre.46"}, "sections" : {"dependencies" : {"other.dots @ 0.0.0" : {"dep.dots" : "1.14.12"}}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "sdks": {"type": "object", "properties": {"Dart": {"type": "string"}, "Flutter": {"type": "string"}}, "required": ["Dart", "Flutter"]}, "sections": {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"other.dots @ 0.0.0": {"type": "object", "properties": {"dep.dots": {"type": "string"}}, "required": ["dep.dots"]}}, "required": ["other.dots @ 0.0.0"]}}, "required": ["dependencies"]}}, "required": ["name", "version", "sdks", "sections"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"EUR": {"type": "number"}, "GBP": {"type": "number"}, "CAD": {"type": "number"}, "INR": {"type": "number"}, "MXN": {"type": "number"}, "AUD": {"type": "number"}, "CNY": {"type": "number"}, "MYR": {"type": "number"}, "COP": {"type": "number"}}, "required": ["EUR", "GBP", "CAD", "INR", "MXN", "AUD", "CNY", "MYR", "COP"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"EUR" : 0.87815, "GBP" : 0.78569, "CAD" : 1.31715, "INR" : 69.3492, "MXN" : 19.2316, "AUD" : 1.43534, "CNY" : 6.88191, "MYR" : 4.13785, "COP" : 3203.18}
json_instruct
{"type": "object", "properties": {"EUR": {"type": "number"}, "GBP": {"type": "number"}, "CAD": {"type": "number"}, "INR": {"type": "number"}, "MXN": {"type": "number"}, "AUD": {"type": "number"}, "CNY": {"type": "number"}, "MYR": {"type": "number"}, "COP": {"type": "number"}}, "required": ["EUR", "GBP", "CAD", "INR", "MXN", "AUD", "CNY", "MYR", "COP"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"org": {"type": "string"}, "project": {"type": "string"}}, "required": ["org", "project"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"org" : "joshenglish", "project" : "oliveriley"}
json_instruct
{"type": "object", "properties": {"org": {"type": "string"}, "project": {"type": "string"}}, "required": ["org", "project"], "$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"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "ibm-watson": {"type": "string"}}, "required": ["body-parser", "dotenv", "express", "ibm-watson"]}, "publishConfig": {"type": "object", "properties": {"registry": {"type": "string"}, "access": {"type": "string"}}, "required": ["registry", "access"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "engineStrict": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"babel-eslint": {"type": "string"}, "casperjs": {"type": "string"}, "codecov": {"type": "string"}, "eslint": {"type": "string"}, "jest": {"type": "string"}, "phantomjs-prebuilt": {"type": "string"}, "supertest": {"type": "string"}}, "required": ["babel-eslint", "casperjs", "codecov", "eslint", "jest", "phantomjs-prebuilt", "supertest"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}}, "required": ["name", "description", "version", "main", "scripts", "repository", "license", "dependencies", "publishConfig", "engines", "engineStrict", "devDependencies", "bugs", "homepage", "directories", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@ibm-watson/customer-dispute", "description" : "A simple Node.js based web app to trigger a customer dispute cse.", "version" : "0.1.1", "main" : "server.js", "scripts" : {"start" : "node server.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/hhdiazlo/assistan-customer-dispute.git"}, "license" : "Apache-2.0", "dependencies" : {"body-parser" : "^1.19.0", "dotenv" : "^6.2.0", "express" : "^4.17.1", "ibm-watson" : "^5.1.0"}, "publishConfig" : {"registry" : "https://registry.npmjs.org/", "access" : "public"}, "engines" : {"node" : ">=12"}, "engineStrict" : true, "devDependencies" : {"babel-eslint" : "^10.0.3", "casperjs" : "^1.1.4", "codecov" : "^3.6.1", "eslint" : "^5.14.0", "jest" : "^24.9.0", "phantomjs-prebuilt" : "^2.1.16", "supertest" : "^4.0.2"}, "bugs" : {"url" : "https://github.com/watson-developer-cloud/assistant-simple/issues"}, "homepage" : "https://github.com/watson-developer-cloud/assistant-simple#readme", "directories" : {"test" : "test"}, "author" : ""}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "ibm-watson": {"type": "string"}}, "required": ["body-parser", "dotenv", "express", "ibm-watson"]}, "publishConfig": {"type": "object", "properties": {"registry": {"type": "string"}, "access": {"type": "string"}}, "required": ["registry", "access"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "engineStrict": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"babel-eslint": {"type": "string"}, "casperjs": {"type": "string"}, "codecov": {"type": "string"}, "eslint": {"type": "string"}, "jest": {"type": "string"}, "phantomjs-prebuilt": {"type": "string"}, "supertest": {"type": "string"}}, "required": ["babel-eslint", "casperjs", "codecov", "eslint", "jest", "phantomjs-prebuilt", "supertest"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}}, "required": ["name", "description", "version", "main", "scripts", "repository", "license", "dependencies", "publishConfig", "engines", "engineStrict", "devDependencies", "bugs", "homepage", "directories", "author"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "slim/slim": {"type": "string"}, "slim/extras": {"type": "string"}}, "required": ["php", "slim/slim", "slim/extras"]}}, "required": ["name", "description", "keywords", "homepage", "license", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ubigeo-peru", "description" : "Searches for UBIGEO codes", "keywords" : ["Peru", "rest", "ubigeo"], "homepage" : "http://github.com/jmcastagnetto/ubigeo-peru", "license" : "BSD 2-clause", "authors" : [{"name" : "Jesus M. Castagnetto", "homepage" : "http://www.castagnetto.com/"}], "require" : {"php" : ">=5.3.0", "slim/slim" : "2.*", "slim/extras" : "2.*"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "homepage"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "slim/slim": {"type": "string"}, "slim/extras": {"type": "string"}}, "required": ["php", "slim/slim", "slim/extras"]}}, "required": ["name", "description", "keywords", "homepage", "license", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"localities" : ["Hauula, HI"], "state" : "HI", "postal_code" : "96717", "locality" : "Hauula, HI", "lat" : 21.557794, "region" : {"fips" : "15", "abbr" : "HI", "name" : "Hawaii"}, "city" : "Hauula", "type" : "STANDARD", "lng" : -157.90534, "counties" : [{"fips" : "003", "name" : "Honolulu County"}]}
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"minify": {"type": "string"}}, "required": ["minify"]}, "devDependencies": {"type": "object", "properties": {"clean-css": {"type": "string"}}, "required": ["clean-css"]}}, "required": ["name", "version", "author", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "neverendingqs-material-sidenav", "version" : "1.6.0", "author" : "Mark Tse <mark.tse@neverendingqs.com>", "scripts" : {"minify" : "cleancss -o assets/css/style.min.css assets/css/style.css && cleancss -o assets/css/prism.min.css assets/css/prism.css"}, "devDependencies" : {"clean-css" : "^3.4.21"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"minify": {"type": "string"}}, "required": ["minify"]}, "devDependencies": {"type": "object", "properties": {"clean-css": {"type": "string"}}, "required": ["clean-css"]}}, "required": ["name", "version", "author", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "minimumCoreVersion": {"type": "string"}, "system": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "scripts": {"type": "array", "items": {"type": "string"}}, "styles": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}, "manifest": {"type": "string"}, "download": {"type": "string"}}, "required": ["name", "title", "description", "version", "minimumCoreVersion", "system", "authors", "scripts", "styles", "url", "manifest", "download"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "target-lock", "title" : "Target Lock", "description" : "A module which helps apply damage to targets.", "version" : "0.1", "minimumCoreVersion" : "0.8.8", "system" : ["pf2e"], "authors" : [{"name" : "Will Nichols", "url" : "https://github.com/WillNichols726"}], "scripts" : ["scripts/target-lock.js"], "styles" : ["styles/target-lock.css"], "url" : "https://github.com/WillNichols726/target-lock", "manifest" : "https://raw.githubusercontent.com/WillNichols726/target-lock/release/module.json", "download" : "https://github.com/WillNichols726/target-lock/releases/tag/v0.1-alpha"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "minimumCoreVersion": {"type": "string"}, "system": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "scripts": {"type": "array", "items": {"type": "string"}}, "styles": {"type": "array", "items": {"type": "string"}}, "url": {"type": "string"}, "manifest": {"type": "string"}, "download": {"type": "string"}}, "required": ["name", "title", "description", "version", "minimumCoreVersion", "system", "authors", "scripts", "styles", "url", "manifest", "download"], "$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"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 37721, "date" : "2014-11-18 16:43:21", "user" : "gbshouse", "post" : "Rage4 ANY - managed anycast BGP service\r\n\r\nIf you need route your customers to closest server and GeoDNS is not enough (even ours :)) the Rage4 ANY is perfect solution for you. Why? Because it's ...\r\n\r\n1. Easy to setup\r\n\r\n- download our client (or use old school GRE) and connect to our network,\r\n\r\n- setup your routing software (like Quagga or ExaBGP) and establish BGP session with us (you can use private ASN which is free of charge),\r\n\r\n- configure your service to use your anycast IP\r\n\r\nThat's all! Believe or not you can add up to 255 backend servers per single anycast IP\r\n\r\n2. Secure - all IPs are DDoS protected in cooperation with Staminus\r\n\r\n3. Cheap - the monthly cost of the service is 25\u20ac/IP with 25GB of traffic included (additional traffic 0.10\u20ac/GB). Additional discounts for multiple IPs and larger IP blocks.\r\n\r\n\r\nIf you have any questions feel free to drop us mail - office [ at ] gbshouse.com\r\n\r\n\r\n\r\n"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"n_dim" : 8, "n_trials" : 130, "objective" : "markowitz_return_on_cube", "white" : "pysot_dycors", "black" : "platypus_gde3", "traceback" : ["passing", "passing"], "best_val" : [3622.760808783716, 5122.879556554402], "best_x" : [[0.19811508931616037, 0.43132920356962934, 0.42474681384616564, 0.5444635273065059, 0.9953990716473541, 0.5571863557370536, 7.969020496202857e-05, 0.40240121686315383], [0.025396481722967157, 0.9815798140254499, 0.13048355099243358, 0.6481323189166935, 0.6998244507516617, 0.9884104567877703, 0.002953086928001669, 0.8179132706856768]], "feval_count" : [130, 100], "n_trials_instructed" : [130, 93], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "pysot_dycors", "loser" : "platypus_gde3"}
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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": "null"}, "location": {"type": "string"}, "email": {"type": "string"}, "hireable": {"type": "boolean"}, "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" : "Paxa", "repos" : 1, "login" : "Paxa", "id" : 26019, "avatar_url" : "https://avatars0.githubusercontent.com/u/26019?v=3", "url" : "https://api.github.com/users/Paxa", "html_url" : "https://github.com/Paxa", "followers_url" : "https://api.github.com/users/Paxa/followers", "following_url" : "https://api.github.com/users/Paxa/following{/other_user}", "gists_url" : "https://api.github.com/users/Paxa/gists{/gist_id}", "starred_url" : "https://api.github.com/users/Paxa/starred{/owner}{/repo}", "subscriptions_url" : "https://api.github.com/users/Paxa/subscriptions", "organizations_url" : "https://api.github.com/users/Paxa/orgs", "repos_url" : "https://api.github.com/users/Paxa/repos", "events_url" : "https://api.github.com/users/Paxa/events{/privacy}", "received_events_url" : "https://api.github.com/users/Paxa/received_events", "type" : "User", "site_admin" : false, "name" : "Pavel Evstigneev", "company" : "Veritrans Indonesia", "blog" : null, "location" : "Indonesia, Bali", "email" : "pavel.evst@gmail.com", "hireable" : true, "bio" : null, "public_repos" : 94, "public_gists" : 43, "followers" : 38, "following" : 43, "created_at" : "2008-09-24T03:23:44Z", "updated_at" : "2017-01-26T11:40:23Z"}
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": "null"}, "location": {"type": "string"}, "email": {"type": "string"}, "hireable": {"type": "boolean"}, "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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"900658651": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658652": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658653": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658654": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658655": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658656": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658657": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658658": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658659": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900658651", "900658652", "900658653", "900658654", "900658655", "900658656", "900658657", "900658658", "900658659"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900658651" : {"nama" : "TPS 1", "dapil" : [6102, 16107, 2610601]}, "900658652" : {"nama" : "TPS 2", "dapil" : [6102, 16107, 2610601]}, "900658653" : {"nama" : "TPS 3", "dapil" : [6102, 16107, 2610601]}, "900658654" : {"nama" : "TPS 4", "dapil" : [6102, 16107, 2610601]}, "900658655" : {"nama" : "TPS 5", "dapil" : [6102, 16107, 2610601]}, "900658656" : {"nama" : "TPS 6", "dapil" : [6102, 16107, 2610601]}, "900658657" : {"nama" : "TPS 7", "dapil" : [6102, 16107, 2610601]}, "900658658" : {"nama" : "TPS 8", "dapil" : [6102, 16107, 2610601]}, "900658659" : {"nama" : "TPS 9", "dapil" : [6102, 16107, 2610601]}}
json_instruct
{"type": "object", "properties": {"900658651": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658652": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658653": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658654": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658655": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658656": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658657": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658658": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900658659": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900658651", "900658652", "900658653", "900658654", "900658655", "900658656", "900658657", "900658658", "900658659"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"config": {"type": "object", "properties": {"vendor-dir": {"type": "string"}}, "required": ["vendor-dir"]}, "require": {"type": "object", "properties": {"aws/aws-sdk-php": {"type": "string"}, "pda/pheanstalk": {"type": "string"}, "erusev/parsedown": {"type": "string"}, "maxakawizard/json-collection-parser": {"type": "string"}, "nette/caching": {"type": "string"}, "mailgun/mailgun-php": {"type": "string"}, "kriswallsmith/buzz": {"type": "string"}, "nyholm/psr7": {"type": "string"}}, "required": ["aws/aws-sdk-php", "pda/pheanstalk", "erusev/parsedown", "maxakawizard/json-collection-parser", "nette/caching", "mailgun/mailgun-php", "kriswallsmith/buzz", "nyholm/psr7"]}}, "required": ["config", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"config" : {"vendor-dir" : "src/htdocs/vendor"}, "require" : {"aws/aws-sdk-php" : "^3.52", "pda/pheanstalk" : "^4.0", "erusev/parsedown" : "^1.7", "maxakawizard/json-collection-parser" : "~1.0", "nette/caching" : "^3.0", "mailgun/mailgun-php" : "^3.5", "kriswallsmith/buzz" : "^1.2", "nyholm/psr7" : "^1.4"}}
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"vendor-dir": {"type": "string"}}, "required": ["vendor-dir"]}, "require": {"type": "object", "properties": {"aws/aws-sdk-php": {"type": "string"}, "pda/pheanstalk": {"type": "string"}, "erusev/parsedown": {"type": "string"}, "maxakawizard/json-collection-parser": {"type": "string"}, "nette/caching": {"type": "string"}, "mailgun/mailgun-php": {"type": "string"}, "kriswallsmith/buzz": {"type": "string"}, "nyholm/psr7": {"type": "string"}}, "required": ["aws/aws-sdk-php", "pda/pheanstalk", "erusev/parsedown", "maxakawizard/json-collection-parser", "nette/caching", "mailgun/mailgun-php", "kriswallsmith/buzz", "nyholm/psr7"]}}, "required": ["config", "require"], "$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"}, "achievementgroup": {"type": "string"}, "sortorder": {"type": "integer"}, "stages": {"type": "integer"}, "stage1": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "progress": {"type": "integer"}, "reward": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}, "required": ["title", "description", "progress", "reward"]}}, "required": ["name", "achievementgroup", "sortorder", "stages", "stage1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Explora\u00e7\u00e3o em Andamento", "achievementgroup" : "Chamas Luminosas", "sortorder" : 159, "stages" : 1, "stage1" : {"title" : "Explora\u00e7\u00e3o em Andamento", "description" : "Conclua as comiss\u00f5es de explora\u00e7\u00e3o do Minist\u00e9rio dos Assuntos Civis.", "progress" : 1, "reward" : {"name" : "Gema Essencial", "count" : 10}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "achievementgroup": {"type": "string"}, "sortorder": {"type": "integer"}, "stages": {"type": "integer"}, "stage1": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "progress": {"type": "integer"}, "reward": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}, "required": ["title", "description", "progress", "reward"]}}, "required": ["name", "achievementgroup", "sortorder", "stages", "stage1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"NODE_ENV": {"type": "string"}, "DOMAIN": {"type": "string"}}, "required": ["NODE_ENV", "DOMAIN"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"NODE_ENV" : "dev", "DOMAIN" : "localhost"}
json_instruct
{"type": "object", "properties": {"NODE_ENV": {"type": "string"}, "DOMAIN": {"type": "string"}}, "required": ["NODE_ENV", "DOMAIN"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"r_time": {"type": "number"}, "quing_time": {"type": "number"}, "mc_wait_time": {"type": "number"}, "nt_service_time": {"type": "number"}, "wt_preprocess_time": {"type": "number"}, "wt_service_time": {"type": "number"}, "wt_postprocess_time": {"type": "number"}, "avg_q_len": {"type": "number"}, "tps": {"type": "number"}}, "required": ["r_time", "quing_time", "mc_wait_time", "nt_service_time", "wt_preprocess_time", "wt_service_time", "wt_postprocess_time", "avg_q_len", "tps"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"r_time" : 10518883.991759816, "quing_time" : 7854346.475204865, "mc_wait_time" : 2648912.0266956734, "nt_service_time" : 1335.4084079351355, "wt_preprocess_time" : 3380.5786799793245, "wt_service_time" : 3380.5786799793245, "wt_postprocess_time" : 2648912.0266956734, "avg_q_len" : 23.95663903467896, "tps" : 3494.914285714286}
json_instruct
{"type": "object", "properties": {"r_time": {"type": "number"}, "quing_time": {"type": "number"}, "mc_wait_time": {"type": "number"}, "nt_service_time": {"type": "number"}, "wt_preprocess_time": {"type": "number"}, "wt_service_time": {"type": "number"}, "wt_postprocess_time": {"type": "number"}, "avg_q_len": {"type": "number"}, "tps": {"type": "number"}}, "required": ["r_time", "quing_time", "mc_wait_time", "nt_service_time", "wt_preprocess_time", "wt_service_time", "wt_postprocess_time", "avg_q_len", "tps"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "rarity": {"type": "integer"}, "baseAttack": {"type": "integer"}, "subStat": {"type": "string"}, "passiveName": {"type": "string"}, "passiveDesc": {"type": "string"}, "location": {"type": "string"}}, "required": ["name", "type", "rarity", "baseAttack", "subStat", "passiveName", "passiveDesc", "location"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Compound Bow", "type" : "Bow", "rarity" : 4, "baseAttack" : 41, "subStat" : "Physical DMG Bonus", "passiveName" : "Infusion Arrow", "passiveDesc" : "Normal Attack and Aimed Shot hits increase ATK by 4/5/6/7/8% and Normal Attack SPD by 1.2/1.5/1.8/2.1/2.4% for 6s. Max 4 stacks. Can only occur once every 0.3s.", "location" : "Crafting"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "rarity": {"type": "integer"}, "baseAttack": {"type": "integer"}, "subStat": {"type": "string"}, "passiveName": {"type": "string"}, "passiveDesc": {"type": "string"}, "location": {"type": "string"}}, "required": ["name", "type", "rarity", "baseAttack", "subStat", "passiveName", "passiveDesc", "location"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : "Eglin Afb", "state_name" : "Florida", "state_abbrv" : "FL", "lat" : "30.5393", "long" : "-86.6087"}
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "number"}, "feels_like": {"type": "number"}, "temp_min": {"type": "number"}, "temp_max": {"type": "number"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}, "sea_level": {"type": "integer"}, "grnd_level": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity", "sea_level", "grnd_level"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}, "gust": {"type": "number"}}, "required": ["speed", "deg", "gust"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"coord" : {"lon" : 10.5, "lat" : 51.5}, "weather" : [{"id" : 804, "main" : "Clouds", "description" : "overcast clouds", "icon" : "04d"}], "base" : "stations", "main" : {"temp" : 7.48, "feels_like" : 4.29, "temp_min" : 6.49, "temp_max" : 8.91, "pressure" : 996, "humidity" : 58, "sea_level" : 996, "grnd_level" : 960}, "visibility" : 10000, "wind" : {"speed" : 5.36, "deg" : 272, "gust" : 7.71}, "clouds" : {"all" : 100}, "dt" : 1649423516, "sys" : {"type" : 2, "id" : 2039461, "country" : "DE", "sunrise" : 1649392669, "sunset" : 1649440894}, "timezone" : 7200, "id" : 2921044, "name" : "Germany", "cod" : 200}
json_instruct
{"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "number"}, "feels_like": {"type": "number"}, "temp_min": {"type": "number"}, "temp_max": {"type": "number"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}, "sea_level": {"type": "integer"}, "grnd_level": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity", "sea_level", "grnd_level"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}, "gust": {"type": "number"}}, "required": ["speed", "deg", "gust"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[125.875, 44.583333333333336], [125.875, 44.666666666666664], [126.0, 44.666666666666664], [126.0, 44.583333333333336], [125.875, 44.583333333333336]]]}, "properties" : {"code" : 662577, "url" : "http://madefor.github.io/0410/api/v1/662577.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/662577.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"article": {"type": "string"}, "options": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "answers": {"type": "array", "items": {"type": "string"}}}, "required": ["article", "options", "answers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"article" : "One very cold wet night, there was a knock on my front door. A young man, wet from _ to foot, explained that he had run out of petrol and had left his wife and two children behind in his car. After I had _ a can with petrol, I drove him back to his car. Once his car had started, I suggested he follow me. Back to the gas station, I turned on the heater so that it is nice and _ . While the young man was drying his wet clothes, the little ones played and ran around. I prepared bread for the children and hot coffee for the _ . Before they left, the young man asked me how much he owed me and I told him that the petrol pump had _ $15. He offered to pay \"call-out fee\", but I wouldnt accept it. About a month _ , I received a _ from a large bus company. _ turned out that the young man was its general manager, the most _ person in the company. In his letter, he thanked me again and _ me that, from then on, all their buses would be filled with petrol at my station. _ his case, a little kindness was rewarded with a huge benefit.", "options" : [["finger", "shoulder", "head", "hand"], ["supplied", "poured", "equipped", "filled"], ["neat", "warm", "hot", "cool"], ["drivers", "guests", "customers", "adults"], ["shown", "appeared", "exhibited", "asked"], ["late", "latter", "later", "lately"], ["call", "e-mail", "check", "letter"], ["It", "That", "What", "Which"], ["generous", "successful", "powerful", "serious"], ["advised", "praised", "suggested", "informed"], ["In", "At", "On", "With"]], "answers" : ["C", "D", "B", "D", "A", "C", "D", "A", "C", "D", "A"]}
json_instruct
{"type": "object", "properties": {"article": {"type": "string"}, "options": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "answers": {"type": "array", "items": {"type": "string"}}}, "required": ["article", "options", "answers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"html": {"type": "string"}, "css": {"type": "string"}, "authors": {"type": "string"}, "preview": {"type": "string"}, "roll20userid": {"type": "string"}, "instructions": {"type": "string"}}, "required": ["html", "css", "authors", "preview", "roll20userid", "instructions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"html" : "yogsquest.html", "css" : "yogsquest.css", "authors" : "Brian Shields", "preview" : "yogsquest.jpg", "roll20userid" : "235259", "instructions" : "This character sheet relies on an external font, Badaboom. Roll20 has issues loading external fonts, as it tries to load them over an insecure connection despite being a secure page. Many browsers take issue with this, and block the content.\n\nMost browsers should be able to override this function in some way, allowing this character sheet to render correctly. The process will likely be something like this (Chrome screenshot): \n![load insecure content](http://i.imgur.com/0pD2w71.png)"}
json_instruct
{"type": "object", "properties": {"html": {"type": "string"}, "css": {"type": "string"}, "authors": {"type": "string"}, "preview": {"type": "string"}, "roll20userid": {"type": "string"}, "instructions": {"type": "string"}}, "required": ["html", "css", "authors", "preview", "roll20userid", "instructions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"uid": {"type": "string"}, "name": {"type": "string"}, "time": {"type": "object", "properties": {"start": {"type": "integer"}, "stop": {"type": "integer"}, "duration": {"type": "integer"}}, "required": ["start", "stop", "duration"]}, "status": {"type": "string"}, "severity": {"type": "string"}}, "required": ["uid", "name", "time", "status", "severity"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"uid" : "f48ac88df52c3c97", "name" : "test_add_group[None namedPhtykwuTiHhYYtfMcm headerhpZ44x qgsIhoN1dn7Y footerq2S7S z fPR PEifl tW]", "time" : {"start" : 1584477224071, "stop" : 1584477225781, "duration" : 1710}, "status" : "passed", "severity" : "normal"}, {"uid" : "56d686d4dfa2608a", "name" : "test_add_group[None nameLpJY8 JHI pOxOw sBx2` headerhupPRr MVb78 5 XkBQ footerg N BILeeb DXTpDjz0V]", "time" : {"start" : 1584477227333, "stop" : 1584477228779, "duration" : 1446}, "status" : "passed", "severity" : "normal"}, {"uid" : "25139bbeb8f44c38", "name" : "test_add_group[None name TzfnSS NC9U Y0nJzo5 headerz spPe6m0B6xv r6o7Ut footerG9 rO8ZaH AwINFzFxC]", "time" : {"start" : 1584477225855, "stop" : 1584477227262, "duration" : 1407}, "status" : "passed", "severity" : "normal"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"uid": {"type": "string"}, "name": {"type": "string"}, "time": {"type": "object", "properties": {"start": {"type": "integer"}, "stop": {"type": "integer"}, "duration": {"type": "integer"}}, "required": ["start", "stop", "duration"]}, "status": {"type": "string"}, "severity": {"type": "string"}}, "required": ["uid", "name", "time", "status", "severity"]}, "$schema": "http://json-schema.org/draft-07/schema#"}