input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "group_id": {"type": "integer"}, "shape_type": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}}, "required": ["label", "points", "group_id", "shape_type", "flags"]}}, "imagePath": {"type": "string"}, "imageData": {"type": "string"}, "imageWidth": {"type": "integer"}, "imageHeight": {"type": "integer"}}, "required": ["version", "flags", "shapes", "imagePath", "imageData", "imageWidth", "imageHeight"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "4.5.6", "flags" : {}, "shapes" : [{"label" : "null", "points" : [[297, 825], [840, 820], [843, 930], [293, 933]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}], "imagePath" : "img_321.jpg", "imageData" : "null", "imageWidth" : 1024, "imageHeight" : 1365}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "group_id": {"type": "integer"}, "shape_type": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}}, "required": ["label", "points", "group_id", "shape_type", "flags"]}}, "imagePath": {"type": "string"}, "imageData": {"type": "string"}, "imageWidth": {"type": "integer"}, "imageHeight": {"type": "integer"}}, "required": ["version", "flags", "shapes", "imagePath", "imageData", "imageWidth", "imageHeight"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Verchin", "circ" : "4\u00e8me circonscription", "dpt" : "Pas-de-Calais", "inscrits" : 185, "abs" : 73, "votants" : 112, "blancs" : 6, "nuls" : 0, "exp" : 106, "res" : [{"nuance" : "LR", "nom" : "M. Daniel FASQUELLE", "voix" : 79}, {"nuance" : "REM", "nom" : "M. Thibaut GUILLUY", "voix" : 27}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"$type": {"type": "string"}, "id": {"type": "integer"}, "holding_static_mesh": {"type": "string"}, "holding_static_mesh_mat": {"type": "string"}}, "required": ["$type", "id", "holding_static_mesh", "holding_static_mesh_mat"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$type" : "InteractionItem", "id" : 1040040001, "holding_static_mesh" : "StaticMesh'/Game/X6GameData/Prototype/PrototypeAssets/StaticMesh/SM_Ball.SM_Ball'", "holding_static_mesh_mat" : "MaterialInstanceConstant'/Game/X6GameData/Prototype/PrototypeAssets/CustomizableGrid/Materials/Presets/M_Grid_preset_002.M_Grid_preset_002'"}
json_instruct
{"type": "object", "properties": {"$type": {"type": "string"}, "id": {"type": "integer"}, "holding_static_mesh": {"type": "string"}, "holding_static_mesh_mat": {"type": "string"}}, "required": ["$type", "id", "holding_static_mesh", "holding_static_mesh_mat"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 13346, "cartId" : "85122f02-7402-4673-a02b-c3dc7ae460eb", "preferredProducts" : [1515, 1972, 3680, 2599, 4867], "productReviews" : [{"productId" : 2776, "reviewText" : "I saw one of these in Cote d'Ivoire and I bought one.", "reviewDate" : "2017-07-02T18:25:13.7118154+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "bf-578_1", "size" : 1501607590, "link" : "https://streamtape.com/e/GQ1O6qg9B3i1r1a", "created_at" : "2022\u5e7404\u670804\u65e5 04:21:36", "downloads" : 0, "linkid" : "GQ1O6qg9B3i1r1a", "convert" : "converted", "achorname" : "\u4e38\u5b50\u5466", "subscribe" : "0\u4f4d\u8ba2\u9605\u8005", "avatar-img" : "https://huyaimg.msstatic.com/avatar/1022/07/ec5fef7c7662720286fbbb12395390_180_135.jpg?1628178596?458648", "folderName" : "BF-578 \u5973\u53cb\u4e0d\u5728\u7684\u56db\u5929\u88e1\u88ab\u5979\u59d0\u59d0\u8a98\u60d1\u505a\u611b\u4e0d\u505c\u606f \u51dc\u97f3\u6843\u82b1", "thumbUrl" : "https://assets-cdn.jable.tv/contents/videos_screenshots/1000/1805/320x180/1.jpg"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 2216, "citation_title" : "Short-term and Long-Term Expectations of the Yen/Dollar Exchange Rate: Evidence from Survey Data", "citation_author" : ["Jeffrey A. Frankel", "Kenneth A. Froot"], "citation_publication_date" : "1987-04-01", "issue_date" : "1987-04-01", "revision_date" : "None", "topics" : ["International Economics"], "program" : ["International Trade and Investment", "International Finance and Macroeconomics"], "projects" : null, "working_groups" : null, "abstract" : "\n\nThree surveys of exchange rate expectations allow us to measure directly the expected rates of return on yen versus dollars. Expectations of yen appreciation against the dollar have been (1) consistently large, (2) variable, and (3) greater than the forward premium, implying that investors were willing to accept a lower expected return on dollar assets. At short-term horizons expectations exhibit bandwagon effects, while at longer-term horizons they show the reverse. A 10 percent yen appreciation generates the expectation of a further appreciation of 2.4 percent over the following week, for example, but a depreciation of 3.4 percent over the following year. At any horizon, investors would do better to reduce the absolute magnitude of expected depreciation. The true spot rate process behaves more like a random walk.\n\n", "acknowledgement" : "\n"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "MultiPolygon", "coordinates" : [[[[-97.270611, 43.430062], [-97.270386, 43.43006], [-97.270291, 43.43006], [-97.27001, 43.430057], [-97.269822, 43.430056], [-97.269728, 43.430056], [-97.26841, 43.430037], [-97.267845, 43.430032], [-97.267267, 43.430023], [-97.26677, 43.430017], [-97.266245, 43.43001], [-97.264992, 43.429999], [-97.264646, 43.429996], [-97.264339, 43.429992], [-97.263799, 43.429983], [-97.26361, 43.429981], [-97.263449, 43.429976], [-97.263355, 43.429977], [-97.262794, 43.429971], [-97.261505, 43.429959], [-97.261382, 43.429958], [-97.261194, 43.429958], [-97.261006, 43.429963], [-97.260818, 43.429973], [-97.259779, 43.43004], [-97.259027, 43.430079], [-97.256562, 43.430115], [-97.25625, 43.43012], [-97.256018, 43.430123], [-97.254889, 43.430121], [-97.254532, 43.430122], [-97.254135, 43.430124], [-97.253759, 43.430129], [-97.253247, 43.430131], [-97.252494, 43.43013], [-97.250742, 43.430135], [-97.250737, 43.42967], [-97.250703, 43.426619], [-97.250675, 43.42408], [-97.250649, 43.4217], [-97.250633, 43.42083], [-97.250618, 43.419477], [-97.254019, 43.419483], [-97.255729, 43.419488], [-97.255649, 43.415654], [-97.256659, 43.415648], [-97.256753, 43.415648], [-97.257411, 43.415641], [-97.257506, 43.415641], [-97.257593, 43.41564], [-97.257787, 43.415638], [-97.258142, 43.415637], [-97.258182, 43.414622], [-97.258205, 43.414198], [-97.25934, 43.414214], [-97.260566, 43.414234], [-97.260565, 43.414283], [-97.260566, 43.414557], [-97.260568, 43.414694], [-97.260568, 43.414763], [-97.260571, 43.4149], [-97.260571, 43.414969], [-97.260572, 43.415037], [-97.260572, 43.415106], [-97.260578, 43.415636], [-97.263328, 43.415617], [-97.264269, 43.415616], [-97.264363, 43.415615], [-97.264976, 43.415613], [-97.265019, 43.419398], [-97.268825, 43.419264], [-97.268857, 43.418755], [-97.270273, 43.41875], [-97.270381, 43.4229], [-97.270386, 43.423071], [-97.270394, 43.423513], [-97.270611, 43.430062]]]], "properties" : {"id" : "usa-sd-marion-city", "type" : "city", "name" : "Marion", "code" : "4640860"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}}, "required": ["id", "type", "name", "code"]}}, "required": ["type", "coordinates", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"kind": {"type": "string"}, "collectionName": {"type": "string"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"]}, "options": {"type": "object", "properties": {"increments": {"type": "boolean"}, "timestamps": {"type": "boolean"}, "draftAndPublish": {"type": "boolean"}}, "required": ["increments", "timestamps", "draftAndPublish"]}, "attributes": {"type": "object", "properties": {"title": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}, "text": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}, "emojiSymbol": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}}, "required": ["title", "text", "emojiSymbol"]}}, "required": ["kind", "collectionName", "info", "options", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"kind" : "collectionType", "collectionName" : "org-info", "info" : {"name" : "Informa\u00e7\u00f5es da Org (Miss\u00e3o, Valores e Vis\u00e3o)", "description" : ""}, "options" : {"increments" : true, "timestamps" : true, "draftAndPublish" : true}, "attributes" : {"title" : {"type" : "string", "required" : true}, "text" : {"type" : "text", "required" : true}, "emojiSymbol" : {"type" : "string", "required" : true}}}
json_instruct
{"type": "object", "properties": {"kind": {"type": "string"}, "collectionName": {"type": "string"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"]}, "options": {"type": "object", "properties": {"increments": {"type": "boolean"}, "timestamps": {"type": "boolean"}, "draftAndPublish": {"type": "boolean"}}, "required": ["increments", "timestamps", "draftAndPublish"]}, "attributes": {"type": "object", "properties": {"title": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}, "text": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}, "emojiSymbol": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "required"]}}, "required": ["title", "text", "emojiSymbol"]}}, "required": ["kind", "collectionName", "info", "options", "attributes"], "$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"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"130": {"type": "string"}, "132": {"type": "string"}}, "required": ["130", "132"]}, "timeto": {"type": "object", "properties": {"130": {"type": "number"}, "132": {"type": "number"}}, "required": ["130", "132"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 131, "title" : ["[Temple Wyneb, Calvaria]"], "description" : ["It is impossible to avoid the bat guano entirely, as it covers every inch of the floor. However, the greatest density appears to be in the center of the room, so you do what you can to keep to the edges."], "paths" : ["Obvious exits: north, south"], "location" : "Temple Wyneb", "wayto" : {"130" : "south", "132" : "north"}, "timeto" : {"130" : 0.2, "132" : 0.2}, "image" : "en-skull-1264234799.png", "image_coords" : [852, 599, 862, 609]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"130": {"type": "string"}, "132": {"type": "string"}}, "required": ["130", "132"]}, "timeto": {"type": "object", "properties": {"130": {"type": "number"}, "132": {"type": "number"}}, "required": ["130", "132"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"new_version" : "1.5.9"}
json_instruct
{"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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": "string"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 9942, "name" : "SideReel - remove trash", "description" : "Removes all the unwanted crap on SideReel.com.\r\n\r\nI left in \r\n-show-related news \r\n-episode links [duh!]\r\n-social-related links\r\n-recommendations\r\n-cast and crew\r\n-wiki\r\n-images\r\n\r\nIf you want me to block any of these as well, request it here.", "user" : {"id" : 6273, "name" : "rude-dude", "email" : "redacted", "paypal_email" : "[email protected]", "homepage" : null, "about" : null, "license" : null}, "updated" : "2008-08-23T14:04:30.000Z", "weekly_install_count" : 0, "total_install_count" : 601, "rating" : null, "after_screenshot_name" : "https://userstyles.org/auto_style_screenshots/9942-after.png?r=1588838707", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2008-08-23T14:04:30.000Z", "category" : "site", "raw_subcategory" : "sidereel", "subcategory" : "sidereel", "additional_info" : null, "style_tags" : [], "css" : "@namespace url(http://www.w3.org/1999/xhtml);@-moz-document domain(\"sidereel.com\") {#discussions, [class=\"module setAd\"], [class=\"module vivid\"], #rail, .withButton, #episodeGuideParent, #reviews, #marquee-ad {display:none !important}}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/9942/sidereel-remove-trash.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": "string"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"links": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "link": {"type": "string"}, "image": {"type": "string"}, "about": {"type": "string"}}, "required": ["id", "name", "link", "image", "about"]}}}, "required": ["links"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"links" : [{"id" : 1, "name" : "Sonu kumar kushwaha", "link" : "https://blog-minimal.netlify.app/", "image" : "https://raw.githubusercontent.com/flyingsonu122/links-list/host/img/sonu.jpg", "about" : "CS Student and web developer"}, {"id" : 2, "name" : "Nihal Priyadarshi", "link" : "https://nihal-priyadarshi.github.io/Portfolio/", "image" : "https://nihal-priyadarshi.github.io/Portfolio/images/Nihal.jpg", "about" : " Web Developer | Programmer | Open Source Contributor"}, {"id" : 3, "name" : "Aditya ", "link" : "https://adityakumar99.github.io/", "image" : "https://raw.githubusercontent.com/flyingsonu122/links-list/host/img/aditya.jpeg", "about" : "student, Intrested in computer science "}, {"id" : 4, "name" : "Abhishek Singh", "link" : "https://abhishekit04.github.io/", "image" : "https://raw.githubusercontent.com/abhishekit04/abhishekit04.github.io/main/abhishek.jpg", "about" : "An IT student , Programming learner"}, {"id" : 5, "name" : "Pranav Tyagi", "link" : "https://impranavtg.github.io/PizZato/", "image" : "https://i.ibb.co/FVSZT2t/83161133.jpg", "about" : "Web Enthusiast and a java programmer"}, {"id" : 6, "name" : "Aaquib Ali", "link" : "https://aaquibali.github.io/Aaquib-Ali-Portfolio/", "image" : "https://user-images.githubusercontent.com/84700316/135716522-ded87b81-d5c9-4cb0-8984-8e8f97fd79be.jpg", "about" : "Developer | Improving the world w/ beeter education..."}, {"id" : 7, "name" : "Chirag Agrawal", "link" : "https://chirgagrwl.netlify.app/", "image" : "https://raw.githubusercontent.com/chiragagrawal9200/links-list/host/img/aditya.jpeg", "about" : "MLSA, Web Developer, community and Open Source Enthusiast"}]}
json_instruct
{"type": "object", "properties": {"links": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "link": {"type": "string"}, "image": {"type": "string"}, "about": {"type": "string"}}, "required": ["id", "name", "link", "image", "about"]}}}, "required": ["links"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"backend": {"type": "object", "properties": {"module": {"type": "string"}, "module_class": {"type": "string"}, "path": {"type": "string"}, "load_from_path": {"type": "boolean"}}, "required": ["module", "module_class", "path", "load_from_path"]}, "taxii": {"type": "object", "properties": {"max_page_size": {"type": "integer"}}, "required": ["max_page_size"]}, "auth": {"type": "object", "properties": {"module": {"type": "string"}, "module_class": {"type": "string"}, "uri": {"type": "string"}, "db_name": {"type": "string"}}, "required": ["module", "module_class", "uri", "db_name"]}, "multi-auth": {"type": "array", "items": {"type": "string"}}}, "required": ["backend", "taxii", "auth", "multi-auth"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"backend" : {"module" : "medallion.backends.taxii.memory_backend", "module_class" : "MemoryBackend", "path" : "./example_configs/directory/", "load_from_path" : true}, "taxii" : {"max_page_size" : 100}, "auth" : {"module" : "medallion.backends.auth.mongo_auth", "module_class" : "AuthMongodbBackend", "uri" : "mongodb://root:example@localhost:27017/", "db_name" : "auth"}, "multi-auth" : ["basic", "api_key"]}
json_instruct
{"type": "object", "properties": {"backend": {"type": "object", "properties": {"module": {"type": "string"}, "module_class": {"type": "string"}, "path": {"type": "string"}, "load_from_path": {"type": "boolean"}}, "required": ["module", "module_class", "path", "load_from_path"]}, "taxii": {"type": "object", "properties": {"max_page_size": {"type": "integer"}}, "required": ["max_page_size"]}, "auth": {"type": "object", "properties": {"module": {"type": "string"}, "module_class": {"type": "string"}, "uri": {"type": "string"}, "db_name": {"type": "string"}}, "required": ["module", "module_class", "uri", "db_name"]}, "multi-auth": {"type": "array", "items": {"type": "string"}}}, "required": ["backend", "taxii", "auth", "multi-auth"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "null"}, "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" : 22474, "name" : "Google-Doodle remover (removes Google.com-logos)", "description" : "For Google.com. Look here for Google.de: http://userstyles.org/styles/22473", "user" : {"id" : 5174, "name" : "lestarte2008", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2009-11-10T14:43:56.000Z", "weekly_install_count" : 0, "total_install_count" : 414, "rating" : null, "after_screenshot_name" : null, "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2009-11-10T14:43:56.000Z", "category" : "site", "raw_subcategory" : "google", "subcategory" : "google", "additional_info" : null, "style_tags" : [], "css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n@-moz-document domain(\"google.com\") {\r\n /* (c) 2009 Lestarte */\r\n object[data*=\"content\"],\r\n img[id=\"logo\"]{\r\n display:none;\r\n }\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/22474/google-doodle-remover-removes-google-com-logos.user.js", "style_settings" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "null"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"grade": {"type": "string"}, "type": {"type": "string"}, "exp": {"type": "string"}}, "required": ["grade", "type", "exp"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"grade" : "int", "type" : "int", "exp" : "int"}
json_instruct
{"type": "object", "properties": {"grade": {"type": "string"}, "type": {"type": "string"}, "exp": {"type": "string"}}, "required": ["grade", "type", "exp"], "$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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "dev"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"egg": {"type": "string"}, "egg-mongoose": {"type": "string"}, "egg-scripts": {"type": "string"}}, "required": ["egg", "egg-mongoose", "egg-scripts"]}, "devDependencies": {"type": "object", "properties": {"egg-bin": {"type": "string"}}, "required": ["egg-bin"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "egg-blog", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"start" : "egg-scripts start --daemon --title=egg-server-demo", "dev" : "egg-bin dev"}, "keywords" : [], "author" : "", "license" : "ISC", "dependencies" : {"egg" : "^2.10.0", "egg-mongoose" : "^3.1.0", "egg-scripts" : "^2.8.1"}, "devDependencies" : {"egg-bin" : "^4.8.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "dev"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"egg": {"type": "string"}, "egg-mongoose": {"type": "string"}, "egg-scripts": {"type": "string"}}, "required": ["egg", "egg-mongoose", "egg-scripts"]}, "devDependencies": {"type": "object", "properties": {"egg-bin": {"type": "string"}}, "required": ["egg-bin"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "Hi, \r\nI am the developer of SZ. I updated the package.py for SZ in spack, by using the latest version. \r\nPlease merge it. \r\nThanks!\r\n\r\nBest,\r\nSheng", "user" : "disheng222", "url" : "https://api.github.com/repos/spack/spack/issues/5511", "updated_at" : "2017-09-27 20:52:13", "created_at" : "2017-09-27 20:12:53", "closed_at" : "2017-09-27 20:52:13", "state" : "closed", "title" : "modify package.py for SZ to use the latest version v1.4.11", "number" : 5511, "milestone" : null, "labels" : [], "id" : 261102895, "html_url" : "https://github.com/spack/spack/pull/5511", "assignees" : [], "comments" : 6}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"dbInfo": {"type": "object", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "driver": {"type": "string"}, "dbName": {"type": "string"}, "tableName": {"type": "string"}, "tableComment": {"type": "string"}}, "required": ["url", "username", "password", "driver", "dbName", "tableName", "tableComment"]}, "generatorInfo": {"type": "object", "properties": {"orm": {"type": "string"}, "author": {"type": "string"}, "packageBaseLocation": {"type": "string"}, "packageBaseName": {"type": "string"}, "generatorEntity": {"type": "object", "properties": {"needGenerate": {"type": "boolean"}, "detailPackageName": {"type": "string"}}, "required": ["needGenerate", "detailPackageName"]}, "generatorDao": {"type": "object", "properties": {"needGenerate": {"type": "boolean"}, "detailPackageName": {"type": "string"}, "mapperXMLPath": {"type": "string"}}, "required": ["needGenerate", "detailPackageName", "mapperXMLPath"]}, "generatorService": {"type": "object", "properties": {"needGenerate": {"type": "boolean"}, "detailPackageName": {"type": "string"}, "interfaceMode": {"type": "boolean"}}, "required": ["needGenerate", "detailPackageName", "interfaceMode"]}, "generatorController": {"type": "object", "properties": {"needGenerate": {"type": "boolean"}, "detailPackageName": {"type": "string"}, "mappingUrl": {"type": "string"}}, "required": ["needGenerate", "detailPackageName", "mappingUrl"]}}, "required": ["orm", "author", "packageBaseLocation", "packageBaseName", "generatorEntity", "generatorDao", "generatorService", "generatorController"]}, "pluginInfo": {"type": "object", "properties": {"needSwagger": {"type": "boolean"}, "needLombok": {"type": "boolean"}}, "required": ["needSwagger", "needLombok"]}}, "required": ["dbInfo", "generatorInfo", "pluginInfo"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dbInfo" : {"url" : "jdbc:mysql://localhost:3306/test", "username" : "username", "password" : "password", "driver" : "com.mysql.cj.jdbc.Driver", "dbName" : "test", "tableName" : "users", "tableComment" : "\u6d4b\u8bd5-\u8868\u6ce8\u91ca"}, "generatorInfo" : {"orm" : "mybatis", "author" : "jinglun", "packageBaseLocation" : "/Users/jinglun/Desktop/springboot-demo/src/main/java/com/example/demo", "packageBaseName" : "com.example.demo", "generatorEntity" : {"needGenerate" : true, "detailPackageName" : "/model"}, "generatorDao" : {"needGenerate" : true, "detailPackageName" : "/mapper", "mapperXMLPath" : "/Users/jinglun/Desktop/springboot-demo/src/main/resources/mapper"}, "generatorService" : {"needGenerate" : true, "detailPackageName" : "/service", "interfaceMode" : false}, "generatorController" : {"needGenerate" : true, "detailPackageName" : "/controller", "mappingUrl" : "/demo"}}, "pluginInfo" : {"needSwagger" : true, "needLombok" : true}}
json_instruct
{"type": "object", "properties": {"dbInfo": {"type": "object", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "driver": {"type": "string"}, "dbName": {"type": "string"}, "tableName": {"type": "string"}, "tableComment": {"type": "string"}}, "required": ["url", "username", "password", "driver", "dbName", "tableName", "tableComment"]}, "generatorInfo": {"type": "object", "properties": {"orm": {"type": "string"}, "author": {"type": "string"}, "packageBaseLocation": {"type": "string"}, "packageBaseName": {"type": "string"}, "generatorEntity": {"type": "object", "properties": {"needGenerate": {"type": "boolean"}, "detailPackageName": {"type": "string"}}, "required": ["needGenerate", "detailPackageName"]}, "generatorDao": {"type": "object", "properties": {"needGenerate": {"type": "boolean"}, "detailPackageName": {"type": "string"}, "mapperXMLPath": {"type": "string"}}, "required": ["needGenerate", "detailPackageName", "mapperXMLPath"]}, "generatorService": {"type": "object", "properties": {"needGenerate": {"type": "boolean"}, "detailPackageName": {"type": "string"}, "interfaceMode": {"type": "boolean"}}, "required": ["needGenerate", "detailPackageName", "interfaceMode"]}, "generatorController": {"type": "object", "properties": {"needGenerate": {"type": "boolean"}, "detailPackageName": {"type": "string"}, "mappingUrl": {"type": "string"}}, "required": ["needGenerate", "detailPackageName", "mappingUrl"]}}, "required": ["orm", "author", "packageBaseLocation", "packageBaseName", "generatorEntity", "generatorDao", "generatorService", "generatorController"]}, "pluginInfo": {"type": "object", "properties": {"needSwagger": {"type": "boolean"}, "needLombok": {"type": "boolean"}}, "required": ["needSwagger", "needLombok"]}}, "required": ["dbInfo", "generatorInfo", "pluginInfo"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"key": {"type": "string"}, "short_name": {"type": "string"}, "name": {"type": "string"}, "category": {"type": "string"}, "owner": {"type": "string"}, "homepage_url": {"type": "string"}, "spdx_license_key": {"type": "string"}}, "required": ["key", "short_name", "name", "category", "owner", "homepage_url", "spdx_license_key"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"key" : "isotope-cla", "short_name" : "Isotope Commercial License Agreement", "name" : "Isotope Commercial License Agreement", "category" : "Commercial", "owner" : "Metafizzy", "homepage_url" : "http://isotope.metafizzy.co/license.html", "spdx_license_key" : "LicenseRef-scancode-isotope-cla"}
json_instruct
{"type": "object", "properties": {"key": {"type": "string"}, "short_name": {"type": "string"}, "name": {"type": "string"}, "category": {"type": "string"}, "owner": {"type": "string"}, "homepage_url": {"type": "string"}, "spdx_license_key": {"type": "string"}}, "required": ["key", "short_name", "name", "category", "owner", "homepage_url", "spdx_license_key"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "date": {"type": "string"}, "year_start": {"type": "null"}, "year_end": {"type": "null"}, "year_acquired": {"type": "string"}, "decade": {"type": "null"}, "woe:country": {"type": "string"}, "medium": {"type": "string"}, "markings": {"type": "null"}, "signed": {"type": "null"}, "inscribed": {"type": "null"}, "provenance": {"type": "null"}, "dimensions": {"type": "string"}, "creditline": {"type": "string"}, "description": {"type": "string"}, "justification": {"type": "null"}, "type": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "images": {"type": "array", "items": {}}, "participants": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "string"}, "role_id": {"type": "string"}, "person_name": {"type": "string"}, "role_name": {"type": "string"}, "person_url": {"type": "string"}, "role_url": {"type": "string"}}, "required": ["person_id", "role_id", "person_name", "role_name", "person_url", "role_url"]}}, "tombstone": {"type": "object", "properties": {"epitaph": {"type": "string"}}, "required": ["epitaph"]}, "colors": {"type": "array", "items": {}}}, "required": ["id", "tms:id", "accession_number", "title", "url", "department_id", "period_id", "media_id", "type_id", "date", "year_start", "year_end", "year_acquired", "decade", "woe:country", "medium", "markings", "signed", "inscribed", "provenance", "dimensions", "creditline", "description", "justification", "type", "images", "participants", "tombstone", "colors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "18569449", "tms:id" : "78425", "accession_number" : "1943-46-20", "title" : "Textile, 17th century", "url" : "http://collection.cooperhewitt.org/objects/18569449/", "department_id" : "35347501", "period_id" : null, "media_id" : "35427757", "type_id" : "35251739", "date" : "17th century", "year_start" : null, "year_end" : null, "year_acquired" : "1943", "decade" : null, "woe:country" : "23424950", "medium" : "Silk and linen. Plain compound satin.", "markings" : null, "signed" : null, "inscribed" : null, "provenance" : null, "dimensions" : "H x W: 61 x 19 cm (24 in. x 7 1/2 in.)", "creditline" : "Gift of Mrs. Robert Woods Bliss, Dumbarton Oaks Collection", "description" : "Brocatelle type with pattern of stylized stems and leaves reserved in red satin on a ground of gold produced by extra yellow silk wefts floated over the surface of the red satin. Main wefts are coarse linen.", "justification" : null, "type" : {"id" : "35251739", "name" : "textile"}, "images" : [], "participants" : [{"person_id" : "18050267", "role_id" : "35351535", "person_name" : "Mrs. Robert Woods Bliss", "role_name" : "Donor", "person_url" : "http://collection.cooperhewitt.org/people/18050267/", "role_url" : "http://collection.cooperhewitt.org/roles/35351535/"}], "tombstone" : {"epitaph" : "Textile, 17th century.\n17th century. Silk and linen. Plain compound satin.. Gift of Mrs. Robert Woods Bliss, Dumbarton Oaks Collection. 1943-46-20."}, "colors" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "date": {"type": "string"}, "year_start": {"type": "null"}, "year_end": {"type": "null"}, "year_acquired": {"type": "string"}, "decade": {"type": "null"}, "woe:country": {"type": "string"}, "medium": {"type": "string"}, "markings": {"type": "null"}, "signed": {"type": "null"}, "inscribed": {"type": "null"}, "provenance": {"type": "null"}, "dimensions": {"type": "string"}, "creditline": {"type": "string"}, "description": {"type": "string"}, "justification": {"type": "null"}, "type": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "images": {"type": "array", "items": {}}, "participants": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "string"}, "role_id": {"type": "string"}, "person_name": {"type": "string"}, "role_name": {"type": "string"}, "person_url": {"type": "string"}, "role_url": {"type": "string"}}, "required": ["person_id", "role_id", "person_name", "role_name", "person_url", "role_url"]}}, "tombstone": {"type": "object", "properties": {"epitaph": {"type": "string"}}, "required": ["epitaph"]}, "colors": {"type": "array", "items": {}}}, "required": ["id", "tms:id", "accession_number", "title", "url", "department_id", "period_id", "media_id", "type_id", "date", "year_start", "year_end", "year_acquired", "decade", "woe:country", "medium", "markings", "signed", "inscribed", "provenance", "dimensions", "creditline", "description", "justification", "type", "images", "participants", "tombstone", "colors"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"lanes": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "label": {"type": "string"}, "cards": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "label": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "title", "label", "description"]}}}, "required": ["id", "title", "label", "cards"]}}}, "required": ["lanes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lanes" : [{"id" : "yesterday", "title" : "Yesterday", "label" : "20/70", "cards" : [{"id" : "Wip1", "title" : "Clean House", "label" : "30 mins", "description" : "Soap wash and polish floor. Polish windows and doors. Scrap all broken glasses"}]}, {"id" : "today", "title" : "Today", "label" : "10/20", "droppable" : false, "cards" : [{"id" : "Milk", "title" : "Buy milk", "label" : "15 mins", "description" : "2 Gallons of milk at the Deli store"}, {"id" : "Plan2", "title" : "Dispose Garbage", "label" : "10 mins", "description" : "Sort out recyclable and waste as needed"}, {"id" : "Plan3", "title" : "Write Blog", "label" : "30 mins", "description" : "Can AI make memes?"}, {"id" : "Plan4", "title" : "Pay Rent", "label" : "5 mins", "description" : "Transfer to bank account"}]}, {"id" : "tomorrow", "title" : "Tomorrow", "label" : "0/0", "cards" : []}]}
json_instruct
{"type": "object", "properties": {"lanes": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "label": {"type": "string"}, "cards": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "label": {"type": "string"}, "description": {"type": "string"}}, "required": ["id", "title", "label", "description"]}}}, "required": ["id", "title", "label", "cards"]}}}, "required": ["lanes"], "$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": {"url": {"type": "string"}, "description": {"type": "string"}}, "required": ["url", "description"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"url" : "https://hexdocs.pm/elixir/Kernel.SpecialForms.html#import/2", "description" : "Documentation - import"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "description": {"type": "string"}}, "required": ["url", "description"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2001", "provinceId" : "73", "regencyId" : "03", "districtId" : "03", "name" : "Ulu Galung"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "mysql": {"type": "string"}, "passport": {"type": "string"}, "passport-steam": {"type": "string"}, "request": {"type": "string"}, "steam-web": {"type": "string"}, "@passport-next/passport-openid": {"type": "string"}}, "required": ["body-parser", "ejs", "express", "express-session", "mysql", "passport", "passport-steam", "request", "steam-web", "@passport-next/passport-openid"]}, "devDependencies": {"type": "object", "properties": {"rimraf": {"type": "string"}}, "required": ["rimraf"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "surf-site", "version" : "1.0.0", "description" : "surf site for Boner Surf", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Tim Chen", "license" : "MIT", "dependencies" : {"body-parser" : "^1.19.0", "ejs" : "^3.0.2", "express" : "^4.17.1", "express-session" : "^1.17.0", "mysql" : "^2.18.1", "passport" : "^0.4.1", "passport-steam" : "^1.0.12", "request" : "^2.88.2", "steam-web" : "latest", "@passport-next/passport-openid" : "latest"}, "devDependencies" : {"rimraf" : "^3.0.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "mysql": {"type": "string"}, "passport": {"type": "string"}, "passport-steam": {"type": "string"}, "request": {"type": "string"}, "steam-web": {"type": "string"}, "@passport-next/passport-openid": {"type": "string"}}, "required": ["body-parser", "ejs", "express", "express-session", "mysql", "passport", "passport-steam", "request", "steam-web", "@passport-next/passport-openid"]}, "devDependencies": {"type": "object", "properties": {"rimraf": {"type": "string"}}, "required": ["rimraf"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$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"}, "manifest_version": {"type": "integer"}, "description": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "options_page": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]}, "background": {"type": "object", "properties": {"page": {"type": "string"}}, "required": ["page"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "all_frames": {"type": "boolean"}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "all_frames", "js"]}}}, "required": ["name", "version", "manifest_version", "description", "permissions", "options_page", "icons", "background", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "select and convert to markdown", "version" : "0.1.0", "manifest_version" : 2, "description" : "Copy select text and convert to Markdown code", "permissions" : ["tabs", "contextMenus", "http://*/*", "https://*/*"], "options_page" : "options.html", "icons" : {"16" : "toolbar-copy-convert-markdown.png", "48" : "toolbar-copy-convert-markdown.png", "128" : "toolbar-copy-convert-markdown.png"}, "background" : {"page" : "background.html"}, "content_scripts" : [{"matches" : ["<all_urls>"], "all_frames" : false, "js" : ["content_script.js"]}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "description": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "options_page": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]}, "background": {"type": "object", "properties": {"page": {"type": "string"}}, "required": ["page"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "all_frames": {"type": "boolean"}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "all_frames", "js"]}}}, "required": ["name", "version", "manifest_version", "description", "permissions", "options_page", "icons", "background", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "distance": {"type": "number"}, "distanceLabel": {"type": "string"}, "duration": {"type": "number"}, "runByRunner": {"type": "string"}}, "required": ["id", "date", "distance", "distanceLabel", "duration", "runByRunner"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 994, "date" : "2015-04-29", "distance" : 5.9, "distanceLabel" : "5.9 miles", "duration" : 45.135, "runByRunner" : "Rosio"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "distance": {"type": "number"}, "distanceLabel": {"type": "string"}, "duration": {"type": "number"}, "runByRunner": {"type": "string"}}, "required": ["id", "date", "distance", "distanceLabel", "duration", "runByRunner"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 11267, "cartId" : "a1db2d2c-79aa-4d66-ba56-38faa2ae4cd6", "preferredProducts" : [3956, 813, 2104, 3265, 2039, 2581, 490, 1295, 1358], "productReviews" : [{"productId" : 3319, "reviewText" : "talk about sadness!", "reviewDate" : "2016-09-16T08:20:29.1594363+03:00"}, {"productId" : 404, "reviewText" : "My co-worker Bryton has one of these. He says it looks ragged.", "reviewDate" : "2016-09-08T05:23:34.8263924+03:00"}, {"productId" : 4702, "reviewText" : "My dog loves to play with it.", "reviewDate" : "2018-11-16T23:03:48.5427792+02:00"}, {"productId" : 2821, "reviewText" : "My neighbor Victoria has one of these. She works as a professor and she says it looks menthol.", "reviewDate" : "2018-07-26T08:17:03.0180318+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"avail": {"type": "string"}, "brief": {"type": "array", "items": {"type": "string"}}, "cmd-comment": {"type": "array", "items": {"type": "string"}}, "cmd-syntax": {"type": "array", "items": {"type": "string"}}, "hook": {"type": "string"}, "name": {"type": "string"}, "resp-syntax": {"type": "array", "items": {"type": "string"}}, "support": {"type": "array", "items": {"type": "string"}}}, "required": ["avail", "brief", "cmd-comment", "cmd-syntax", "hook", "name", "resp-syntax", "support"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"avail" : "1.6.0", "brief" : ["This command creates or replaces an IPv4 shared network in the configuration database."], "cmd-comment" : ["The provided list must contain exactly one shared network specification, and must not contain subnets (the \"subnet4\" parameter). The subnets are added to the shared network using the ``remote-subnet4-set`` command. The ``server-tags`` list is mandatory and must contain one or more server tags as strings to explicitly associate the shared network with one or more user-defined servers. It may include the special server tag \"all\" to associate the network with all servers."], "cmd-syntax" : ["{", " \"command\": \"remote-network4-set\",", " \"arguments\": {", " \"shared-networks\": [", " {", " <shared network specification excluding subnets list>", " }", " ],", " \"remote\": {", " <specification of the database to connect to>", " },", " \"server-tags\": [ <first server tag>, <second server tag>, ... ]", " }", "}"], "hook" : "cb_cmds", "name" : "remote-network4-set", "resp-syntax" : ["{", " \"result\": 0,", " \"text\": \"IPv4 shared network successfully set.\"", "}"], "support" : ["kea-dhcp4"]}
json_instruct
{"type": "object", "properties": {"avail": {"type": "string"}, "brief": {"type": "array", "items": {"type": "string"}}, "cmd-comment": {"type": "array", "items": {"type": "string"}}, "cmd-syntax": {"type": "array", "items": {"type": "string"}}, "hook": {"type": "string"}, "name": {"type": "string"}, "resp-syntax": {"type": "array", "items": {"type": "string"}}, "support": {"type": "array", "items": {"type": "string"}}}, "required": ["avail", "brief", "cmd-comment", "cmd-syntax", "hook", "name", "resp-syntax", "support"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"model": {"type": "string"}, "dataset": {"type": "string"}, "rmse_train": {"type": "number"}, "rmse_test": {"type": "number"}, "log_score_train": {"type": "number"}, "log_score_test": {"type": "number"}, "crps_train": {"type": "number"}, "crps_test": {"type": "number"}, "picp_train": {"type": "number"}, "picp_test": {"type": "number"}, "mpiw_train": {"type": "number"}, "mpiw_test": {"type": "number"}}, "required": ["model", "dataset", "rmse_train", "rmse_test", "log_score_train", "log_score_test", "crps_train", "crps_test", "picp_train", "picp_test", "mpiw_train", "mpiw_test"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"model" : "PNN-E", "dataset" : "kin8nm", "rmse_train" : 0.07145457709096642, "rmse_test" : 0.10483292534725201, "log_score_train" : 1.2998565490614244, "log_score_test" : 0.9093521635470255, "crps_train" : 0.03816326264459619, "crps_test" : 0.05675455893849627, "picp_train" : 0.9868131868131869, "picp_test" : 0.9370424597364568, "mpiw_train" : 0.33216493894126337, "mpiw_test" : 0.3973912486716403}
json_instruct
{"type": "object", "properties": {"model": {"type": "string"}, "dataset": {"type": "string"}, "rmse_train": {"type": "number"}, "rmse_test": {"type": "number"}, "log_score_train": {"type": "number"}, "log_score_test": {"type": "number"}, "crps_train": {"type": "number"}, "crps_test": {"type": "number"}, "picp_train": {"type": "number"}, "picp_test": {"type": "number"}, "mpiw_train": {"type": "number"}, "mpiw_test": {"type": "number"}}, "required": ["model", "dataset", "rmse_train", "rmse_test", "log_score_train", "log_score_test", "crps_train", "crps_test", "picp_train", "picp_test", "mpiw_train", "mpiw_test"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"513335100": {"type": "string"}, "513335101": {"type": "string"}, "513335102": {"type": "string"}, "513335200": {"type": "string"}, "513335201": {"type": "string"}, "513335202": {"type": "string"}, "513335203": {"type": "string"}, "513335204": {"type": "string"}, "513335205": {"type": "string"}, "513335206": {"type": "string"}, "513335208": {"type": "string"}, "513335209": {"type": "string"}, "513335210": {"type": "string"}, "513335211": {"type": "string"}, "513335212": {"type": "string"}, "513335213": {"type": "string"}, "513335215": {"type": "string"}, "513335216": {"type": "string"}, "513335217": {"type": "string"}}, "required": ["513335100", "513335101", "513335102", "513335200", "513335201", "513335202", "513335203", "513335204", "513335205", "513335206", "513335208", "513335209", "513335210", "513335211", "513335212", "513335213", "513335215", "513335216", "513335217"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"513335100" : "\u590f\u909b\u9547", "513335101" : "\u4e2d\u54b1\u9547", "513335102" : "\u63aa\u62c9\u9547", "513335200" : "\u62c9\u54c7\u4e61", "513335201" : "\u515a\u5df4\u4e61", "513335202" : "\u7af9\u5df4\u9f99\u4e61", "513335203" : "\u4e2d\u5fc3\u7ed2\u4e61", "513335204" : "\u82cf\u54c7\u9f99\u4e61", "513335205" : "\u660c\u6ce2\u4e61", "513335206" : "\u5730\u5deb\u4e61", "513335208" : "\u4e9a\u65e5\u8d21\u4e61", "513335209" : "\u6ce2\u5bc6\u4e61", "513335210" : "\u83ab\u591a\u4e61", "513335211" : "\u677e\u591a\u4e61", "513335212" : "\u6ce2\u6208\u6eaa\u4e61", "513335213" : "\u7532\u82f1\u4e61", "513335215" : "\u8336\u6d1b\u4e61", "513335216" : "\u5217\u8863\u4e61", "513335217" : "\u5fb7\u8fbe\u4e61"}
json_instruct
{"type": "object", "properties": {"513335100": {"type": "string"}, "513335101": {"type": "string"}, "513335102": {"type": "string"}, "513335200": {"type": "string"}, "513335201": {"type": "string"}, "513335202": {"type": "string"}, "513335203": {"type": "string"}, "513335204": {"type": "string"}, "513335205": {"type": "string"}, "513335206": {"type": "string"}, "513335208": {"type": "string"}, "513335209": {"type": "string"}, "513335210": {"type": "string"}, "513335211": {"type": "string"}, "513335212": {"type": "string"}, "513335213": {"type": "string"}, "513335215": {"type": "string"}, "513335216": {"type": "string"}, "513335217": {"type": "string"}}, "required": ["513335100", "513335101", "513335102", "513335200", "513335201", "513335202", "513335203", "513335204", "513335205", "513335206", "513335208", "513335209", "513335210", "513335211", "513335212", "513335213", "513335215", "513335216", "513335217"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"python.pythonPath" : ".gerenciador\\Scripts\\python.exe"}
json_instruct
{"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"pouchdb.js": {"type": "string"}, "pouchdb.min.js": {"type": "string"}}, "required": ["pouchdb.js", "pouchdb.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pouchdb.js" : "sha256-GzQrzy3O8oVd+PwSQ2F4xo+Y/T5N0lqFAnzEGZGCUQ0=", "pouchdb.min.js" : "sha256-VMfRqCZtDylBMRoC834p8JOZlpdesjz8g6gTSw1sQII="}
json_instruct
{"type": "object", "properties": {"pouchdb.js": {"type": "string"}, "pouchdb.min.js": {"type": "string"}}, "required": ["pouchdb.js", "pouchdb.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"workspaces": {"type": "array", "items": {"type": "string"}}, "private": {"type": "boolean"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"start:all": {"type": "string"}, "start:articles": {"type": "string"}, "start:price": {"type": "string"}}, "required": ["start:all", "start:articles", "start:price"]}, "devDependencies": {"type": "object", "properties": {"concurrently": {"type": "string"}}, "required": ["concurrently"]}}, "required": ["workspaces", "private", "version", "main", "repository", "author", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"workspaces" : ["correlation-id", "logger", "articles-service", "price-calculation-service"], "private" : true, "version" : "1.0.0", "main" : "index.js", "repository" : "[email protected]:evgeni-k/correlation-id-sample.git", "author" : "Evgeni Kisel", "scripts" : {"start:all" : "concurrently -n Article,Price -c red,blue \"yarn start:articles\" \"yarn start:price\"", "start:articles" : "node ./articles-service/index.js", "start:price" : "node ./price-calculation-service/index.js"}, "devDependencies" : {"concurrently" : "4.1.0"}}
json_instruct
{"type": "object", "properties": {"workspaces": {"type": "array", "items": {"type": "string"}}, "private": {"type": "boolean"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"start:all": {"type": "string"}, "start:articles": {"type": "string"}, "start:price": {"type": "string"}}, "required": ["start:all", "start:articles", "start:price"]}, "devDependencies": {"type": "object", "properties": {"concurrently": {"type": "string"}}, "required": ["concurrently"]}}, "required": ["workspaces", "private", "version", "main", "repository", "author", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-config-node": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "eslint-plugin-react-hooks": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb", "eslint-config-airbnb-base", "eslint-config-node", "eslint-config-prettier", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-node", "eslint-plugin-prettier", "eslint-plugin-react", "eslint-plugin-react-hooks", "prettier"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "backendnode", "version" : "0.1.0", "description" : "un chat como el de telegram", "main" : "server.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Tom\u00e1s Gonz\u00e1lez", "license" : "MIT", "devDependencies" : {"eslint" : "^7.17.0", "eslint-config-airbnb" : "^18.2.1", "eslint-config-airbnb-base" : "^14.2.1", "eslint-config-node" : "^4.1.0", "eslint-config-prettier" : "^7.1.0", "eslint-plugin-import" : "^2.22.1", "eslint-plugin-jsx-a11y" : "^6.4.1", "eslint-plugin-node" : "^11.1.0", "eslint-plugin-prettier" : "^3.3.0", "eslint-plugin-react" : "^7.21.5", "eslint-plugin-react-hooks" : "^4.0.0", "prettier" : "^2.2.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-config-node": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "eslint-plugin-node": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "eslint-plugin-react-hooks": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb", "eslint-config-airbnb-base", "eslint-config-node", "eslint-config-prettier", "eslint-plugin-import", "eslint-plugin-jsx-a11y", "eslint-plugin-node", "eslint-plugin-prettier", "eslint-plugin-react", "eslint-plugin-react-hooks", "prettier"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "cover": {"type": "string"}, "issue": {"type": "string"}, "link": {"type": "string"}, "position": {"type": "integer"}}, "required": ["title", "cover", "issue", "link", "position"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"title" : "X-Men: Messiah Complex", "cover" : "https://readcomiconline.to/Uploads/Etc/5-17-2016/21579526.jpg", "issue" : "Full", "link" : "https://readcomiconline.to/Comic/X-Men-Messiah-Complex/Full?id=52843", "position" : 0}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "cover": {"type": "string"}, "issue": {"type": "string"}, "link": {"type": "string"}, "position": {"type": "integer"}}, "required": ["title", "cover", "issue", "link", "position"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "5e064f5beb009468d90bacb4", "_tpl" : "5caf16a2ae92152ac412efbc", "parentId" : "5e064f5beb009468d90bacb1", "slotId" : "mod_sight_front"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"place_name" : "Bernard", "state_name" : "Iowa", "state_abbrv" : "IA", "lat" : "42.3321", "long" : "-90.863"}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Time" : "2020-11-09T02:00:00Z", "Temp" : 19.2, "RelHum" : 59, "WindSpeed" : 4.2, "WindDir" : 110}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"index": {"type": "integer"}, "startTimeInSeconds": {"type": "string"}, "seasonNumber": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "redacted": {"type": "boolean"}, "seasonPassUnlockHash": {"type": "integer"}, "seasonPassProgressionHash": {"type": "integer"}, "displayProperties": {"type": "object", "properties": {"hasIcon": {"type": "boolean"}, "description": {"type": "string"}, "name": {"type": "string"}}, "required": ["hasIcon", "description", "name"]}, "hash": {"type": "integer"}}, "required": ["index", "startTimeInSeconds", "seasonNumber", "blacklisted", "redacted", "seasonPassUnlockHash", "seasonPassProgressionHash", "displayProperties", "hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index" : 3, "startTimeInSeconds" : "0", "seasonNumber" : 4, "blacklisted" : false, "redacted" : false, "seasonPassUnlockHash" : 0, "seasonPassProgressionHash" : 0, "displayProperties" : {"hasIcon" : false, "description" : "A new season has begun! Roam the Tangled Shore, avenge the fall of a legend, and walk the right side of wrong in Gambit.", "name" : "Season of the Outlaw"}, "hash" : 2026773320}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "startTimeInSeconds": {"type": "string"}, "seasonNumber": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "redacted": {"type": "boolean"}, "seasonPassUnlockHash": {"type": "integer"}, "seasonPassProgressionHash": {"type": "integer"}, "displayProperties": {"type": "object", "properties": {"hasIcon": {"type": "boolean"}, "description": {"type": "string"}, "name": {"type": "string"}}, "required": ["hasIcon", "description", "name"]}, "hash": {"type": "integer"}}, "required": ["index", "startTimeInSeconds", "seasonNumber", "blacklisted", "redacted", "seasonPassUnlockHash", "seasonPassProgressionHash", "displayProperties", "hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"DifficultyLevels": {"type": "array", "items": {"type": "string"}}}, "required": ["DifficultyLevels"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"DifficultyLevels" : ["TheComputerIsACheatingBastard", "StrategyGame", "RPG", "ActionGame", "NintendoHard", "IdiosyncraticDifficultyLevels", "NonIndicativeDifficulty", "NintendoHard", "RankInflation", "HarderThanHard", "StoryDifficultySetting", "ArrangeMode", "OmnipresentTropes", "EasyModeMockery", "MercyMode", "NonIndicativeDifficulty", "VideoGameDifficultyTropes", "EasierThanEasy", "HarderThanHard", "UnlockableContent", "UnlockableDifficultyLevels", "Mooks", "NumericalHard", "NumericalHard"]}
json_instruct
{"type": "object", "properties": {"DifficultyLevels": {"type": "array", "items": {"type": "string"}}}, "required": ["DifficultyLevels"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Time" : "2021-08-14T05:00:00Z", "Temp" : 24.5, "RelHum" : 72, "WindSpeed" : 0.4, "WindDir" : 325}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"uuid" : "296999ef-822d-45b5-9a17-23c039ae19dd", "befores" : [{"name" : "json_groups", "status" : "passed", "start" : 1632510958070, "stop" : 1632510958070}], "start" : 1632510958070, "stop" : 1632510960303}
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "category": {"type": "string"}, "identifier": {"type": "string"}, "namespace": {"type": "string"}, "github": {"type": "string"}, "releases": {"type": "array", "items": {"type": "object", "properties": {"version": {"type": "string"}, "published": {"type": "string"}, "win32": {"type": "object", "properties": {"url": {"type": "string"}, "files": {"type": "object", "properties": {"libfillborders.dll": {"type": "array", "items": {"type": "string"}}}, "required": ["libfillborders.dll"]}}, "required": ["url", "files"]}, "win64": {"type": "object", "properties": {"url": {"type": "string"}, "files": {"type": "object", "properties": {"libfillborders.dll": {"type": "array", "items": {"type": "string"}}}, "required": ["libfillborders.dll"]}}, "required": ["url", "files"]}}, "required": ["version", "published", "win32", "win64"]}}}, "required": ["name", "type", "description", "website", "category", "identifier", "namespace", "github", "releases"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "fillborders", "type" : "VSPlugin", "description" : "A simple filter that fills the borders of a clip, without changing the clip's dimensions", "website" : "https://github.com/dubhater/vapoursynth-fillborders", "category" : "Other", "identifier" : "com.nodame.fillborders", "namespace" : "fb", "github" : "https://github.com/dubhater/vapoursynth-fillborders", "releases" : [{"version" : "v2", "published" : "2021-01-26T15:05:53Z", "win32" : {"url" : "https://github.com/dubhater/vapoursynth-fillborders/releases/download/v2/vapoursynth-fillborders-v2-win32.7z", "files" : {"libfillborders.dll" : ["libfillborders.dll", "82861859f23d20fcfe6263fe59dab111eea0eeeae0f7ec6273649da5121e5e94"]}}, "win64" : {"url" : "https://github.com/dubhater/vapoursynth-fillborders/releases/download/v2/vapoursynth-fillborders-v2-win64.7z", "files" : {"libfillborders.dll" : ["libfillborders.dll", "f89706c65bc9c42b3585e80f474518ffefea15508a53d39010bdb41a655f344f"]}}}, {"version" : "v1.0", "published" : "2013-12-15T14:58:20Z", "win32" : {"url" : "https://github.com/dubhater/vapoursynth-fillborders/releases/download/v1.0/vapoursynth-fillborders-v1.0-win32.7z", "files" : {"libfillborders.dll" : ["libfillborders.dll", "d9b01e551c8e6562dd43a83cd504152557cce34d4b73a629758f8247fac57a87"]}}, "win64" : {"url" : "https://github.com/dubhater/vapoursynth-fillborders/releases/download/v1.0/vapoursynth-fillborders-v1.0-win64.7z", "files" : {"libfillborders.dll" : ["libfillborders.dll", "448e55db262f3271a289b2d3458e1c882d9b836732e847dd6292731afe3af95e"]}}}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "category": {"type": "string"}, "identifier": {"type": "string"}, "namespace": {"type": "string"}, "github": {"type": "string"}, "releases": {"type": "array", "items": {"type": "object", "properties": {"version": {"type": "string"}, "published": {"type": "string"}, "win32": {"type": "object", "properties": {"url": {"type": "string"}, "files": {"type": "object", "properties": {"libfillborders.dll": {"type": "array", "items": {"type": "string"}}}, "required": ["libfillborders.dll"]}}, "required": ["url", "files"]}, "win64": {"type": "object", "properties": {"url": {"type": "string"}, "files": {"type": "object", "properties": {"libfillborders.dll": {"type": "array", "items": {"type": "string"}}}, "required": ["libfillborders.dll"]}}, "required": ["url", "files"]}}, "required": ["version", "published", "win32", "win64"]}}}, "required": ["name", "type", "description", "website", "category", "identifier", "namespace", "github", "releases"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "backgroundImage": {"type": "string"}, "prev": {"type": "integer"}, "next": {"type": "integer"}}, "required": ["title", "backgroundImage", "prev", "next"]}}}, "required": ["items"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"items" : [{"title" : "koira", "backgroundImage" : "images/slider-1.jpg", "prev" : 3, "next" : 1}, {"title" : "koira", "backgroundImage" : "images/slider-2.jpg", "prev" : 0, "next" : 2}, {"title" : "koira", "backgroundImage" : "images/slider-3.jpg", "prev" : 1, "next" : 3}, {"title" : "koira", "backgroundImage" : "images/slider-4.jpg", "prev" : 2, "next" : 4}, {"title" : "koira", "backgroundImage" : "images/slider-5.jpg", "prev" : 3, "next" : 0}]}
json_instruct
{"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "backgroundImage": {"type": "string"}, "prev": {"type": "integer"}, "next": {"type": "integer"}}, "required": ["title", "backgroundImage", "prev", "next"]}}}, "required": ["items"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "5c2e47d254e18f905d56cf947059d3499d28218e"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "support": {"type": "object", "properties": {"email": {"type": "string"}, "irc": {"type": "string"}}, "required": ["email", "irc"]}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "minimum-stability": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Bumble\\Shell\\": {"type": "string"}}, "required": ["Bumble\\Shell\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "homepage", "support", "license", "keywords", "version", "minimum-stability", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bumble/shell", "description" : "Contains classes to manage command line arguments.", "homepage" : "http://bumble.attibee.com", "support" : {"email" : "[email protected]", "irc" : "irc://irc.freenode.org/attibee-bumble"}, "license" : "Apache-2.0", "keywords" : ["attibee", "bumble", "shell"], "version" : "1.0-dev", "minimum-stability" : "dev", "autoload" : {"psr-4" : {"Bumble\\Shell\\" : "src/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "support": {"type": "object", "properties": {"email": {"type": "string"}, "irc": {"type": "string"}}, "required": ["email", "irc"]}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "minimum-stability": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Bumble\\Shell\\": {"type": "string"}}, "required": ["Bumble\\Shell\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "homepage", "support", "license", "keywords", "version", "minimum-stability", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "b4a68e1287b2f4b2ca1c3dae889c0a36e4864239"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"TotalResults": {"type": "integer"}, "ReturnedResults": {"type": "integer"}, "Results": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "CountryId": {"type": "integer"}, "Name": {"type": "string"}, "OwnershipDescription": {"type": "string"}, "HoldingDescription": {"type": "string"}, "HoldingUnit": {"type": "string"}, "Created": {"type": "string"}, "CanIssueShares": {"type": "boolean"}}, "required": ["ID", "CountryId", "Name", "OwnershipDescription", "HoldingDescription", "HoldingUnit", "Created", "CanIssueShares"]}}}, "required": ["TotalResults", "ReturnedResults", "Results"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"TotalResults" : 2, "ReturnedResults" : 2, "Results" : [{"ID" : 1, "CountryId" : 2, "Name" : "sample string 3", "OwnershipDescription" : "sample string 4", "HoldingDescription" : "sample string 5", "HoldingUnit" : "sample string 6", "Created" : "2017-07-19", "CanIssueShares" : true}, {"ID" : 4, "CountryId" : 7, "Name" : "sample string 9", "OwnershipDescription" : "sample string 10", "HoldingDescription" : "sample string 11", "HoldingUnit" : "sample string 12", "Created" : "2015-01-16", "CanIssueShares" : false}]}
json_instruct
{"type": "object", "properties": {"TotalResults": {"type": "integer"}, "ReturnedResults": {"type": "integer"}, "Results": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "CountryId": {"type": "integer"}, "Name": {"type": "string"}, "OwnershipDescription": {"type": "string"}, "HoldingDescription": {"type": "string"}, "HoldingUnit": {"type": "string"}, "Created": {"type": "string"}, "CanIssueShares": {"type": "boolean"}}, "required": ["ID", "CountryId", "Name", "OwnershipDescription", "HoldingDescription", "HoldingUnit", "Created", "CanIssueShares"]}}}, "required": ["TotalResults", "ReturnedResults", "Results"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"subscription_id": {"type": "string"}, "resource_group": {"type": "string"}, "workspace_name": {"type": "string"}}, "required": ["subscription_id", "resource_group", "workspace_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"subscription_id" : "b73995e3-caad-4882-8644-f2175789c3ff", "resource_group" : "azure-mlops", "workspace_name" : "savanh-ml-ops"}
json_instruct
{"type": "object", "properties": {"subscription_id": {"type": "string"}, "resource_group": {"type": "string"}, "workspace_name": {"type": "string"}}, "required": ["subscription_id", "resource_group", "workspace_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "en": {"type": "string"}, "ru": {"type": "string"}, "iso3": {"type": "string"}, "iso2": {"type": "string"}, "phoneCode": {"type": "string"}, "capital": {"type": "null"}, "currency": {"type": "string"}}, "required": ["id", "en", "ru", "iso3", "iso2", "phoneCode", "capital", "currency"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "728efff1-6d07-4db9-a43c-d60befeeb2dc", "en" : "American Samoa", "ru" : "\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0435 \u0421\u0430\u043c\u043e\u0430", "iso3" : "ASM", "iso2" : "AS", "phoneCode" : "+1-684", "capital" : null, "currency" : "USD"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "en": {"type": "string"}, "ru": {"type": "string"}, "iso3": {"type": "string"}, "iso2": {"type": "string"}, "phoneCode": {"type": "string"}, "capital": {"type": "null"}, "currency": {"type": "string"}}, "required": ["id", "en", "ru", "iso3", "iso2", "phoneCode", "capital", "currency"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "76720", "place_name" : "San Clemente", "place_type" : "Pueblo", "county" : "Pedro Escobedo", "state" : "Quer\u00e9taro", "city" : ""}, {"postal_code" : "76720", "place_name" : "Negro", "place_type" : "Colonia", "county" : "Pedro Escobedo", "state" : "Quer\u00e9taro", "city" : ""}, {"postal_code" : "76720", "place_name" : "Tepetate", "place_type" : "Colonia", "county" : "Pedro Escobedo", "state" : "Quer\u00e9taro", "city" : ""}]
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"jquery-i18next.js": {"type": "string"}, "jquery-i18next.min.js": {"type": "string"}}, "required": ["jquery-i18next.js", "jquery-i18next.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jquery-i18next.js" : "sha256-wFKwbmY+2pdkP/8dhuqf5U7xdX6lMZ+iFtMesBq+gw0=", "jquery-i18next.min.js" : "sha256-59UAtLtN2A6P/uMbpKzLbKwvDGqDTDrhVlpRSk8bm5Y="}
json_instruct
{"type": "object", "properties": {"jquery-i18next.js": {"type": "string"}, "jquery-i18next.min.js": {"type": "string"}}, "required": ["jquery-i18next.js", "jquery-i18next.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"api": {"type": "object", "properties": {"endpoint": {"type": "string"}}, "required": ["endpoint"]}, "telegram": {"type": "object", "properties": {"key": {"type": "string"}}, "required": ["key"]}, "database": {"type": "object", "properties": {"dialect": {"type": "string"}, "path": {"type": "string"}}, "required": ["dialect", "path"]}, "loglevel": {"type": "string"}, "enable_metrics": {"type": "boolean"}}, "required": ["api", "telegram", "database", "loglevel", "enable_metrics"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"api" : {"endpoint" : "https://marudor.de/api"}, "telegram" : {"key" : ""}, "database" : {"dialect" : "postgres", "path" : "host=postgres port=myport user=bahn-bot dbname=bahn-bot password=supersecretpassword sslmode=disable"}, "loglevel" : "trace", "enable_metrics" : true}
json_instruct
{"type": "object", "properties": {"api": {"type": "object", "properties": {"endpoint": {"type": "string"}}, "required": ["endpoint"]}, "telegram": {"type": "object", "properties": {"key": {"type": "string"}}, "required": ["key"]}, "database": {"type": "object", "properties": {"dialect": {"type": "string"}, "path": {"type": "string"}}, "required": ["dialect", "path"]}, "loglevel": {"type": "string"}, "enable_metrics": {"type": "boolean"}}, "required": ["api", "telegram", "database", "loglevel", "enable_metrics"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"core": {"type": "string"}, "users": {"type": "string"}, "timers": {"type": "string"}, "keywords": {"type": "string"}, "customcommands": {"type": "string"}, "event-listeners": {"type": "string"}, "ranks": {"type": "string"}, "songs": {"type": "string"}, "viewers": {"type": "string"}, "alias": {"type": "string"}, "cooldown": {"type": "string"}, "highlights": {"type": "string"}, "price": {"type": "string"}, "logger": {"type": "string"}, "systems": {"type": "string"}, "permissions": {"type": "string"}, "translations": {"type": "string"}, "moderation": {"type": "string"}, "overlays": {"type": "string"}, "gallery": {"type": "string"}, "games": {"type": "string"}, "spotify": {"type": "string"}, "integrations": {"type": "string"}, "custom-variables": {"type": "string"}, "registry": {"type": "string"}, "quotes": {"type": "string"}, "settings": {"type": "string"}, "commercial": {"type": "string"}, "bets": {"type": "string"}, "points": {"type": "string"}, "raffles": {"type": "string"}, "queue": {"type": "string"}, "playlist": {"type": "string"}, "bannedsongs": {"type": "string"}, "duel": {"type": "string"}, "fightme": {"type": "string"}, "seppuku": {"type": "string"}, "gamble": {"type": "string"}, "roulette": {"type": "string"}, "wheeloffortune": {"type": "string"}, "heist": {"type": "string"}, "oauth": {"type": "string"}}, "required": ["core", "users", "timers", "keywords", "customcommands", "event-listeners", "ranks", "songs", "viewers", "alias", "cooldown", "highlights", "price", "logger", "systems", "permissions", "translations", "moderation", "overlays", "gallery", "games", "spotify", "integrations", "custom-variables", "registry", "quotes", "settings", "commercial", "bets", "points", "raffles", "queue", "playlist", "bannedsongs", "duel", "fightme", "seppuku", "gamble", "roulette", "wheeloffortune", "heist", "oauth"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"core" : "Obecn\u00e9", "users" : "U\u017eivatel\u00e9", "timers" : "\u010casova\u010de", "keywords" : "Kl\u00ed\u010dov\u00e1 slova", "customcommands" : "Vlastn\u00ed p\u0159\u00edkazy", "event-listeners" : "Ud\u00e1losti", "ranks" : "Hodnosti", "songs" : "P\u00edsni\u010dky", "viewers" : "Div\u00e1ci", "alias" : "Aliasy", "cooldown" : "Cooldowny", "highlights" : "Highlighty", "price" : "Cena", "logger" : "Logy", "systems" : "Syst\u00e9my", "permissions" : "Opr\u00e1vn\u011bn\u00ed", "translations" : "Vlastn\u00ed p\u0159eklady", "moderation" : "Pravidla v chatu", "overlays" : "Overlaye", "gallery" : "Galerie m\u00e9di\u00ed", "games" : "Hry", "spotify" : "Spotify", "integrations" : "Integrace", "custom-variables" : "Vlastn\u00ed prom\u011bnn\u00e9", "registry" : "Registr", "quotes" : "Cit\u00e1ty", "settings" : "Nastaven\u00ed", "commercial" : "Reklamy", "bets" : "S\u00e1zky", "points" : "Body", "raffles" : "Tombola", "queue" : "Fronta", "playlist" : "Playlist", "bannedsongs" : "Zak\u00e1zan\u00e9 p\u00edsn\u011b", "duel" : "Duel", "fightme" : "FightMe", "seppuku" : "Seppuku", "gamble" : "Gamble", "roulette" : "Roulette", "wheeloffortune" : "Kolo \u0161t\u011bst\u00ed", "heist" : "Heist", "oauth" : "OAuth"}
json_instruct
{"type": "object", "properties": {"core": {"type": "string"}, "users": {"type": "string"}, "timers": {"type": "string"}, "keywords": {"type": "string"}, "customcommands": {"type": "string"}, "event-listeners": {"type": "string"}, "ranks": {"type": "string"}, "songs": {"type": "string"}, "viewers": {"type": "string"}, "alias": {"type": "string"}, "cooldown": {"type": "string"}, "highlights": {"type": "string"}, "price": {"type": "string"}, "logger": {"type": "string"}, "systems": {"type": "string"}, "permissions": {"type": "string"}, "translations": {"type": "string"}, "moderation": {"type": "string"}, "overlays": {"type": "string"}, "gallery": {"type": "string"}, "games": {"type": "string"}, "spotify": {"type": "string"}, "integrations": {"type": "string"}, "custom-variables": {"type": "string"}, "registry": {"type": "string"}, "quotes": {"type": "string"}, "settings": {"type": "string"}, "commercial": {"type": "string"}, "bets": {"type": "string"}, "points": {"type": "string"}, "raffles": {"type": "string"}, "queue": {"type": "string"}, "playlist": {"type": "string"}, "bannedsongs": {"type": "string"}, "duel": {"type": "string"}, "fightme": {"type": "string"}, "seppuku": {"type": "string"}, "gamble": {"type": "string"}, "roulette": {"type": "string"}, "wheeloffortune": {"type": "string"}, "heist": {"type": "string"}, "oauth": {"type": "string"}}, "required": ["core", "users", "timers", "keywords", "customcommands", "event-listeners", "ranks", "songs", "viewers", "alias", "cooldown", "highlights", "price", "logger", "systems", "permissions", "translations", "moderation", "overlays", "gallery", "games", "spotify", "integrations", "custom-variables", "registry", "quotes", "settings", "commercial", "bets", "points", "raffles", "queue", "playlist", "bannedsongs", "duel", "fightme", "seppuku", "gamble", "roulette", "wheeloffortune", "heist", "oauth"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"900380171": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380172": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380173": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380174": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380175": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380176": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380177": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380178": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380179": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380180": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900380171", "900380172", "900380173", "900380174", "900380175", "900380176", "900380177", "900380178", "900380179", "900380180"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900380171" : {"nama" : "TPS 01", "dapil" : [3303, 13305, 2331603]}, "900380172" : {"nama" : "TPS 02", "dapil" : [3303, 13305, 2331603]}, "900380173" : {"nama" : "TPS 03", "dapil" : [3303, 13305, 2331603]}, "900380174" : {"nama" : "TPS 04", "dapil" : [3303, 13305, 2331603]}, "900380175" : {"nama" : "TPS 05", "dapil" : [3303, 13305, 2331603]}, "900380176" : {"nama" : "TPS 06", "dapil" : [3303, 13305, 2331603]}, "900380177" : {"nama" : "TPS 07", "dapil" : [3303, 13305, 2331603]}, "900380178" : {"nama" : "TPS 08", "dapil" : [3303, 13305, 2331603]}, "900380179" : {"nama" : "TPS 09", "dapil" : [3303, 13305, 2331603]}, "900380180" : {"nama" : "TPS 10", "dapil" : [3303, 13305, 2331603]}}
json_instruct
{"type": "object", "properties": {"900380171": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380172": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380173": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380174": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380175": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380176": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380177": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380178": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380179": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900380180": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900380171", "900380172", "900380173", "900380174", "900380175", "900380176", "900380177", "900380178", "900380179", "900380180"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"status": {"type": "string"}, "knowledge": {"type": "array", "items": {"type": "string"}}, "degree_of_difficulty": {"type": "integer"}, "explain": {"type": "string"}, "question": {"type": "string"}, "source": {"type": "string"}, "answer": {"type": "string"}, "type": {"type": "string"}, "q_number": {"type": "integer"}}, "required": ["status", "knowledge", "degree_of_difficulty", "explain", "question", "source", "answer", "type", "q_number"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status" : "ok", "knowledge" : ["\u6b7b\u9501"], "degree_of_difficulty" : 1, "explain" : "1\uff09\uff084\u5206\uff0cb\u6700\u59272\u5206\uff1b\u987a\u5e8f2\u5206\uff09 b)\u65b9\u6cd5\u5177\u6709\u6700\u5927\u7684\u5e76\u884c\u6027\u3002 b>a>c\n2) \u5f53\u524d\u7cfb\u7edf\u5904\u4e8e\u5b89\u5168\u72b6\u6001\uff082\u5206\uff09\u3002\u56e0\u4e3a p2,p0,p1,p3,p4\u662f\u4e00\u4e2a\u5b89\u5168\u7684\u6267\u884c\u5e8f\u5217\u3002\uff082\u5206\uff09\n\u5982\u679c\u7cfb\u7edf\u4e2d\u7684\u53ef\u5229\u7528\u8d44\u6e90\u4e3a\uff080, 6, 2\uff09\uff0c\u5219\u627e\u4e0d\u5230\u4e00\u4e2a\u5b89\u5168\u6267\u884c\u5e8f\u5217\uff082\u5206\uff09\uff0c\u56e0\u4e3ap1\u9700\u8981B\u8d44\u6e90\u6570\u91cf7,p2\u9700\u8981A\u8d44\u6e90\u6570\u91cf1,\u5f62\u6210\u4e86\u6b7b\u9501\uff082\u5206\uff09\u3002\n", "question" : "(20140606-\u671f\u672b\u8003\u8bd5\u8bd5\u9898&\u53c2\u8003\u7b54\u6848.docx)\u6b7b\u9501\n(12\u5206)\u6b7b\u9501\u662f\u64cd\u4f5c\u7cfb\u7edf\u4e2d\u8d44\u6e90\u5171\u4eab\u65f6\u9762\u4e34\u7684\u4e00\u4e2a\u96be\u9898\u3002\u8bf7\u56de\u7b54\u4e0b\u5217\u4e0e\u6b7b\u9501\u76f8\u5173\u7684\u95ee\u9898\u3002\n1\uff09\u8bbe\u7cfb\u7edf\u4e2d\u6709\u4e0b\u8ff0\u89e3\u51b3\u6b7b\u9501\u7684\u65b9\u6cd5\uff1a\na)\u94f6\u884c\u5bb6\u7b97\u6cd5\uff1b\nb)\u68c0\u6d4b\u6b7b\u9501\uff0c\u7ec8\u6b62\u5904\u4e8e\u6b7b\u9501\u72b6\u6001\u7684\u8fdb\u7a0b\uff0c\u91ca\u653e\u8be5\u8fdb\u7a0b\u5360\u6709\u7684\u8d44\u6e90\uff1b\nc)\u8d44\u6e90\u9884\u5206\u914d\u3002\n\u7b80\u8ff0\u54ea\u79cd\u529e\u6cd5\u5141\u8bb8\u6700\u5927\u7684\u5e76\u53d1\u6027\uff0c\u5373\u54ea\u79cd\u529e\u6cd5\u5141\u8bb8\u66f4\u591a\u7684\u8fdb\u7a0b\u65e0\u7b49\u5f85\u5730\u5411\u524d\u63a8\u8fdb\uff1f\u8bf7\u6309\u201c\u5e76\u53d1\u6027\u201d\u4ece\u5927\u5230\u5c0f\u5bf9\u4e0a\u8ff0\u4e09\u79cd\u529e\u6cd5\u8fdb\u884c\u6392\u5e8f\u3002\n2\uff09\u5047\u8bbe\u4e00\u4e2a\u4f7f\u7528\u94f6\u884c\u5bb6\u7b97\u6cd5\u7684\u7cfb\u7edf\uff0c\u5f53\u524d\u67095\u4e2a\u8fdb\u7a0bP0, P1, P2, P3, P4\uff0c\u7cfb\u7edf\u4e2d\u6709\u4e09\u7c7b\u8d44\u6e90A\u3001B\u3001C\uff0c\u5047\u8bbe\u5728\u67d0\u65f6\u523b\u6709\u5982\u4e0b\u72b6\u6001\uff1a\n| |Allocation| Max |Available|\n| | A | B | C|A|B|C| A | B| C|\n|P0| 0 | 0 | 3|0|0|4| 1 | 4| 0|\n|P1| 1 | 0 | 0|1|7|5| | | |\n|P2| 1 | 3 | 5|2|3|5| | | |\n|P3| 0 | 0 | 2|0|6|4| | | |\n|P4| 0 | 0 | 1|0|6|5| | | |\n\u8bf7\u95ee\u5f53\u524d\u7cfb\u7edf\u662f\u5426\u51fa\u4e8e\u5b89\u5168\u72b6\u6001\uff1f\u5982\u679c\u7cfb\u7edf\u4e2d\u7684\u53ef\u5229\u7528\u8d44\u6e90\u4e3a\uff080, 6,\n2\uff09\uff0c\u7cfb\u7edf\u662f\u5426\u5b89\u5168\uff1f\u5982\u679c\u7cfb\u7edf\u5904\u5728\u5b89\u5168\u72b6\u6001\uff0c\u8bf7\u7ed9\u51fa\u5b89\u5168\u5e8f\u5217\uff1b\u5982\u679c\u7cfb\u7edf\u5904\u5728\u975e\u5b89\u5168\u72b6\u6001\uff0c\u8bf7\u7b80\u8981\u8bf4\u660e\u539f\u56e0\u3002 \n", "source" : "\u7f51\u7edc", "answer" : "1\uff09\uff084\u5206\uff0cb\u6700\u59272\u5206\uff1b\u987a\u5e8f2\u5206\uff09 b)\u65b9\u6cd5\u5177\u6709\u6700\u5927\u7684\u5e76\u884c\u6027\u3002 b>a>c\n2) \u5f53\u524d\u7cfb\u7edf\u5904\u4e8e\u5b89\u5168\u72b6\u6001\uff082\u5206\uff09\u3002\u56e0\u4e3a p2,p0,p1,p3,p4\u662f\u4e00\u4e2a\u5b89\u5168\u7684\u6267\u884c\u5e8f\u5217\u3002\uff082\u5206\uff09\n\u5982\u679c\u7cfb\u7edf\u4e2d\u7684\u53ef\u5229\u7528\u8d44\u6e90\u4e3a\uff080, 6, 2\uff09\uff0c\u5219\u627e\u4e0d\u5230\u4e00\u4e2a\u5b89\u5168\u6267\u884c\u5e8f\u5217\uff082\u5206\uff09\uff0c\u56e0\u4e3ap1\u9700\u8981B\u8d44\u6e90\u6570\u91cf7,p2\u9700\u8981A\u8d44\u6e90\u6570\u91cf1,\u5f62\u6210\u4e86\u6b7b\u9501\uff082\u5206\uff09\u3002\n", "type" : "question_answer", "q_number" : 845}
json_instruct
{"type": "object", "properties": {"status": {"type": "string"}, "knowledge": {"type": "array", "items": {"type": "string"}}, "degree_of_difficulty": {"type": "integer"}, "explain": {"type": "string"}, "question": {"type": "string"}, "source": {"type": "string"}, "answer": {"type": "string"}, "type": {"type": "string"}, "q_number": {"type": "integer"}}, "required": ["status", "knowledge", "degree_of_difficulty", "explain", "question", "source", "answer", "type", "q_number"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"ID": {"type": "string"}, "Name": {"type": "string"}, "Category": {"type": "string"}, "Description": {"type": "string"}, "Severity": {"type": "integer"}, "Scope": {"type": "string"}, "Expression": {"type": "string"}, "CompatibilityLevel": {"type": "integer"}}, "required": ["ID", "Name", "Category", "Description", "Severity", "Scope", "Expression", "CompatibilityLevel"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ID" : "FILTER_COLUMN_VALUES", "Name" : "[Measures Expressions] [Performance] Filter column values with proper syntax", "Category" : "3. Measures and Expressions", "Description" : "Instead of using this pattern FILTER('Table','Table'[Column]=\"Value\") for the filter parameters of a CALCULATE or CALCULATETABLE function, use one of the options below. As far as whether to use the KEEPFILTERS function, see the second reference link below.\r\n\r\nOption 1: KEEPFILTERS('Table'[Column]=\"Value\")\r\nOption 2: 'Table'[Column]=\"Value\"\r\n\r\nReference: https://docs.microsoft.com/power-bi/guidance/dax-avoid-avoid-filter-as-filter-argument\r\nReference: https://www.sqlbi.com/articles/using-keepfilters-in-dax/", "Severity" : 2, "Scope" : "Measure, CalculatedColumn, CalculationItem", "Expression" : "RegEx.IsMatch(Expression,\"(?i)CALCULATE\\s*\\(\\s*[^,]+,\\s*(?i)FILTER\\s*\\(\\s*\\'*[A-Za-z0-9 _]+'*\\s*,\\s*\\'*[A-Za-z0-9 _]+\\'*\\[[A-Za-z0-9 _]+\\]\")\r\nor\r\nRegEx.IsMatch(Expression,\"(?i)CALCULATETABLE\\s*\\([^,]*,\\s*(?i)FILTER\\s*\\(\\s*\\'*[A-Za-z0-9 _]+\\'*,\\s*\\'*[A-Za-z0-9 _]+\\'*\\[[A-Za-z0-9 _]+\\]\")", "CompatibilityLevel" : 1200}
json_instruct
{"type": "object", "properties": {"ID": {"type": "string"}, "Name": {"type": "string"}, "Category": {"type": "string"}, "Description": {"type": "string"}, "Severity": {"type": "integer"}, "Scope": {"type": "string"}, "Expression": {"type": "string"}, "CompatibilityLevel": {"type": "integer"}}, "required": ["ID", "Name", "Category", "Description", "Severity", "Scope", "Expression", "CompatibilityLevel"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"D6GRK6": {"type": "string"}, "CAS2_FILAD": {"type": "string"}, "CRISPR-associated endoribonuclease Cas2": {"type": "string"}, "cas2": {"type": "string"}}, "required": ["D6GRK6", "CAS2_FILAD", "CRISPR-associated endoribonuclease Cas2", "cas2"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"D6GRK6" : "D6GRK6", "CAS2_FILAD" : "D6GRK6", "CRISPR-associated endoribonuclease Cas2" : "D6GRK6", "cas2" : "D6GRK6"}
json_instruct
{"type": "object", "properties": {"D6GRK6": {"type": "string"}, "CAS2_FILAD": {"type": "string"}, "CRISPR-associated endoribonuclease Cas2": {"type": "string"}, "cas2": {"type": "string"}}, "required": ["D6GRK6", "CAS2_FILAD", "CRISPR-associated endoribonuclease Cas2", "cas2"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "activities": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "time": {"type": "integer"}}, "required": ["id", "time"]}}}, "required": ["id", "name", "activities"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "all-round-routine", "name" : "All Round Routine", "activities" : [{"id" : "warm-up", "time" : 300}, {"id" : "fh-drive", "time" : 300}, {"id" : "fh-defense", "time" : 300}, {"id" : "bh-drive", "time" : 300}, {"id" : "bh-defence", "time" : 300}, {"id" : "rest", "time" : 120}, {"id" : "fh-volley", "time" : 300}, {"id" : "bh-volley", "time" : 300}, {"id" : "fh-drop", "time" : 120}, {"id" : "bh-drop", "time" : 120}, {"id" : "rest", "time" : 120}, {"id" : "freestyle", "time" : 600}, {"id" : "court-sprints", "time" : 120}, {"id" : "cool-down", "time" : 300}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "activities": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "time": {"type": "integer"}}, "required": ["id", "time"]}}}, "required": ["id", "name", "activities"], "$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#"}
["buster-ci"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"kind" : "Property", "name" : "CSSNamespaceRule.namespaceURI", "href" : "https://developer.mozilla.org/en-US/docs/Web/API/CSSNamespaceRule/namespaceURI", "description" : "The CSSNamespaceRule.namespaceURI read-only property returns a DOMString containing the text of the URI of the given namespace.", "refs" : [{"name" : "CSS Object Model (CSSOM)", "href" : "https://drafts.csswg.org/cssom/#dom-cssnamespacerule-namespaceuri", "description" : "namespaceURI - CSS Object Model (CSSOM)"}]}
json_instruct
{"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [633.165, 249.112, 1, 639.183, 290.862, 1, 603.106, 296.135, 1, 585.107, 336.305, 1, 593.143, 365.127, 1, 668.98, 288.403, 1, 688.678, 324.636, 1, 675.076, 362.891, 1, 620.418, 365.331, 1, 616.681, 425.512, 1, 613.082, 483.303, 1, 655.096, 369.886, 1, 644.772, 434.411, 1, 643.236, 486.27, 1, 627.609, 247.505, 1, 643.29, 246.353, 1, 616.763, 253.108, 1, 651.784, 249.401, 1], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "rule": {"type": "string"}, "severity": {"type": "string"}, "text": {"type": "string"}}, "required": ["line", "column", "rule", "severity", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"line" : 12, "column" : 6, "rule" : "stylus/selector-list-comma-space-after", "severity" : "error", "text" : "Unexpected whitespace after \",\" in a single-line list (stylus/selector-list-comma-space-after)"}, {"line" : 17, "column" : 6, "rule" : "stylus/selector-list-comma-space-after", "severity" : "error", "text" : "Unexpected whitespace after \",\" in a single-line list (stylus/selector-list-comma-space-after)"}, {"line" : 37, "column" : 21, "rule" : "stylus/selector-list-comma-space-after", "severity" : "error", "text" : "Unexpected whitespace after \",\" in a single-line list (stylus/selector-list-comma-space-after)"}, {"line" : 56, "column" : 8, "rule" : "stylus/selector-list-comma-space-after", "severity" : "error", "text" : "Unexpected whitespace after \",\" in a single-line list (stylus/selector-list-comma-space-after)"}, {"line" : 61, "column" : 8, "rule" : "stylus/selector-list-comma-space-after", "severity" : "error", "text" : "Unexpected whitespace after \",\" in a single-line list (stylus/selector-list-comma-space-after)"}, {"line" : 81, "column" : 23, "rule" : "stylus/selector-list-comma-space-after", "severity" : "error", "text" : "Unexpected whitespace after \",\" in a single-line list (stylus/selector-list-comma-space-after)"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "rule": {"type": "string"}, "severity": {"type": "string"}, "text": {"type": "string"}}, "required": ["line", "column", "rule", "severity", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"date": {"type": "string"}, "dataset": {"type": "string"}, "split": {"type": "integer"}, "num_layers": {"type": "integer"}, "model_name": {"type": "string"}, "num_inducing": {"type": "integer"}, "batch_size": {"type": "integer"}, "num_epochs": {"type": "integer"}, "seed": {"type": "integer"}, "rmse": {"type": "number"}, "mse": {"type": "number"}, "nlpd": {"type": "number"}, "commit": {"type": "string"}}, "required": ["date", "dataset", "split", "num_layers", "model_name", "num_inducing", "batch_size", "num_epochs", "seed", "rmse", "mse", "nlpd", "commit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"date" : "Jan28_174113", "dataset" : "Energy", "split" : 1, "num_layers" : 2, "model_name" : "dgp-2", "num_inducing" : 256, "batch_size" : 1024, "num_epochs" : 1000, "seed" : 156249301, "rmse" : 0.04734681081617334, "mse" : 0.002241720494462509, "nlpd" : -1.144192416936825, "commit" : "1251726e88719b7970fa7c4e515c9c62d1f090a9"}
json_instruct
{"type": "object", "properties": {"date": {"type": "string"}, "dataset": {"type": "string"}, "split": {"type": "integer"}, "num_layers": {"type": "integer"}, "model_name": {"type": "string"}, "num_inducing": {"type": "integer"}, "batch_size": {"type": "integer"}, "num_epochs": {"type": "integer"}, "seed": {"type": "integer"}, "rmse": {"type": "number"}, "mse": {"type": "number"}, "nlpd": {"type": "number"}, "commit": {"type": "string"}}, "required": ["date", "dataset", "split", "num_layers", "model_name", "num_inducing", "batch_size", "num_epochs", "seed", "rmse", "mse", "nlpd", "commit"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"issue_url": {"type": "string"}, "publication_date": {"type": "string"}, "article": {"type": "array", "items": {"type": "string"}}}, "required": ["issue_url", "publication_date", "article"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"issue_url" : "https://www.aeaweb.org/issues/222", "publication_date" : "Spring 1995", "article" : ["/articles?id=10.1257/jep.9.2.i", "/articles?id=10.1257/jep.9.2.3", "/articles?id=10.1257/jep.9.2.23", "/articles?id=10.1257/jep.9.2.45", "/articles?id=10.1257/jep.9.2.63", "/articles?id=10.1257/jep.9.2.85", "/articles?id=10.1257/jep.9.2.111", "/articles?id=10.1257/jep.9.2.131", "/articles?id=10.1257/jep.9.2.149", "/articles?id=10.1257/jep.9.2.169", "/articles?id=10.1257/jep.9.2.191", "/articles?id=10.1257/jep.9.2.209", "/articles?id=10.1257/jep.9.2.221", "/articles?id=10.1257/jep.9.2.233", "/articles?id=10.1257/jep.9.2.243", "/articles?id=10.1257/jep.9.2.247"]}
json_instruct
{"type": "object", "properties": {"issue_url": {"type": "string"}, "publication_date": {"type": "string"}, "article": {"type": "array", "items": {"type": "string"}}}, "required": ["issue_url", "publication_date", "article"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"ignore": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"node_env": {"type": "string"}, "port": {"type": "integer"}}, "required": ["node_env", "port"]}}, "required": ["ignore", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ignore" : [".git", "node_modules/**/node_modules"], "env" : {"node_env" : "develop", "port" : 5500}}
json_instruct
{"type": "object", "properties": {"ignore": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"node_env": {"type": "string"}, "port": {"type": "integer"}}, "required": ["node_env", "port"]}}, "required": ["ignore", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"loss": {"type": "array", "items": {"type": "number"}}, "accuracy": {"type": "array", "items": {"type": "number"}}, "val_loss": {"type": "array", "items": {"type": "number"}}, "val_accuracy": {"type": "array", "items": {"type": "number"}}}, "required": ["loss", "accuracy", "val_loss", "val_accuracy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"loss" : [0.3582712709903717, 0.21903730928897858, 0.16877274215221405, 0.14075662195682526, 0.11562720686197281, 0.10623466968536377, 0.09673993289470673, 0.07654885947704315, 0.07880540937185287, 0.06852684170007706], "accuracy" : [0.9157615303993225, 0.9715213775634766, 0.9813563227653503, 0.9787907004356384, 0.9848626852035522, 0.9813563227653503, 0.9751132726669312, 0.9849482178688049, 0.9792183041572571, 0.986487627029419], "val_loss" : [0.25612112879753113, 0.18978141248226166, 0.1571793258190155, 0.12818889319896698, 0.10461552441120148, 0.09137757867574692, 0.0789107009768486, 0.0704183429479599, 0.07077183574438095, 0.0860854908823967], "val_accuracy" : [0.9601227045059204, 0.9805725812911987, 0.9759713411331177, 0.9800613522529602, 0.9856850504875183, 0.9861962795257568, 0.9867075681686401, 0.9867075681686401, 0.9810838103294373, 0.9882413148880005]}
json_instruct
{"type": "object", "properties": {"loss": {"type": "array", "items": {"type": "number"}}, "accuracy": {"type": "array", "items": {"type": "number"}}, "val_loss": {"type": "array", "items": {"type": "number"}}, "val_accuracy": {"type": "array", "items": {"type": "number"}}}, "required": ["loss", "accuracy", "val_loss", "val_accuracy"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this 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" : "130607001002", "text" : "\u60e0\u9633\u5317\u8857\u5c45\u59d4\u4f1a"}, {"id" : "130607001006", "text" : "\u60e0\u9633\u5357\u8857\u793e\u533a"}]
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": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "identifier": {"type": "string"}}, "required": ["id", "identifier"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "1", "identifier" : "attack"}, {"id" : "2", "identifier" : "defense"}, {"id" : "3", "identifier" : "support"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "identifier": {"type": "string"}}, "required": ["id", "identifier"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"t" : "matingasod", "h" : [{"d" : [{"f" : "\u4e0d\u548c\u8ae7\uff0c\u53c3\u5dee\u4e0d\u9f4a\u3002", "e" : ["\ufff9`Ma~`tingasod~ `ko~ `rakat~ `niyam~.\ufffa\ufffb\u6211\u5011\u7684\u6b65\u4f10\u53c3\u5dee\u4e0d\u9f4a\u3002", "\ufff9`Ma~`tingasod~ `ko~ `radiw~ `nangra~.\ufffa\ufffb\u4ed6\u5011\u7684\u6b4c\u8072\u4e0d\u9f4a\u3002"]}]}], "stem" : "tingasod"}
json_instruct
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "CardUser", "scores" : [{"xp" : 4461, "rank" : 145, "cardId" : 619}, {"xp" : 51895, "rank" : 56, "cardId" : 4}, {"xp" : 1699, "rank" : 211, "cardId" : 602}, {"xp" : 998, "rank" : 239, "cardId" : 639}, {"xp" : 37499, "rank" : 68, "cardId" : 491}, {"xp" : 6988, "rank" : 436, "cardId" : 31}, {"xp" : 3461, "rank" : 440, "cardId" : 659}, {"xp" : 10103, "rank" : 115, "cardId" : 519}, {"xp" : 1515, "rank" : 454, "cardId" : 646}, {"xp" : 40650, "rank" : 59, "cardId" : 19}, {"xp" : 29830, "rank" : 57, "cardId" : 37}, {"xp" : 865, "rank" : 318, "cardId" : 663}, {"xp" : 387, "rank" : 497, "cardId" : 666}, {"xp" : 4660, "rank" : 379, "cardId" : 594}, {"xp" : 739, "rank" : 485, "cardId" : 634}, {"xp" : 524, "rank" : 395, "cardId" : 742}, {"xp" : 612, "rank" : 317, "cardId" : 743}, {"xp" : 2273, "rank" : 400, "cardId" : 636}, {"xp" : 6481, "rank" : 383, "cardId" : 422}, {"xp" : 1627, "rank" : 298, "cardId" : 657}, {"xp" : 4783, "rank" : 428, "cardId" : 651}, {"xp" : 59878, "rank" : 183, "cardId" : 35}, {"xp" : 27871, "rank" : 23, "cardId" : 590}]}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"assert": {"type": "string"}, "body-parser": {"type": "string"}, "consolidate": {"type": "string"}, "express": {"type": "string"}, "path": {"type": "string"}, "twilio": {"type": "string"}}, "required": ["assert", "body-parser", "consolidate", "express", "path", "twilio"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "telify-backend", "version" : "1.0.0", "description" : "Backend for Telify app, a web app that allows you to choose a song and play it over the phone via a call", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/FrequenciDigital/telify-backend.git"}, "author" : "Liban Mohamed <[email protected]>", "license" : "MIT", "bugs" : {"url" : "https://github.com/FrequenciDigital/telify-backend/issues"}, "homepage" : "https://github.com/FrequenciDigital/telify-backend#readme", "dependencies" : {"assert" : "^1.4.1", "body-parser" : "^1.17.1", "consolidate" : "^0.14.5", "express" : "^4.15.2", "path" : "^0.12.7", "twilio" : "^2.11.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"assert": {"type": "string"}, "body-parser": {"type": "string"}, "consolidate": {"type": "string"}, "express": {"type": "string"}, "path": {"type": "string"}, "twilio": {"type": "string"}}, "required": ["assert", "body-parser", "consolidate", "express", "path", "twilio"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "7ff80d6330c223b2a6b89b634267393ce96d038b"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}, "16": {"type": "string"}}, "required": ["128", "16"]}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_popup"]}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["manifest_version", "name", "description", "version", "icons", "browser_action", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"manifest_version" : 2, "name" : "AWS Role Editor", "description" : "This extension allows you to modify your AWS Roles.", "version" : "0.3", "icons" : {"128" : "icons/128x128-icon.png", "16" : "icons/16x16-icon.png"}, "browser_action" : {"default_icon" : "icons/16x16-icon.png", "default_popup" : "popup.html"}, "permissions" : ["cookies", "https://console.aws.amazon.com/"]}
json_instruct
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}, "16": {"type": "string"}}, "required": ["128", "16"]}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_popup"]}, "permissions": {"type": "array", "items": {"type": "string"}}}, "required": ["manifest_version", "name", "description", "version", "icons", "browser_action", "permissions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"sessions": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "tabLayout": {"type": "object", "properties": {"type": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "tabs": {"type": "array", "items": {}}, "subItems": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "width": {"type": "number"}, "height": {"type": "integer"}, "tabs": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "relativeUrl": {"type": "string"}, "additionalData": {"type": "null"}}, "required": ["id", "relativeUrl", "additionalData"]}}, "subItems": {"type": "array", "items": {}}, "activeItemIndex": {"type": "integer"}}, "required": ["type", "width", "height", "tabs", "subItems", "activeItemIndex"]}}, "activeItemIndex": {"type": "integer"}}, "required": ["type", "width", "height", "tabs", "subItems", "activeItemIndex"]}, "lastUsed": {"type": "integer"}, "selectedTabId": {"type": "string"}}, "required": ["id", "tabLayout", "lastUsed", "selectedTabId"]}}, "relativePathToTsconfig": {"type": "string"}}, "required": ["sessions", "relativePathToTsconfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"sessions" : [{"id" : "2a92af5a-b030-45f6-a2cf-eef8bfc3bf0d", "tabLayout" : {"type" : "row", "width" : 100, "height" : 100, "tabs" : [], "subItems" : [{"type" : "stack", "width" : 49.50391644908616, "height" : 100, "tabs" : [{"id" : "c5daa7ef-dbb9-45d5-92f8-40edeba6c411", "relativeUrl" : "file://./src/Sorting/merge-sort/merge-sort.ts", "additionalData" : null}], "subItems" : [], "activeItemIndex" : 0}, {"type" : "stack", "width" : 50.49608355091384, "height" : 100, "tabs" : [{"id" : "6c19b85d-96c1-4d3e-980b-adbb44b74992", "relativeUrl" : "livedemo://./src/Sorting/merge-sort/merge-sort.ts", "additionalData" : null}], "subItems" : [], "activeItemIndex" : 0}], "activeItemIndex" : 0}, "lastUsed" : 1493670221923, "selectedTabId" : "c5daa7ef-dbb9-45d5-92f8-40edeba6c411"}], "relativePathToTsconfig" : "./tsconfig.json"}
json_instruct
{"type": "object", "properties": {"sessions": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "tabLayout": {"type": "object", "properties": {"type": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "tabs": {"type": "array", "items": {}}, "subItems": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "width": {"type": "number"}, "height": {"type": "integer"}, "tabs": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "relativeUrl": {"type": "string"}, "additionalData": {"type": "null"}}, "required": ["id", "relativeUrl", "additionalData"]}}, "subItems": {"type": "array", "items": {}}, "activeItemIndex": {"type": "integer"}}, "required": ["type", "width", "height", "tabs", "subItems", "activeItemIndex"]}}, "activeItemIndex": {"type": "integer"}}, "required": ["type", "width", "height", "tabs", "subItems", "activeItemIndex"]}, "lastUsed": {"type": "integer"}, "selectedTabId": {"type": "string"}}, "required": ["id", "tabLayout", "lastUsed", "selectedTabId"]}}, "relativePathToTsconfig": {"type": "string"}}, "required": ["sessions", "relativePathToTsconfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"thig3.1:0.1": {"type": "string"}, "thig3.1:0.2": {"type": "string"}, "thig3.1:0.3": {"type": "string"}, "thig3.1:1.1": {"type": "string"}, "thig3.1:1.2": {"type": "string"}, "thig3.1:1.3": {"type": "string"}, "thig3.1:1.4": {"type": "string"}, "thig3.1:2.1": {"type": "string"}, "thig3.1:2.2": {"type": "string"}, "thig3.1:2.3": {"type": "string"}, "thig3.1:2.4": {"type": "string"}, "thig3.1:3.1": {"type": "string"}, "thig3.1:3.2": {"type": "string"}, "thig3.1:3.3": {"type": "string"}, "thig3.1:3.4": {"type": "string"}, "thig3.1:3.5": {"type": "string"}, "thig3.1:3.6": {"type": "string"}, "thig3.1:4.1": {"type": "string"}}, "required": ["thig3.1:0.1", "thig3.1:0.2", "thig3.1:0.3", "thig3.1:1.1", "thig3.1:1.2", "thig3.1:1.3", "thig3.1:1.4", "thig3.1:2.1", "thig3.1:2.2", "thig3.1:2.3", "thig3.1:2.4", "thig3.1:3.1", "thig3.1:3.2", "thig3.1:3.3", "thig3.1:3.4", "thig3.1:3.5", "thig3.1:3.6", "thig3.1:4.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"thig3.1:0.1" : "<article id='thig3.1'><header><ul><li class='division'>{}</li>", "thig3.1:0.2" : "<li>{}</li></ul>", "thig3.1:0.3" : "<h1 class='sutta-title'>{}</h1></header>", "thig3.1:1.1" : "<blockquote class='gatha'><p><span class='verse-line'>{}</span>", "thig3.1:1.2" : "<span class='verse-line'>{}</span>", "thig3.1:1.3" : "<span class='verse-line'>{}</span>", "thig3.1:1.4" : "<span class='verse-line'>{}</span></p>", "thig3.1:2.1" : "<p><span class='verse-line'>{}</span>", "thig3.1:2.2" : "<span class='verse-line'>{}</span>", "thig3.1:2.3" : "<span class='verse-line'>{}</span>", "thig3.1:2.4" : "<span class='verse-line'>{}</span></p>", "thig3.1:3.1" : "<p><span class='verse-line'>{}</span>", "thig3.1:3.2" : "<span class='verse-line'>{}</span>", "thig3.1:3.3" : "<span class='verse-line'>{}</span>", "thig3.1:3.4" : "<span class='verse-line'>{}</span>", "thig3.1:3.5" : "<span class='verse-line'>{}</span>", "thig3.1:3.6" : "<span class='verse-line'>{}</span></p></blockquote>", "thig3.1:4.1" : "<p class='endsutta'>{}</p></article>"}
json_instruct
{"type": "object", "properties": {"thig3.1:0.1": {"type": "string"}, "thig3.1:0.2": {"type": "string"}, "thig3.1:0.3": {"type": "string"}, "thig3.1:1.1": {"type": "string"}, "thig3.1:1.2": {"type": "string"}, "thig3.1:1.3": {"type": "string"}, "thig3.1:1.4": {"type": "string"}, "thig3.1:2.1": {"type": "string"}, "thig3.1:2.2": {"type": "string"}, "thig3.1:2.3": {"type": "string"}, "thig3.1:2.4": {"type": "string"}, "thig3.1:3.1": {"type": "string"}, "thig3.1:3.2": {"type": "string"}, "thig3.1:3.3": {"type": "string"}, "thig3.1:3.4": {"type": "string"}, "thig3.1:3.5": {"type": "string"}, "thig3.1:3.6": {"type": "string"}, "thig3.1:4.1": {"type": "string"}}, "required": ["thig3.1:0.1", "thig3.1:0.2", "thig3.1:0.3", "thig3.1:1.1", "thig3.1:1.2", "thig3.1:1.3", "thig3.1:1.4", "thig3.1:2.1", "thig3.1:2.2", "thig3.1:2.3", "thig3.1:2.4", "thig3.1:3.1", "thig3.1:3.2", "thig3.1:3.3", "thig3.1:3.4", "thig3.1:3.5", "thig3.1:3.6", "thig3.1:4.1"], "$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": {"inputs": {"type": "array", "items": {"type": "object", "properties": {"internalType": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["internalType", "name", "type"]}}, "name": {"type": "string"}, "outputs": {"type": "array", "items": {}}, "stateMutability": {"type": "string"}, "type": {"type": "string"}}, "required": ["inputs", "name", "outputs", "stateMutability", "type"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"inputs" : [{"internalType" : "string", "name" : "_ipfsHash", "type" : "string"}, {"internalType" : "string", "name" : "_description", "type" : "string"}], "name" : "setPicture", "outputs" : [], "stateMutability" : "nonpayable", "type" : "function"}, {"inputs" : [{"internalType" : "string", "name" : "_name", "type" : "string"}, {"internalType" : "string", "name" : "_ipfsHash", "type" : "string"}], "name" : "setProfile", "outputs" : [], "stateMutability" : "nonpayable", "type" : "function"}, {"inputs" : [{"internalType" : "uint256", "name" : "", "type" : "uint256"}], "name" : "pics", "outputs" : [{"internalType" : "string", "name" : "picHash", "type" : "string"}, {"internalType" : "string", "name" : "description", "type" : "string"}, {"internalType" : "address", "name" : "user", "type" : "address"}], "stateMutability" : "view", "type" : "function"}, {"inputs" : [], "name" : "picsLength", "outputs" : [{"internalType" : "uint256", "name" : "", "type" : "uint256"}], "stateMutability" : "view", "type" : "function"}, {"inputs" : [{"internalType" : "address", "name" : "", "type" : "address"}], "name" : "profiles", "outputs" : [{"internalType" : "string", "name" : "name", "type" : "string"}, {"internalType" : "string", "name" : "picHash", "type" : "string"}], "stateMutability" : "view", "type" : "function"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "object", "properties": {"internalType": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["internalType", "name", "type"]}}, "name": {"type": "string"}, "outputs": {"type": "array", "items": {}}, "stateMutability": {"type": "string"}, "type": {"type": "string"}}, "required": ["inputs", "name", "outputs", "stateMutability", "type"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "Forlorn", "definitions" : ["Pitifully sad and abandoned or lonely.", "(of an aim or endeavour) unlikely to succeed or be fulfilled."], "parts-of-speech" : "Adjective"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"C": {"type": "number"}}, "required": ["C"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"C" : 0.5337459538085862}
json_instruct
{"type": "object", "properties": {"C": {"type": "number"}}, "required": ["C"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "7963272f2f65c8240a71", "c" : {"0" : false}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Msg": {"type": "object", "properties": {"Type": {"type": "string"}, "Value": {"type": "object", "properties": {"cmd": {"type": "string"}, "args": {"type": "array", "items": {}}}, "required": ["cmd", "args"]}}, "required": ["Type", "Value"]}, "Targets": {"type": "array", "items": {"type": "string"}}, "Type": {"type": "string"}}, "required": ["Msg", "Targets", "Type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Msg" : {"Type" : "oscommand", "Value" : {"cmd" : "/usr/scripts/restart-client.sh", "args" : []}}, "Targets" : ["camera"], "Type" : "control"}
json_instruct
{"type": "object", "properties": {"Msg": {"type": "object", "properties": {"Type": {"type": "string"}, "Value": {"type": "object", "properties": {"cmd": {"type": "string"}, "args": {"type": "array", "items": {}}}, "required": ["cmd", "args"]}}, "required": ["Type", "Value"]}, "Targets": {"type": "array", "items": {"type": "string"}}, "Type": {"type": "string"}}, "required": ["Msg", "Targets", "Type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"p": {"type": "number"}, "s": {"type": "integer"}, "c": {"type": "number"}}, "required": ["p", "s", "c"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"p" : 0.7866, "s" : 3, "c" : 2.625}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"p": {"type": "number"}, "s": {"type": "integer"}, "c": {"type": "number"}}, "required": ["p", "s", "c"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Heat a saucepan over medium heat and measure in the quinoa. Season with cinnamon and cook until toasted, stirring frequently, about 3 minutes. Pour in the almond milk, water and vanilla and stir in the brown sugar and salt. Bring to a boil, then cook over low heat until the porridge is thick and grains are tender, about 25 minutes. Add more water if needed if the liquid has dried up before it finishes cooking. Stir occasionally, especially at the end, to prevent burning."], "ingredients" : ["1/2 cup quinoa", "1/4 teaspoon ground cinnamon", "1 1/2 cups almond milk", "1/2 cup water", "2 tablespoons brown sugar", "1 teaspoon vanilla extract (optional)", "1 pinch salt"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Quinoa Porridge", "url" : "http://allrecipes.com/recipe/162501/quinoa-porridge/"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"feed_url": {"type": "string"}}, "required": ["feed_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feed_url" : "http://admin:[email protected]/videostream.cgi"}
json_instruct
{"type": "object", "properties": {"feed_url": {"type": "string"}}, "required": ["feed_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"cid": {"type": "string"}, "cname": {"type": "string"}, "cnameCn": {"type": "string"}, "isLeaf": {"type": "integer"}, "leaf": {"type": "boolean"}, "level": {"type": "integer"}, "pL1Id": {"type": "string"}, "pL1Name": {"type": "string"}, "pL2Id": {"type": "string"}, "pL2Name": {"type": "string"}}, "required": ["cid", "cname", "cnameCn", "isLeaf", "leaf", "level", "pL1Id", "pL1Name", "pL2Id", "pL2Name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"cid" : "11777", "cname" : "Sandals(\u51c9\u978b)", "cnameCn" : "\u51c9\u978b", "isLeaf" : 1, "leaf" : true, "level" : 3, "pL1Id" : "2593", "pL1Name" : "Men's Shoes(\u7537\u88c5\u978b)", "pL2Id" : "2596", "pL2Name" : "Sandals & Flip Flops(\u51c9\u978b\u548c\u5939\u8dbe\u51c9\u978b)"}, {"cid" : "11778", "cname" : "Flip Flops(\u4eba\u5b57\u62d6)", "cnameCn" : "\u4eba\u5b57\u62d6", "isLeaf" : 1, "leaf" : true, "level" : 3, "pL1Id" : "2593", "pL1Name" : "Men's Shoes(\u7537\u88c5\u978b)", "pL2Id" : "2596", "pL2Name" : "Sandals & Flip Flops(\u51c9\u978b\u548c\u5939\u8dbe\u51c9\u978b)"}, {"cid" : "11779", "cname" : "Mules & Clogs(\u9aa1\u5b50\u548c\u6728..)", "cnameCn" : "\u9aa1\u5b50\u548c\u6728..", "isLeaf" : 1, "leaf" : true, "level" : 3, "pL1Id" : "2593", "pL1Name" : "Men's Shoes(\u7537\u88c5\u978b)", "pL2Id" : "2596", "pL2Name" : "Sandals & Flip Flops(\u51c9\u978b\u548c\u5939\u8dbe\u51c9\u978b)"}, {"cid" : "21153", "cname" : "Slides(\u5e7b\u706f\u7247)", "cnameCn" : "\u5e7b\u706f\u7247", "isLeaf" : 1, "leaf" : true, "level" : 3, "pL1Id" : "2593", "pL1Name" : "Men's Shoes(\u7537\u88c5\u978b)", "pL2Id" : "2596", "pL2Name" : "Sandals & Flip Flops(\u51c9\u978b\u548c\u5939\u8dbe\u51c9\u978b)"}, {"cid" : "4861", "cname" : "Others(\u5176\u4ed6)", "cnameCn" : "\u5176\u4ed6", "isLeaf" : 1, "leaf" : true, "level" : 3, "pL1Id" : "2593", "pL1Name" : "Men's Shoes(\u7537\u88c5\u978b)", "pL2Id" : "2596", "pL2Name" : "Sandals & Flip Flops(\u51c9\u978b\u548c\u5939\u8dbe\u51c9\u978b)"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"cid": {"type": "string"}, "cname": {"type": "string"}, "cnameCn": {"type": "string"}, "isLeaf": {"type": "integer"}, "leaf": {"type": "boolean"}, "level": {"type": "integer"}, "pL1Id": {"type": "string"}, "pL1Name": {"type": "string"}, "pL2Id": {"type": "string"}, "pL2Name": {"type": "string"}}, "required": ["cid", "cname", "cnameCn", "isLeaf", "leaf", "level", "pL1Id", "pL1Name", "pL2Id", "pL2Name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"131102": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131103": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131121": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131122": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131123": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131124": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131125": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131126": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131127": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131128": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131182": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}}, "required": ["131102", "131103", "131121", "131122", "131123", "131124", "131125", "131126", "131127", "131128", "131182"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"131102" : {"name" : "\u6843\u57ce\u533a", "next" : 1}, "131103" : {"name" : "\u5180\u5dde\u533a", "next" : 1}, "131121" : {"name" : "\u67a3\u5f3a\u53bf", "next" : 1}, "131122" : {"name" : "\u6b66\u9091\u53bf", "next" : 1}, "131123" : {"name" : "\u6b66\u5f3a\u53bf", "next" : 1}, "131124" : {"name" : "\u9976\u9633\u53bf", "next" : 1}, "131125" : {"name" : "\u5b89\u5e73\u53bf", "next" : 1}, "131126" : {"name" : "\u6545\u57ce\u53bf", "next" : 1}, "131127" : {"name" : "\u666f\u53bf", "next" : 1}, "131128" : {"name" : "\u961c\u57ce\u53bf", "next" : 1}, "131182" : {"name" : "\u6df1\u5dde\u5e02", "next" : 1}}
json_instruct
{"type": "object", "properties": {"131102": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131103": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131121": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131122": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131123": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131124": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131125": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131126": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131127": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131128": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "131182": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}}, "required": ["131102", "131103", "131121", "131122", "131123", "131124", "131125", "131126", "131127", "131128", "131182"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Villers-Rotin", "circ" : "2\u00e8me circonscription", "dpt" : "C\u00f4te-d'Or", "inscrits" : 107, "abs" : 47, "votants" : 60, "blancs" : 9, "nuls" : 2, "exp" : 49, "res" : [{"nuance" : "LR", "nom" : "M. R\u00e9mi DELATTE", "voix" : 31}, {"nuance" : "REM", "nom" : "M. Fran\u00e7ois DESEILLE", "voix" : 18}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build-readme": {"type": "string"}}, "required": ["test", "build-readme"]}, "bin": {"type": "object", "properties": {"mdtex": {"type": "string"}}, "required": ["mdtex"]}, "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"}, "dependencies": {"type": "object", "properties": {"commander": {"type": "string"}, "gulp": {"type": "string"}, "gulp-count": {"type": "string"}, "gulp-filter": {"type": "string"}, "gulp-latex": {"type": "string"}, "gulp-markdown-equations": {"type": "string"}, "gulp-pdftocairo": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-shell": {"type": "string"}, "gulp-spawn": {"type": "string"}, "gulp-tap": {"type": "string"}, "gulp-util": {"type": "string"}, "hasbin": {"type": "string"}}, "required": ["commander", "gulp", "gulp-count", "gulp-filter", "gulp-latex", "gulp-markdown-equations", "gulp-pdftocairo", "gulp-rename", "gulp-shell", "gulp-spawn", "gulp-tap", "gulp-util", "hasbin"]}, "devDependencies": {"type": "object", "properties": {"standard": {"type": "string"}}, "required": ["standard"]}}, "required": ["name", "version", "description", "main", "scripts", "bin", "repository", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mdtex-cli", "version" : "0.0.3", "description" : "Markdown equation processing as a command line script", "main" : "index.js", "scripts" : {"test" : "mocha", "build-readme" : "node ./cli.js README.mdtex"}, "bin" : {"mdtex" : "cli.js"}, "repository" : {"type" : "git", "url" : "git://github.com/rreusser/mdtex-cli.git"}, "keywords" : ["markdown", "latex", "equations"], "author" : "Ricky Reusser", "license" : "ISC", "dependencies" : {"commander" : "^2.9.0", "gulp" : "^3.9.0", "gulp-count" : "^0.1.0", "gulp-filter" : "^3.0.1", "gulp-latex" : "^1.0.1", "gulp-markdown-equations" : "^1.2.3", "gulp-pdftocairo" : "^0.2.0", "gulp-rename" : "^1.2.2", "gulp-shell" : "^0.5.1", "gulp-spawn" : "^0.3.0", "gulp-tap" : "^0.1.3", "gulp-util" : "^3.0.7", "hasbin" : "^1.1.3"}, "devDependencies" : {"standard" : "^5.4.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build-readme": {"type": "string"}}, "required": ["test", "build-readme"]}, "bin": {"type": "object", "properties": {"mdtex": {"type": "string"}}, "required": ["mdtex"]}, "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"}, "dependencies": {"type": "object", "properties": {"commander": {"type": "string"}, "gulp": {"type": "string"}, "gulp-count": {"type": "string"}, "gulp-filter": {"type": "string"}, "gulp-latex": {"type": "string"}, "gulp-markdown-equations": {"type": "string"}, "gulp-pdftocairo": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-shell": {"type": "string"}, "gulp-spawn": {"type": "string"}, "gulp-tap": {"type": "string"}, "gulp-util": {"type": "string"}, "hasbin": {"type": "string"}}, "required": ["commander", "gulp", "gulp-count", "gulp-filter", "gulp-latex", "gulp-markdown-equations", "gulp-pdftocairo", "gulp-rename", "gulp-shell", "gulp-spawn", "gulp-tap", "gulp-util", "hasbin"]}, "devDependencies": {"type": "object", "properties": {"standard": {"type": "string"}}, "required": ["standard"]}}, "required": ["name", "version", "description", "main", "scripts", "bin", "repository", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"react-bootstrap-table-all.min.css": {"type": "string"}, "react-bootstrap-table.js": {"type": "string"}, "react-bootstrap-table.min.css": {"type": "string"}, "react-bootstrap-table.min.js": {"type": "string"}}, "required": ["react-bootstrap-table-all.min.css", "react-bootstrap-table.js", "react-bootstrap-table.min.css", "react-bootstrap-table.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"react-bootstrap-table-all.min.css" : "sha256-9LdrAHVrAFjQFFHq2JlPbg9lC7/Gw4Ij10JAfiNSflk=", "react-bootstrap-table.js" : "sha256-H5uBFWHtGjYr7SFXzy1z5tcAA8k9tfftWGsmJ2HXSAo=", "react-bootstrap-table.min.css" : "sha256-SHxqeqS2GQ+7ec1YAo9gACDPVwsb3ZcJOYbyv0qhMZU=", "react-bootstrap-table.min.js" : "sha256-UoAAK6w+ojW9khkSSxaoT8Su4LH91D+DnYhbQUl93fo="}
json_instruct
{"type": "object", "properties": {"react-bootstrap-table-all.min.css": {"type": "string"}, "react-bootstrap-table.js": {"type": "string"}, "react-bootstrap-table.min.css": {"type": "string"}, "react-bootstrap-table.min.js": {"type": "string"}}, "required": ["react-bootstrap-table-all.min.css", "react-bootstrap-table.js", "react-bootstrap-table.min.css", "react-bootstrap-table.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "string"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Rose-Hulman Institute of Technology", "alt_name" : "(RHIT)", "country" : "United States", "state" : "Indiana", "address" : {"street" : "5500 Wabash Avenue", "city" : "Terre Haute", "province" : "Indiana", "postal_code" : "47803-3999"}, "contact" : {"telephone" : "+1(812) 877-1511", "website" : "http://www.rose-hulman.edu", "email" : "[email protected]", "fax" : "+1(812) 877-8941"}, "funding" : "Private", "languages" : null, "academic_year" : "August to May (August-November; November-February; March-May)", "accrediting_agency" : "North Central Association of Colleges and Schools"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "string"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "test-watch": {"type": "string"}, "precommit": {"type": "string"}}, "required": ["start", "test", "test-watch", "precommit"]}, "bin": {"type": "object", "properties": {"create-react-native-web-app": {"type": "string"}}, "required": ["create-react-native-web-app"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"husky": {"type": "string"}, "jest": {"type": "string"}}, "required": ["husky", "jest"]}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "commander": {"type": "string"}, "fs-extra": {"type": "string"}}, "required": ["chalk", "commander", "fs-extra"]}, "jest": {"type": "object", "properties": {"testEnvironment": {"type": "string"}, "testPathIgnorePatterns": {"type": "array", "items": {"type": "string"}}}, "required": ["testEnvironment", "testPathIgnorePatterns"]}}, "required": ["name", "version", "description", "main", "scripts", "bin", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "create-react-native-web-app", "version" : "0.1.14", "description" : "React Native Web CLI", "main" : "cli.js", "scripts" : {"start" : "node cli.js", "test" : "jest", "test-watch" : "jest --watch", "precommit" : "npm run test"}, "bin" : {"create-react-native-web-app" : "cli.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/orYoffe/create-react-native-web-app.git"}, "keywords" : ["react", "react-native", "react-native-web"], "author" : {"name" : "Or Yoffe", "url" : "https://github.com/orYoffe"}, "license" : "MIT", "bugs" : {"url" : "https://github.com/orYoffe/create-react-native-web-app/issues"}, "homepage" : "https://github.com/orYoffe/create-react-native-web-app#readme", "devDependencies" : {"husky" : "^0.14.3", "jest" : "^23.1.0"}, "dependencies" : {"chalk" : "^2.4.1", "commander" : "^2.15.1", "fs-extra" : "^6.0.1"}, "jest" : {"testEnvironment" : "node", "testPathIgnorePatterns" : ["./node_modules/", "./template/*"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "test-watch": {"type": "string"}, "precommit": {"type": "string"}}, "required": ["start", "test", "test-watch", "precommit"]}, "bin": {"type": "object", "properties": {"create-react-native-web-app": {"type": "string"}}, "required": ["create-react-native-web-app"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"husky": {"type": "string"}, "jest": {"type": "string"}}, "required": ["husky", "jest"]}, "dependencies": {"type": "object", "properties": {"chalk": {"type": "string"}, "commander": {"type": "string"}, "fs-extra": {"type": "string"}}, "required": ["chalk", "commander", "fs-extra"]}, "jest": {"type": "object", "properties": {"testEnvironment": {"type": "string"}, "testPathIgnorePatterns": {"type": "array", "items": {"type": "string"}}}, "required": ["testEnvironment", "testPathIgnorePatterns"]}}, "required": ["name", "version", "description", "main", "scripts", "bin", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies", "jest"], "$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"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "url": {"type": "string"}, "lib": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "description", "dependencies", "url", "lib", "main", "version", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "jquery-ui-touch-punch", "description" : "touch events for jquery ui", "dependencies" : {}, "url" : "http://touchpunch.furf.com/", "lib" : ".", "main" : "jquery.ui.touch-punch.min.js", "version" : "1.0.0", "repository" : {"type" : "git", "url" : "git://github.com/furf/jquery-ui-touch-punch.git"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "url": {"type": "string"}, "lib": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "description", "dependencies", "url", "lib", "main", "version", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0", "1.1", "1.2"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["1.2"], "meta" : {"description" : "Dict with json file saving / restoring support", "homepage" : "https://github.com/imbolc/jsondict", "license" : "ISC"}, "versions" : {"1.0" : {"sha256" : "1f10ba91fa9d5d2458c141fb514d3f8093b7913d58fc788bba56581d4aadd90b", "url" : "https://files.pythonhosted.org/packages/00/82/a338015ff460ac890eeb7386b8ad832a9151482e956072cdb438172c242e/jsondict-1.0.tar.gz"}, "1.1" : {"sha256" : "b1fe16ec2e4b8bb6bae7349a2248900f9160a98f366f846bf2b823d248b82d9b", "url" : "https://files.pythonhosted.org/packages/24/ab/f2d0f76d366f4c0fdc139dc8f1db190481c1a82d8b9d759b0d3cd83d86f4/jsondict-1.1.tar.gz"}, "1.2" : {"sha256" : "155dd446fce1d7df25770cd6e5e1cf04322956e0840819675cc8c2a790853802", "url" : "https://files.pythonhosted.org/packages/a3/1a/2e33745454b06f21f9dfb9c575a2b92c1750d682316bb5607cc1cf7e92c7/jsondict-1.2.tar.gz"}}}
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"1.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0", "1.1", "1.2"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"fuse.js": {"type": "string"}, "fuse.min.js": {"type": "string"}}, "required": ["fuse.js", "fuse.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"fuse.js" : "sha512-FKfTYBMxHCHNyJ3zWERovb2c/MlhpIvp4jPWsbiqFBApsRi1Fi1QXi1Pod86ZqIFo/v7dtpSrBOIaUxVvqCN6A==", "fuse.min.js" : "sha512-pyRVMmFVvFHCH2Fd9NhOFfwc7wemhhqHlblERx4a2lNpUplt89mLv5Rwu2iN+LxgFnMlszkB1M5tcYXzzJiKCg=="}
json_instruct
{"type": "object", "properties": {"fuse.js": {"type": "string"}, "fuse.min.js": {"type": "string"}}, "required": ["fuse.js", "fuse.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : 27562, "date" : "2014-05-18 16:29:39", "user" : "MatthewM", "post" : "Free vps 1 - 5 posts per month\r\n\r\n-1 Core Intel Xeon (Fair share)\r\n\r\n-128MB RAM\r\n\r\n-256MB RAM vSwap\r\n\r\n-10GB HDD ( No RAID)\r\n\r\n-NAT IP\r\n\r\n-256GB/mo Bandwidth\r\n\r\n-URL= http://nocostvps.me/\r\n\r\nUpgrades coming soon(Free if your active in the forum)\r\n\r\nWe are about reward people for being more active in the forum.\r\n\r\nNode specs:\r\n\r\nIntel xeon x5560\r\n\r\n4GB Ram\r\n\r\n500GB HDD\r\n\r\nUnlimited bandwidth (100Mbps)\r\n\r\nParis,France\r\n\r\nTerms of service: http://nocostvps.me/tos.htm\r\n\r\nAcceptable Usage Policy: http://nocostvps.me/aup.htm"}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "string"}}, "outputs": {"type": "array", "items": {"type": "string"}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"inputs" : ["3\n1 2 3", "2\n2 3", "4\n1 2 3 4", "2\n2 4", "1\n20", "1\n1"], "outputs" : ["2\n0 1 3 2", "2\n0 2 1 3", "3\n0 1 3 2 6 7 5 4", "0\n0", "0\n0", "1\n0 1"]}
json_instruct
{"type": "object", "properties": {"inputs": {"type": "array", "items": {"type": "string"}}, "outputs": {"type": "array", "items": {"type": "string"}}}, "required": ["inputs", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"bignore": {"type": "number"}, "threshold": {"type": "number"}, "escale": {"type": "number"}, "lo": {"type": "integer"}, "hi": {"type": "integer"}, "maxskew": {"type": "number"}, "skewsteps": {"type": "integer"}, "debug": {"type": "number"}, "parallel": {"type": "integer"}}, "required": ["bignore", "threshold", "escale", "lo", "hi", "maxskew", "skewsteps", "debug", "parallel"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"bignore" : 0.1, "threshold" : 0.5, "escale" : 1.0, "lo" : 5, "hi" : 90, "maxskew" : 2.0, "skewsteps" : 8, "debug" : 0.0, "parallel" : 0}
json_instruct
{"type": "object", "properties": {"bignore": {"type": "number"}, "threshold": {"type": "number"}, "escale": {"type": "number"}, "lo": {"type": "integer"}, "hi": {"type": "integer"}, "maxskew": {"type": "number"}, "skewsteps": {"type": "integer"}, "debug": {"type": "number"}, "parallel": {"type": "integer"}}, "required": ["bignore", "threshold", "escale", "lo", "hi", "maxskew", "skewsteps", "debug", "parallel"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"activePlaceCount": {"type": "integer"}, "birth": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "required": ["name", "placeName", "placeType"]}, "time": {"type": "object", "properties": {"startYear": {"type": "integer"}}, "required": ["startYear"]}}, "required": ["place", "time"]}, "birthYear": {"type": "integer"}, "date": {"type": "string"}, "death": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "required": ["name", "placeName", "placeType"]}}, "required": ["place"]}, "fc": {"type": "string"}, "gender": {"type": "string"}, "id": {"type": "integer"}, "mda": {"type": "string"}, "movements": {"type": "array", "items": {}}, "startLetter": {"type": "string"}, "totalWorks": {"type": "integer"}, "url": {"type": "string"}}, "required": ["activePlaceCount", "birth", "birthYear", "date", "death", "fc", "gender", "id", "mda", "movements", "startLetter", "totalWorks", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"activePlaceCount" : 0, "birth" : {"place" : {"name" : "Qu\u00e9bec, Canada", "placeName" : "Qu\u00e9bec", "placeType" : "province"}, "time" : {"startYear" : 1943}}, "birthYear" : 1943, "date" : "born 1943", "death" : {"place" : {"name" : "Qu\u00e9bec, Canada", "placeName" : "Qu\u00e9bec", "placeType" : "province"}}, "fc" : "Pierre Ayot", "gender" : "Male", "id" : 679, "mda" : "Ayot, Pierre", "movements" : [], "startLetter" : "A", "totalWorks" : 1, "url" : "http://www.tate.org.uk/art/artists/pierre-ayot-679"}
json_instruct
{"type": "object", "properties": {"activePlaceCount": {"type": "integer"}, "birth": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "required": ["name", "placeName", "placeType"]}, "time": {"type": "object", "properties": {"startYear": {"type": "integer"}}, "required": ["startYear"]}}, "required": ["place", "time"]}, "birthYear": {"type": "integer"}, "date": {"type": "string"}, "death": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "required": ["name", "placeName", "placeType"]}}, "required": ["place"]}, "fc": {"type": "string"}, "gender": {"type": "string"}, "id": {"type": "integer"}, "mda": {"type": "string"}, "movements": {"type": "array", "items": {}}, "startLetter": {"type": "string"}, "totalWorks": {"type": "integer"}, "url": {"type": "string"}}, "required": ["activePlaceCount", "birth", "birthYear", "date", "death", "fc", "gender", "id", "mda", "movements", "startLetter", "totalWorks", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"pretest": {"type": "string"}, "test": {"type": "string"}, "posttest": {"type": "string"}}, "required": ["pretest", "test", "posttest"]}, "devDependencies": {"type": "object", "properties": {"node-fetch": {"type": "string"}, "sandbox-debugger": {"type": "string"}, "sandbox-debugger-server": {"type": "string"}, "tap": {"type": "string"}, "ws": {"type": "string"}}, "required": ["node-fetch", "sandbox-debugger", "sandbox-debugger-server", "tap", "ws"]}, "private": {"type": "boolean"}}, "required": ["name", "scripts", "devDependencies", "private"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "test-sandbox-debugger", "scripts" : {"pretest" : "npm --prefix ../packages/client install && npm --prefix ../packages/client run build && npm i", "test" : "node src/same-process.js && node src/another-process.js", "posttest" : "rm -rf ../packages/client/dist"}, "devDependencies" : {"node-fetch" : "2.6.1", "sandbox-debugger" : "file://../packages/client", "sandbox-debugger-server" : "file://../packages/server", "tap" : "15.1.6", "ws" : "8.3.0"}, "private" : true}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"pretest": {"type": "string"}, "test": {"type": "string"}, "posttest": {"type": "string"}}, "required": ["pretest", "test", "posttest"]}, "devDependencies": {"type": "object", "properties": {"node-fetch": {"type": "string"}, "sandbox-debugger": {"type": "string"}, "sandbox-debugger-server": {"type": "string"}, "tap": {"type": "string"}, "ws": {"type": "string"}}, "required": ["node-fetch", "sandbox-debugger", "sandbox-debugger-server", "tap", "ws"]}, "private": {"type": "boolean"}}, "required": ["name", "scripts", "devDependencies", "private"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"pmid": {"type": "string"}, "doi": {"type": "array", "items": {"type": "string"}}, "language": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "abstract": {"type": "string"}, "date_revised": {"type": "string"}}, "required": ["pmid", "doi", "language", "title", "abstract", "date_revised"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pmid" : "34371124", "doi" : ["S0304-3940(21)00542-5", "10.1016/j.neulet.2021.136164"], "language" : ["eng"], "title" : "Hypericum perforatum L. prevents the acquisition of and promotes resilience against stress-induced reinstatement of the conditioned place preference induced by cocaine.", "abstract" : "Cocaine use disorder is a serious problem worldwide, and there are no approved medications for its treatment. A novel approach to the treatment of drug addiction is the use of natural products, and, in this context, preclinical evidence suggests that Hypericum perforatum L. (Hypericum) is effective against alcohol and other substance use disorders. We hypothesised that Hypericum could also be useful as a treatment for cocaine use disorder, and so we set out to test its effectiveness in a mice model of cocaine addiction. In the first experiment we evaluated its effects on the acquisition of cocaine-induced conditioned place preference (CPP). Adult male mice were conditioned with cocaine (25\u00a0mg/kg), cocaine with Hypericum (75, 150 or 300\u00a0mg/kg) or the plant extract alone (300\u00a0mg/kg). In the second experiment, we tested the effects of Hypericum on stress-induced reinstatement of cocaine CPP. All the mice were conditioned with cocaine (25\u00a0mg/kg) and, after extinction of CPP, the reinstating effects of social defeat (alone or with 75, 150 or 300\u00a0mg/kg of Hypericum) were evaluated. All the doses of Hypericum prevented the acquisition of cocaine-induced CPP. Furthermore, the plant extract dose-dependently reduced the reinstating effects of social defeat. Therefore, Hypericum is effective in reducing the rewarding effects of cocaine and prevents the stress-induced reinstatement of cocaine CPP in mice. The mechanisms underlying these positive effects of Hypericum perforatum L. need to be determined by future research. Our results endorse Hypericum as a natural treatment for cocaine dependence.", "date_revised" : "20210914"}
json_instruct
{"type": "object", "properties": {"pmid": {"type": "string"}, "doi": {"type": "array", "items": {"type": "string"}}, "language": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "abstract": {"type": "string"}, "date_revised": {"type": "string"}}, "required": ["pmid", "doi", "language", "title", "abstract", "date_revised"], "$schema": "http://json-schema.org/draft-07/schema#"}