input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status_code" : "OK", "status_msg" : "All images in request have completed successfully. ", "meta" : {"tag" : {"timestamp" : 1442731246.075072, "model" : "default", "config" : "0b2b7436987dd912e077ff576731f8b7"}}, "results" : [{"docid" : 48730918849635675652728221574810238924, "status_code" : "OK", "status_msg" : "OK", "local_id" : "", "result" : {"tag" : {"classes" : ["landmark", "ancient", "old", "monument", "stone", "historic", "grass", "prehistoric", "outdoors", "heritage", "travel", "religion", "archeology", "sky", "grave", "countryside", "landscape", "architecture", "nature", "culture"], "probs" : [0.9972187280654907, 0.9942312240600586, 0.9909470677375793, 0.9904630184173584, 0.9895471930503845, 0.9860232472419739, 0.9836828708648682, 0.9696518182754517, 0.9695472717285156, 0.967354953289032, 0.9657528400421143, 0.9631576538085938, 0.9626214504241943, 0.9625447988510132, 0.9560166597366333, 0.9493638873100281, 0.9457885026931763, 0.944332480430603, 0.9430526494979858, 0.9427977800369263]}}, "docid_str" : "24a93bcc1879855a4e79dae391e6ffcc"}]}
json_instruct
{"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"confrariaweb/laravel-domain": {"type": "string"}, "confrariaweb/laravel-file": {"type": "string"}, "confrariaweb/laravel-template": {"type": "string"}, "confrariaweb/laravel-vendor": {"type": "string"}, "laravelcollective/html": {"type": "string"}, "yajra/laravel-datatables-oracle": {"type": "string"}}, "required": ["confrariaweb/laravel-domain", "confrariaweb/laravel-file", "confrariaweb/laravel-template", "confrariaweb/laravel-vendor", "laravelcollective/html", "yajra/laravel-datatables-oracle"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ConfrariaWeb\\Site\\": {"type": "string"}, "ConfrariaWeb\\Site\\Databases\\Seeds\\": {"type": "string"}}, "required": ["ConfrariaWeb\\Site\\", "ConfrariaWeb\\Site\\Databases\\Seeds\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["laravel"]}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "keywords", "license", "type", "authors", "require", "autoload", "extra", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "confrariaweb/laravel-site", "description" : "A laravel site package for Confraria Web systems", "keywords" : ["site", "framework", "laravel"], "license" : "MIT", "type" : "project", "authors" : [{"name" : "Rafael Zingano", "email" : "[email protected]"}], "require" : {"confrariaweb/laravel-domain" : "dev-master", "confrariaweb/laravel-file" : "dev-master", "confrariaweb/laravel-template" : "dev-master", "confrariaweb/laravel-vendor" : "dev-master", "laravelcollective/html" : ">=6.0", "yajra/laravel-datatables-oracle" : "~9.0"}, "autoload" : {"psr-4" : {"ConfrariaWeb\\Site\\" : "src", "ConfrariaWeb\\Site\\Databases\\Seeds\\" : "databases/Seeds"}, "files" : ["src/Helpers/domainAccount.php", "src/Helpers/domainTemplatePackage.php", "src/Helpers/domainSite.php", "src/Helpers/domainTemplate.php", "src/Helpers/siteUrl.php", "src/Helpers/configuration.php"]}, "extra" : {"laravel" : {"providers" : ["ConfrariaWeb\\Site\\Providers\\SiteServiceProvider"]}}, "minimum-stability" : "dev"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"confrariaweb/laravel-domain": {"type": "string"}, "confrariaweb/laravel-file": {"type": "string"}, "confrariaweb/laravel-template": {"type": "string"}, "confrariaweb/laravel-vendor": {"type": "string"}, "laravelcollective/html": {"type": "string"}, "yajra/laravel-datatables-oracle": {"type": "string"}}, "required": ["confrariaweb/laravel-domain", "confrariaweb/laravel-file", "confrariaweb/laravel-template", "confrariaweb/laravel-vendor", "laravelcollective/html", "yajra/laravel-datatables-oracle"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"ConfrariaWeb\\Site\\": {"type": "string"}, "ConfrariaWeb\\Site\\Databases\\Seeds\\": {"type": "string"}}, "required": ["ConfrariaWeb\\Site\\", "ConfrariaWeb\\Site\\Databases\\Seeds\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["laravel"]}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "keywords", "license", "type", "authors", "require", "autoload", "extra", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-74.997219, 39.88959], [-74.972795, 39.914527], [-74.965775, 39.920615], [-74.9628, 39.920102], [-74.955808, 39.91318], [-74.952303, 39.906959], [-74.95179, 39.901352], [-74.949427, 39.898234], [-74.946809, 39.897313], [-74.945191, 39.895704], [-74.966763, 39.902786], [-74.969998, 39.882121], [-74.975369, 39.885254], [-74.997219, 39.88959]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 40062}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"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" : 8955, "cartId" : "5730d3f4-ea88-4301-abe6-798fcb28e2d7", "preferredProducts" : [1095, 4040, 1486, 551, 4657, 3444, 1473], "productReviews" : [{"productId" : 2734, "reviewText" : "this Licensed is slurpee.", "reviewDate" : "2019-09-17T00:58:39.5813929+03:00"}, {"productId" : 1434, "reviewText" : "My neighbor Victoria has one of these. She works as a professor and she says it looks menthol.", "reviewDate" : "2018-05-28T06:34:20.8663749+03:00"}, {"productId" : 1170, "reviewText" : "i use it once in a while when i'm in my ring.", "reviewDate" : "2019-08-09T23:56:51.4087242+03:00"}, {"productId" : 3611, "reviewText" : "I saw one of these in New Zealand and I bought one.", "reviewDate" : "2017-07-25T20:23:14.1790675+03:00"}, {"productId" : 1706, "reviewText" : "It only works when I'm Singapore.", "reviewDate" : "2016-12-25T14:37:00.6436578+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "AYDAN", "frequency" : 3, "gender" : "male"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x7ccbd07295730871632012d08577ef3a4aa6f4b2de20c63e376ee2d71fe7ae4a", "parentHash" : "0x6fec1711c5dddffd92f5051f2d1a976f99bc82d05f2110ffe28c11be5b5c7c6f", "number" : 18211, "timestamp" : 1438459295, "nonce" : "0xe00cad3eaf859b4c", "difficulty" : 934585203046, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x2ae9f4F8c8e7A3574D494fA354d4533692Bc6F75", "extraData" : "0x476574682f76312e302e302f6c696e75782f676f312e342e32", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "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": "null"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "University of Valladolid Yucatan", "alt_name" : "Universidad Valladolid Yucatan", "country" : "Mexico", "state" : null, "address" : {"street" : "Calle 47B 16-18, San Francisco", "city" : "Valladolid", "province" : "Yucat\u00e1n", "postal_code" : "97780"}, "contact" : {"telephone" : "+52(985) 856-3703", "website" : "http://uvy.edu.mx", "email" : "[email protected]", "fax" : null}, "funding" : "Private", "languages" : null, "academic_year" : null, "accrediting_agency" : null}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "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": "null"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"nearata-minecraft-avatars": {"type": "object", "properties": {"forum": {"type": "object", "properties": {"avatar_changed": {"type": "string"}, "use_button": {"type": "string"}, "change_button": {"type": "string"}, "dismiss_button": {"type": "string"}, "help_text": {"type": "string"}, "title": {"type": "string"}, "submit_button": {"type": "string"}, "username_uuid_not_valid": {"type": "string"}, "username_not_found": {"type": "string"}}, "required": ["avatar_changed", "use_button", "change_button", "dismiss_button", "help_text", "title", "submit_button", "username_uuid_not_valid", "username_not_found"]}}, "required": ["forum"]}}, "required": ["nearata-minecraft-avatars"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nearata-minecraft-avatars" : {"forum" : {"avatar_changed" : "L'avatar a \u00e9t\u00e9 modifi\u00e9.", "use_button" : "Utiliser l'avatar de Minecraft", "change_button" : "Modifier l'avatar de Minecraft", "dismiss_button" : "OK", "help_text" : "Doit \u00eatre un nom d'utilisateur ou un UUID valide (en clair ou en pointill\u00e9s).", "title" : "Avatars de Minecraft", "submit_button" : "Enregistrer les modifications", "username_uuid_not_valid" : "Nom d'utilisateur ou UUID non valide.", "username_not_found" : "Nom d'utilisateur introuvable."}}}
json_instruct
{"type": "object", "properties": {"nearata-minecraft-avatars": {"type": "object", "properties": {"forum": {"type": "object", "properties": {"avatar_changed": {"type": "string"}, "use_button": {"type": "string"}, "change_button": {"type": "string"}, "dismiss_button": {"type": "string"}, "help_text": {"type": "string"}, "title": {"type": "string"}, "submit_button": {"type": "string"}, "username_uuid_not_valid": {"type": "string"}, "username_not_found": {"type": "string"}}, "required": ["avatar_changed", "use_button", "change_button", "dismiss_button", "help_text", "title", "submit_button", "username_uuid_not_valid", "username_not_found"]}}, "required": ["forum"]}}, "required": ["nearata-minecraft-avatars"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Mexico - Social Protection and Labor", "downloads" : 80, "tags" : ["hxl", "indicators", "socioeconomics", "Mexico"], "hxl" : 1, "org" : "World Bank Group", "id" : "46dbda8a-3290-4662-82f5-191aab4e113f", "resources" : [{"update_date" : "2021-01-29T03:07:59.352514", "link" : "https://data.humdata.org/dataset/46dbda8a-3290-4662-82f5-191aab4e113f/resource/046b9e16-bca6-4608-9aba-1163560102e3/download/social-protection-and-labor_mex.csv"}, {"update_date" : "2021-01-29T03:07:59.352514", "link" : "https://data.humdata.org/dataset/46dbda8a-3290-4662-82f5-191aab4e113f/resource/903247fc-4188-415c-99d1-b91353754c3f/download/qc_social-protection-and-labor_mex.csv"}]}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[151.0, 39.166666666666664], [151.0, 39.25], [151.125, 39.25], [151.125, 39.166666666666664], [151.0, 39.166666666666664]]]}, "properties" : {"code" : 585160, "url" : "http://madefor.github.io/0410/api/v1/585160.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/585160.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"result": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "object", "properties": {"1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "number"}, "7": {"type": "number"}, "10": {"type": "string"}}, "required": ["1", "2", "3", "4", "5", "6", "7", "10"]}}}, "required": ["1"]}}, "required": ["result"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"result" : {"1" : [{"1" : "Sokoto Sadiq Abubakar III International, Nigeria (SKO)", "2" : "airport", "3" : "SKO", "4" : "SKO", "5" : "Sokoto", "6" : 5.20722222, "7" : 12.9163889, "10" : "Africa/Lagos"}, {"1" : "Skopje International, Macedonia (SKP)", "2" : "airport", "3" : "SKP", "4" : "SKP", "5" : "Skopje", "6" : 21.6213889, "7" : 41.9616667, "10" : "Europe/Skopje"}]}}
json_instruct
{"type": "object", "properties": {"result": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "object", "properties": {"1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "number"}, "7": {"type": "number"}, "10": {"type": "string"}}, "required": ["1", "2", "3", "4", "5", "6", "7", "10"]}}}, "required": ["1"]}}, "required": ["result"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"BadFaith": {"type": "string"}}, "required": ["BadFaith"]}}, "required": ["psr-0"]}}, "required": ["name", "type", "license", "description", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "BadFaith/BadFaith", "type" : "library", "license" : "MIT", "description" : "Accept-* Header parsing for PHP", "require" : {"php" : ">=5.3.0"}, "autoload" : {"psr-0" : {"BadFaith" : "lib/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"BadFaith": {"type": "string"}}, "required": ["BadFaith"]}}, "required": ["psr-0"]}}, "required": ["name", "type", "license", "description", "require", "autoload"], "$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"}, "achievementgroup": {"type": "string"}, "sortorder": {"type": "integer"}, "stages": {"type": "integer"}, "stage1": {"type": "object", "properties": {"title": {"type": "string"}, "ps5title": {"type": "string"}, "description": {"type": "string"}, "progress": {"type": "integer"}, "reward": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}, "required": ["title", "ps5title", "description", "progress", "reward"]}, "stage2": {"type": "object", "properties": {"title": {"type": "string"}, "ps5title": {"type": "string"}, "description": {"type": "string"}, "progress": {"type": "integer"}, "reward": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}, "required": ["title", "ps5title", "description", "progress", "reward"]}, "stage3": {"type": "object", "properties": {"title": {"type": "string"}, "ps5title": {"type": "string"}, "description": {"type": "string"}, "progress": {"type": "integer"}, "reward": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}, "required": ["title", "ps5title", "description", "progress", "reward"]}}, "required": ["name", "achievementgroup", "sortorder", "stages", "stage1", "stage2", "stage3"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Re-Armed, Re-Forged", "achievementgroup" : "The Hero's Journey", "sortorder" : 17, "stages" : 3, "stage1" : {"title" : "Re-Armed, Re-Forged", "ps5title" : "Re-Armed, Re-Forged (I)", "description" : "Ascend a weapon to Phase 2.", "progress" : 1, "reward" : {"name" : "Primogem", "count" : 5}}, "stage2" : {"title" : "Re-Armed, Re-Forged", "ps5title" : "Re-Armed, Re-Forged (II)", "description" : "Ascend a weapon to Phase 4.", "progress" : 1, "reward" : {"name" : "Primogem", "count" : 10}}, "stage3" : {"title" : "Re-Armed, Re-Forged", "ps5title" : "Re-Armed, Re-Forged (III)", "description" : "Ascend a weapon to Phase 6.", "progress" : 1, "reward" : {"name" : "Primogem", "count" : 20}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "achievementgroup": {"type": "string"}, "sortorder": {"type": "integer"}, "stages": {"type": "integer"}, "stage1": {"type": "object", "properties": {"title": {"type": "string"}, "ps5title": {"type": "string"}, "description": {"type": "string"}, "progress": {"type": "integer"}, "reward": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}, "required": ["title", "ps5title", "description", "progress", "reward"]}, "stage2": {"type": "object", "properties": {"title": {"type": "string"}, "ps5title": {"type": "string"}, "description": {"type": "string"}, "progress": {"type": "integer"}, "reward": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}, "required": ["title", "ps5title", "description", "progress", "reward"]}, "stage3": {"type": "object", "properties": {"title": {"type": "string"}, "ps5title": {"type": "string"}, "description": {"type": "string"}, "progress": {"type": "integer"}, "reward": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "count"]}}, "required": ["title", "ps5title", "description", "progress", "reward"]}}, "required": ["name", "achievementgroup", "sortorder", "stages", "stage1", "stage2", "stage3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"\u80fd\u529b": {"type": "array", "items": {"type": "string"}}, "\u6240\u6301\u91d1": {"type": "integer"}}, "required": ["\u80fd\u529b", "\u6240\u6301\u91d1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\u80fd\u529b" : ["\u8cb7\u3046", "\u50cd\u304f"], "\u6240\u6301\u91d1" : 100}
json_instruct
{"type": "object", "properties": {"\u80fd\u529b": {"type": "array", "items": {"type": "string"}}, "\u6240\u6301\u91d1": {"type": "integer"}}, "required": ["\u80fd\u529b", "\u6240\u6301\u91d1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"forIn": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}}, "required": ["prefix", "body", "description"]}, "forOf": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}}, "required": ["prefix", "body", "description"]}}, "required": ["forIn", "forOf"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"forIn" : {"prefix" : "forIn", "body" : ["for(const ${1:item} in ${2:object}) {", "\t$0", "}", ""], "description" : "Iterating over property values of iterable objects"}, "forOf" : {"prefix" : "forOf", "body" : ["for(const ${1:item} of ${2:object}) {", "\t$0", "}", ""], "description" : "Iterating over property names of iterable objects"}}
json_instruct
{"type": "object", "properties": {"forIn": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}}, "required": ["prefix", "body", "description"]}, "forOf": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}}, "required": ["prefix", "body", "description"]}}, "required": ["forIn", "forOf"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d672-9", "text" : ""}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "project_id", "storage_bucket"]}, "client": {"type": "array", "items": {"type": "object", "properties": {"client_info": {"type": "object", "properties": {"mobilesdk_app_id": {"type": "string"}, "android_client_info": {"type": "object", "properties": {"package_name": {"type": "string"}}, "required": ["package_name"]}}, "required": ["mobilesdk_app_id", "android_client_info"]}, "oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}, "api_key": {"type": "array", "items": {"type": "object", "properties": {"current_key": {"type": "string"}}, "required": ["current_key"]}}, "services": {"type": "object", "properties": {"appinvite_service": {"type": "object", "properties": {"other_platform_oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}}, "required": ["other_platform_oauth_client"]}}, "required": ["appinvite_service"]}}, "required": ["client_info", "oauth_client", "api_key", "services"]}}, "configuration_version": {"type": "string"}}, "required": ["project_info", "client", "configuration_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"project_info" : {"project_number" : "348624245977", "project_id" : "advanced-flutter-camp-ef65f", "storage_bucket" : "advanced-flutter-camp-ef65f.appspot.com"}, "client" : [{"client_info" : {"mobilesdk_app_id" : "1:348624245977:android:cca26c6159755e6ad45ac8", "android_client_info" : {"package_name" : "com.example.tflite_flutter_app"}}, "oauth_client" : [{"client_id" : "348624245977-1l7t38kr0n0ag1d03qhptq3hu24ll211.apps.googleusercontent.com", "client_type" : 3}], "api_key" : [{"current_key" : "AIzaSyBVVLHSuGLM0zEsob786IuL0ps668QEWII"}], "services" : {"appinvite_service" : {"other_platform_oauth_client" : [{"client_id" : "348624245977-1l7t38kr0n0ag1d03qhptq3hu24ll211.apps.googleusercontent.com", "client_type" : 3}, {"client_id" : "348624245977-t79cneqfg4q843ckj4nodv4je5296du1.apps.googleusercontent.com", "client_type" : 2, "ios_info" : {"bundle_id" : "com.example.tflite_flutter_app"}}]}}}], "configuration_version" : "1"}
json_instruct
{"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "project_id", "storage_bucket"]}, "client": {"type": "array", "items": {"type": "object", "properties": {"client_info": {"type": "object", "properties": {"mobilesdk_app_id": {"type": "string"}, "android_client_info": {"type": "object", "properties": {"package_name": {"type": "string"}}, "required": ["package_name"]}}, "required": ["mobilesdk_app_id", "android_client_info"]}, "oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}, "api_key": {"type": "array", "items": {"type": "object", "properties": {"current_key": {"type": "string"}}, "required": ["current_key"]}}, "services": {"type": "object", "properties": {"appinvite_service": {"type": "object", "properties": {"other_platform_oauth_client": {"type": "array", "items": {"type": "object", "properties": {"client_id": {"type": "string"}, "client_type": {"type": "integer"}}, "required": ["client_id", "client_type"]}}}, "required": ["other_platform_oauth_client"]}}, "required": ["appinvite_service"]}}, "required": ["client_info", "oauth_client", "api_key", "services"]}}, "configuration_version": {"type": "string"}}, "required": ["project_info", "client", "configuration_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"@component/*": {"type": "array", "items": {"type": "string"}}, "@route/*": {"type": "array", "items": {"type": "string"}}, "@page/*": {"type": "array", "items": {"type": "string"}}, "@utils/*": {"type": "array", "items": {"type": "string"}}, "@lib": {"type": "array", "items": {"type": "string"}}}, "required": ["@component/*", "@route/*", "@page/*", "@utils/*", "@lib"]}}, "required": ["baseUrl", "paths"]}}, "required": ["compilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"compilerOptions" : {"baseUrl" : "./src", "paths" : {"@component/*" : ["component/*"], "@route/*" : ["route/*"], "@page/*" : ["page/*"], "@utils/*" : ["utils/*"], "@lib" : ["lib/*"]}}}
json_instruct
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "paths": {"type": "object", "properties": {"@component/*": {"type": "array", "items": {"type": "string"}}, "@route/*": {"type": "array", "items": {"type": "string"}}, "@page/*": {"type": "array", "items": {"type": "string"}}, "@utils/*": {"type": "array", "items": {"type": "string"}}, "@lib": {"type": "array", "items": {"type": "string"}}}, "required": ["@component/*", "@route/*", "@page/*", "@utils/*", "@lib"]}}, "required": ["baseUrl", "paths"]}}, "required": ["compilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"$schema": {"type": "string"}, "$ref": {"type": "string"}, "ForeachTask": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"_fw_name": {"type": "object", "properties": {"const": {"type": "string"}}, "required": ["const"]}, "task": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "split": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "number of chunks": {"type": "object", "properties": {"type": {"type": "string"}, "minimum": {"type": "integer"}}, "required": ["type", "minimum"]}}, "required": ["_fw_name", "task", "split", "number of chunks"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["properties", "required"]}}, "required": ["$schema", "$ref", "ForeachTask"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "http://json-schema.org/draft-07/schema#", "$ref" : "#/ForeachTask", "ForeachTask" : {"properties" : {"_fw_name" : {"const" : "ForeachTask"}, "task" : {"$ref" : "firetask.json#/Firetask"}, "split" : {"type" : "string"}, "number of chunks" : {"type" : "integer", "minimum" : 1}}, "required" : ["_fw_name", "task", "split"]}}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "$ref": {"type": "string"}, "ForeachTask": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"_fw_name": {"type": "object", "properties": {"const": {"type": "string"}}, "required": ["const"]}, "task": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "split": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "number of chunks": {"type": "object", "properties": {"type": {"type": "string"}, "minimum": {"type": "integer"}}, "required": ["type", "minimum"]}}, "required": ["_fw_name", "task", "split", "number of chunks"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["properties", "required"]}}, "required": ["$schema", "$ref", "ForeachTask"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"comment": {"type": "object", "properties": {"text": {"type": "string"}, "file_attachments": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "filename": {"type": "string"}, "created_at": {"type": "integer"}, "uploader_id": {"type": "integer"}, "thumbnailable": {"type": "boolean"}, "height": {"type": "integer"}, "width": {"type": "integer"}, "size": {"type": "integer"}, "download_url": {"type": "string"}, "thumbnail_url": {"type": "string"}}, "required": ["type", "id", "filename", "created_at", "uploader_id", "thumbnailable", "height", "width", "size", "download_url", "thumbnail_url"]}}}, "required": ["text", "file_attachments"]}, "current_state": {"type": "string"}}, "required": ["comment", "current_state"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"comment" : {"text" : "Here are the new plans.", "file_attachments" : [{"type" : "file_attachment", "id" : 21, "filename" : "Corellian corvette deck plan.tiff", "created_at" : 1412683200000, "uploader_id" : 101, "thumbnailable" : false, "height" : 216, "width" : 650, "size" : 561878, "download_url" : "/attachments/0000/0021/Corellian corvette deck plan_big.tiff", "thumbnail_url" : "/attachments/0000/0021/Corellian corvette deck plan_thumb.tiff"}]}, "current_state" : "rejected"}
json_instruct
{"type": "object", "properties": {"comment": {"type": "object", "properties": {"text": {"type": "string"}, "file_attachments": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "filename": {"type": "string"}, "created_at": {"type": "integer"}, "uploader_id": {"type": "integer"}, "thumbnailable": {"type": "boolean"}, "height": {"type": "integer"}, "width": {"type": "integer"}, "size": {"type": "integer"}, "download_url": {"type": "string"}, "thumbnail_url": {"type": "string"}}, "required": ["type", "id", "filename", "created_at", "uploader_id", "thumbnailable", "height", "width", "size", "download_url", "thumbnail_url"]}}}, "required": ["text", "file_attachments"]}, "current_state": {"type": "string"}}, "required": ["comment", "current_state"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "var _jsxFileName = \"/Users/jasoncruz/Documents/clones/finance-app/src/components/Header/Header.jsx\";\nimport React, { useState } from 'react';\nimport styled from 'styled-components';\nimport siteLogo from '../../images/atomFinanceLogo.png';\n\nconst Header = () => {\n const Header = styled.header`\n height: 100px;\n width: 100%;\n background-color: grey;\n `;\n const SiteLogo = styled.img`\n height: 90%;\n `;\n return /*#__PURE__*/React.createElement(Header, {\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 18,\n columnNumber: 5\n }\n }, /*#__PURE__*/React.createElement(SiteLogo, {\n src: siteLogo,\n alt: \"Site logo\",\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 19,\n columnNumber: 7\n }\n }));\n};\n\nexport default Header;", "map" : {"version" : 3, "sources" : ["/Users/jasoncruz/Documents/clones/finance-app/src/components/Header/Header.jsx"], "names" : ["React", "useState", "styled", "siteLogo", "Header", "header", "SiteLogo", "img"], "mappings" : ";AAAA,OAAOA,KAAP,IAAgBC,QAAhB,QAAgC,OAAhC;AACA,OAAOC,MAAP,MAAmB,mBAAnB;AACA,OAAOC,QAAP,MAAqB,kCAArB;;AAGA,MAAMC,MAAM,GAAG,MAAM;AAEnB,QAAMA,MAAM,GAAGF,MAAM,CAACG,MAAO;;;;GAA7B;AAMA,QAAMC,QAAQ,GAAGJ,MAAM,CAACK,GAAI;;GAA5B;AAGA,sBACE,oBAAC,MAAD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBACE,oBAAC,QAAD;AAAU,IAAA,GAAG,EAAEJ,QAAf;AAAyB,IAAA,GAAG,EAAC,WAA7B;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IADF,CADF;AAKD,CAhBD;;AAkBA,eAAeC,MAAf", "sourcesContent" : ["import React, { useState } from 'react'\nimport styled from 'styled-components'\nimport siteLogo from '../../images/atomFinanceLogo.png'\n\n\nconst Header = () => {\n\n const Header = styled.header`\n height: 100px;\n width: 100%;\n background-color: grey;\n `;\n\n const SiteLogo = styled.img`\n height: 90%;\n `;\n return (\n <Header>\n <SiteLogo src={siteLogo} alt='Site logo' />\n </Header>\n );\n}\n\nexport default Header;"]}, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"next": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["next", "react", "react-dom"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "export": {"type": "string"}}, "required": ["dev", "build", "start", "export"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/react": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "eslint-plugin-react-hooks": {"type": "string"}, "prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "@types/react", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-plugin-react", "eslint-plugin-react-hooks", "prettier", "typescript"]}}, "required": ["name", "version", "main", "repository", "author", "license", "private", "dependencies", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "masawada-slotmachine", "version" : "1.0.0", "main" : "index.js", "repository" : "ssh://[email protected]/astj/masawada-slotmachine.git", "author" : "Asato Wakisaka <[email protected]>", "license" : "MIT", "private" : true, "dependencies" : {"next" : "^10.0.3", "react" : "^17.0.1", "react-dom" : "^17.0.1"}, "scripts" : {"dev" : "next dev", "build" : "next build", "start" : "next start", "export" : "next build && next export"}, "devDependencies" : {"@types/node" : "^14.14.10", "@types/react" : "^17.0.0", "@typescript-eslint/eslint-plugin" : "^4.9.0", "@typescript-eslint/parser" : "^4.9.0", "eslint" : "^7.15.0", "eslint-plugin-react" : "^7.21.5", "eslint-plugin-react-hooks" : "^4.2.0", "prettier" : "^2.2.1", "typescript" : "^4.1.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"next": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["next", "react", "react-dom"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "export": {"type": "string"}}, "required": ["dev", "build", "start", "export"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/react": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "eslint-plugin-react-hooks": {"type": "string"}, "prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "@types/react", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-plugin-react", "eslint-plugin-react-hooks", "prettier", "typescript"]}}, "required": ["name", "version", "main", "repository", "author", "license", "private", "dependencies", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-6g8p-jh7r-r2gq", "modified" : "2022-05-01T23:37:18Z", "published" : "2022-05-01T23:37:18Z", "aliases" : ["CVE-2008-1169"], "details" : "Directory traversal vulnerability in the embedded HTTP server in SCI Photo Chat Server 3.4.9 and earlier allows remote attackers to read arbitrary files via a \"..\\\" (dot dot backslash) or \"../\" (dot dot forward slash) in the GET command.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2008-1169"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/40655"}, {"type" : "WEB", "url" : "http://aluigi.altervista.org/adv/scichatdt-adv.txt"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/27872"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2008/0614"}], "database_specific" : {"cwe_ids" : ["CWE-22"], "severity" : "HIGH", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"answers": {"type": "array", "items": {"type": "string"}}, "centerLetter": {"type": "string"}, "letterString": {"type": "string"}, "outerLetters": {"type": "array", "items": {"type": "string"}}, "pangrams": {"type": "array", "items": {"type": "string"}}, "validLetters": {"type": "array", "items": {"type": "string"}}}, "required": ["answers", "centerLetter", "letterString", "outerLetters", "pangrams", "validLetters"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"answers" : ["ciggy", "cucking", "cuing", "cunning", "cynic", "guck", "gucky", "icing", "icky", "kick", "kicking", "kicky", "kinnikinic", "kinnikinick", "kinnikinnick", "nick", "nicking", "unci", "uncini", "yuck", "yucking", "yucky"], "centerLetter" : "c", "letterString" : "cgiknuy", "outerLetters" : ["g", "i", "k", "n", "u", "y"], "pangrams" : ["yucking"], "validLetters" : ["c", "g", "i", "k", "n", "u", "y"]}
json_instruct
{"type": "object", "properties": {"answers": {"type": "array", "items": {"type": "string"}}, "centerLetter": {"type": "string"}, "letterString": {"type": "string"}, "outerLetters": {"type": "array", "items": {"type": "string"}}, "pangrams": {"type": "array", "items": {"type": "string"}}, "validLetters": {"type": "array", "items": {"type": "string"}}}, "required": ["answers", "centerLetter", "letterString", "outerLetters", "pangrams", "validLetters"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "productName": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "productName", "version", "description", "main", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "streeteasy-agent-tools-app", "productName" : "streeteasy-agent-tools-app", "version" : "1.0.0", "description" : "StreetEasy App Folder", "main" : "./main.prod.js", "license" : "MIT", "dependencies" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "productName": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "productName", "version", "description", "main", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K21329": {"type": "string"}}, "required": ["K21329"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn01130": {"type": "string"}, "rn00523": {"type": "string"}}, "required": ["rn01130", "rn00523"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"comment" : "", "definition" : "dTDP-4-amino-4,6-dideoxy-D-glucose + Reduced ferredoxin + Oxygen <=> dTDP-4-hydroxyamino-4,6-dideoxy-alpha-D-glucose + Oxidized ferredoxin + H2O", "orthologs" : {"K21329" : "aminosugar N-oxygenase [EC:1.14.15.-]"}, "name" : "dTDP-4-amino-4,6-dideoxy-D-glucose:reduced-ferredoxin:oxygen oxidoreductase", "product_stoichiometries" : ["1", "1", "1"], "enzymes" : ["1.14.15.-"], "equation" : "C04268 + C00138 + C00007 <=> C21348 + C00139 + C00001", "glycans" : false, "substrate_stoichiometries" : ["1", "1", "1"], "rpairs" : {}, "entry_id" : "R11468", "pathways" : {"rn01130" : "Biosynthesis of antibiotics", "rn00523" : "Polyketide sugar unit biosynthesis"}, "products" : ["C21348", "C00139", "C00001"], "substrates" : ["C04268", "C00138", "C00007"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {"K21329": {"type": "string"}}, "required": ["K21329"]}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn01130": {"type": "string"}, "rn00523": {"type": "string"}}, "required": ["rn01130", "rn00523"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["230224103001", "\u8857\u9053\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["230224103200", "\u5148\u8fdb\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["230224103201", "\u4fdd\u9686\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["230224103202", "\u9f50\u5fc3\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["230224103203", "\u80e1\u52d2\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["230224103204", "\u827e\u4f26\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["230224103205", "\u4e34\u6c5f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 7402062010, "parent" : 7402062, "name" : "DANA TIMUR", "latitude" : null, "longitude" : null, "postal" : [], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-48vm-j68p-34jm", "modified" : "2022-05-01T18:09:03Z", "published" : "2022-05-01T18:09:03Z", "aliases" : ["CVE-2007-2969"], "details" : "PHP remote file inclusion vulnerability in newsletter.php in WAnewsletter 2.1.3 and earlier allows remote attackers to execute arbitrary PHP code via a URL in the waroot parameter.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2007-2969"}, {"type" : "WEB", "url" : "https://www.exploit-db.com/exploits/4000"}, {"type" : "WEB", "url" : "http://osvdb.org/38812"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/24177"}], "database_specific" : {"cwe_ids" : [], "severity" : "HIGH", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["150123205200", "\u5927\u7ea2\u57ce\u6751\u6c11\u59d4\u5458\u4f1a", "210", "0"], ["150123205201", "\u5c0f\u7ea2\u57ce\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205202", "\u4e09\u652f\u6811\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205203", "\u7ea2\u5c71\u53e3\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205204", "\u5c0f\u7f38\u623f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205205", "\u5411\u9633\u6c9f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205206", "\u6986\u6811\u6c9f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205207", "\u90d1\u5bb6\u53c1\u53f7\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205208", "\u6a0a\u5bb6\u5341\u4e94\u53f7\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205209", "\u738b\u5bb6\u4e8c\u5341\u53f7\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205210", "\u82d7\u5bb6\u4e8c\u5341\u4e5d\u53f7\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205211", "\u5f20\u5bb6\u56db\u5341\u4e00\u53f7\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205212", "\u65b0\u7ea2\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205213", "\u6986\u6811\u6881\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205214", "\u767d\u5176\u7a91\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205215", "\u5e99\u6c9f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205216", "\u9a86\u9a7c\u6c9f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205217", "\u6c34\u6cc9\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205218", "\u4e09\u9053\u8425\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150123205219", "\u9a6c\u5bb6\u592d\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$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"}, "theme": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "engines": {"type": "object", "properties": {"atom": {"type": "string"}}, "required": ["atom"]}}, "required": ["name", "theme", "version", "description", "license", "repository", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "solarized-dark-apparent-ui-successor", "theme" : "ui", "version" : "0.2.0", "description" : "Solarized Dark UI theme for Atom with slightly brighter and more apparent colors. The successor!", "license" : "MIT", "repository" : "https://github.com/joshnroy/solarized-dark-apparent-ui-successor", "engines" : {"atom" : ">0.50.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "theme": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "engines": {"type": "object", "properties": {"atom": {"type": "string"}}, "required": ["atom"]}}, "required": ["name", "theme", "version", "description", "license", "repository", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "t": {"type": "array", "items": {"type": "integer"}}, "v": {"type": "array", "items": {"type": "string"}}}, "required": ["x", "y", "t", "v"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"x" : "242", "y" : "177", "t" : [610, 1383, 55, 67, 1413, 2484, 131, 133, 134, 139, 140, 2527, 1868, 2477, 180, 195, 225, 1107, 2024, 259, 2037, 2058, 2063, 2072, 2085, 2087, 2099, 2120, 2129, 2127, 335, 1763, 355, 1603, 1611, 1778, 1282, 1286, 1281, 1287, 1294, 1293, 1295, 554, 547, 544, 573, 595, 600, 603, 2616, 2667, 2617, 320, 1624, 545, 2603, 168, 2518, 2677, 2528, 552, 2526, 2030, 1680, 2227, 877, 2651, 1853, 2035, 2042, 1554, 1861, 316, 313, 479, 688, 2119, 2611, 218, 421, 176, 2122, 1776, 187, 1296, 1343, 778, 2535, 194, 1532, 69, 2021, 2043, 2623, 623, 1802, 1811, 2056, 2092, 1946, 1758], "v" : ["Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving"]}, {"x" : "246", "y" : "236", "t" : [139, 176, 316, 313, 573, 547, 194, 259, 545, 195, 69, 544], "v" : ["Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving", "Moving"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "t": {"type": "array", "items": {"type": "integer"}}, "v": {"type": "array", "items": {"type": "string"}}}, "required": ["x", "y", "t", "v"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {"type": "object", "properties": {"color": {"type": "string"}, "default": {"type": "boolean"}, "description": {"type": "string"}, "id": {"type": "integer"}, "name": {"type": "string"}, "node_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["color", "default", "description", "id", "name", "node_id", "url"]}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ETag" : "W/\"b0defd15b78e7b88e8f4cf25e09d88290bb9cd71166f0f51684f498b23677e10\"", "Last-Modified" : "Wed, 12 May 2021 07:04:46 GMT", "base" : {"repo" : {"name" : "rift-feedstock"}}, "closed_at" : "2021-05-12T07:04:44Z", "created_at" : "2020-12-16T19:26:47Z", "draft" : false, "head" : {"ref" : "this_is_not_a_branch"}, "html_url" : "https://github.com/conda-forge/rift-feedstock/pull/13", "id" : 541388943, "labels" : [{"color" : "0e8a16", "default" : false, "description" : "Merge the PR when CI passes", "id" : 1891331153, "name" : "automerge", "node_id" : "MDU6TGFiZWwxODkxMzMxMTUz", "url" : "https://api.github.com/repos/conda-forge/rift-feedstock/labels/automerge"}], "mergeable" : null, "mergeable_state" : "unknown", "merged" : true, "merged_at" : "2021-05-12T07:04:44Z", "number" : 13, "state" : "closed", "updated_at" : "2021-05-12T07:04:46Z"}
json_instruct
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {"type": "object", "properties": {"color": {"type": "string"}, "default": {"type": "boolean"}, "description": {"type": "string"}, "id": {"type": "integer"}, "name": {"type": "string"}, "node_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["color", "default", "description", "id", "name", "node_id", "url"]}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : {"type" : "Feature", "properties" : {"name" : "\u6c5f\u5e72\u533a", "id" : "330104"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[120.287345, 30.3238430000001], [120.290767851563, 30.3116506171876], [120.299537382813, 30.3204201484375], [120.300704375, 30.350483625], [120.333985625, 30.367202375], [120.337345, 30.373843], [120.400860625, 30.3842775703126], [120.37298953125, 30.3627614570313], [120.386773710938, 30.33972190625], [120.407345, 30.3238430000001], [120.397174101563, 30.2842116523437], [120.352720976563, 30.2497585273438], [120.33142703125, 30.2579274726562], [120.288580351563, 30.2936598945313], [120.239967070313, 30.2754689765626], [120.217345, 30.233843], [120.207345, 30.233843], [120.19181765625, 30.2416994453126], [120.187345, 30.263843], [120.17931765625, 30.2965187812501], [120.204913359375, 30.3358229804688], [120.197345, 30.353843], [120.20298953125, 30.35819846875], [120.217345, 30.393843], [120.23422, 30.389868390625], [120.2306653125, 30.3784474921876], [120.242594023438, 30.3434377265625], [120.262345, 30.3372853828125], [120.273150664063, 30.3406520820313], [120.281158476563, 30.3276564765625], [120.287345, 30.3238430000001]]]]}}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "host": {"type": "string"}, "password": {"type": "string"}, "protocol": {"type": "string"}, "port": {"type": "integer"}, "username": {"type": "string"}, "remotePath": {"type": "string"}, "uploadOnSave": {"type": "boolean"}}, "required": ["name", "host", "password", "protocol", "port", "username", "remotePath", "uploadOnSave"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Blue Host", "host" : "ftp.adarerestaurant.com", "password" : "LAvulC9^dNHH", "protocol" : "ftp", "port" : 21, "username" : "adareres", "remotePath" : "/public_html", "uploadOnSave" : false}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "host": {"type": "string"}, "password": {"type": "string"}, "protocol": {"type": "string"}, "port": {"type": "integer"}, "username": {"type": "string"}, "remotePath": {"type": "string"}, "uploadOnSave": {"type": "boolean"}}, "required": ["name", "host", "password", "protocol", "port", "username", "remotePath", "uploadOnSave"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}, "parsed_date": {"type": "string"}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4", "parsed_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["040554"], "\uc81c\uc548\uc77c\uc790" : ["1959-03-14"], "\uc81c\uc548\uc790" : ["\ubc15\uc6a9\uc775\uc758\uc6d0\uc67814\uc778"], "\ubb38\uc11c" : ["\uc758\uc548\uc6d0\ubb38"], "\uc81c\uc548\ud68c\uae30" : ["\uc81c4\ub300(1958~1960)\uc81c32\ud68c"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4" : {"\uc0c1\uc815\uc77c" : [""], "\uc758\uacb0\uc77c" : ["1959-07-17"], "\ud68c\uc758\uba85" : [""], "\ud68c\uc758\uacb0\uacfc" : ["\ud68c\uae30\ubd88\uacc4\uc18d\ud3d0\uae30"], "\ud68c\uc758\ub85d" : [""]}, "parsed_date" : "2021-02-17"}
json_instruct
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}, "parsed_date": {"type": "string"}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4", "parsed_date"], "$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"}, "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" : "32", "regencyId" : "13", "districtId" : "28", "name" : "Mekarwangi"}, {"id" : "2002", "provinceId" : "32", "regencyId" : "13", "districtId" : "28", "name" : "Bendungan"}, {"id" : "2003", "provinceId" : "32", "regencyId" : "13", "districtId" : "28", "name" : "Munjul"}, {"id" : "2004", "provinceId" : "32", "regencyId" : "13", "districtId" : "28", "name" : "Margahayu"}, {"id" : "2005", "provinceId" : "32", "regencyId" : "13", "districtId" : "28", "name" : "Pangsor"}, {"id" : "2006", "provinceId" : "32", "regencyId" : "13", "districtId" : "28", "name" : "Sumurgintung"}, {"id" : "2007", "provinceId" : "32", "regencyId" : "13", "districtId" : "28", "name" : "Balimbing"}, {"id" : "2008", "provinceId" : "32", "regencyId" : "13", "districtId" : "28", "name" : "Cidahu"}, {"id" : "2009", "provinceId" : "32", "regencyId" : "13", "districtId" : "28", "name" : "Cidadap"}]
json_instruct
{"type": "array", "items": {"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 a JSON structure that matches this schema definition: {"type": "object", "properties": {"packages": {"type": "string"}, "sentence": {"type": "string"}}, "required": ["packages", "sentence"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"packages" : "*", "sentence" : "je veux aller de Paris Dallas \u00e0 Marseille Tombouctou Valence"}
json_instruct
{"type": "object", "properties": {"packages": {"type": "string"}, "sentence": {"type": "string"}}, "required": ["packages", "sentence"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-88.460708, 40.224804], [-88.459957, 40.39885], [-88.329228, 40.398585], [-88.23372, 40.399518], [-88.231609, 40.223982], [-88.46072, 40.223322], [-88.460708, 40.224804]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 20992}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"base_path": {"type": "string"}, "header": {"type": "object", "properties": {"Content-Type": {"type": "string"}}, "required": ["Content-Type"]}, "request": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["base_path", "header", "request"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"base_path" : "{{context_path}}", "header" : {"Content-Type" : "application/json"}, "request" : {"name" : "microservice_test_accelerator"}}
json_instruct
{"type": "object", "properties": {"base_path": {"type": "string"}, "header": {"type": "object", "properties": {"Content-Type": {"type": "string"}}, "required": ["Content-Type"]}, "request": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["base_path", "header", "request"], "$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": {"cnameFrom": {"type": "string"}, "cnameTo": {"type": "string"}, "cnameType": {"type": "string"}, "edgeHostnameId": {"type": "integer"}}, "required": ["cnameFrom", "cnameTo", "cnameType", "edgeHostnameId"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"cnameFrom" : "testing-snippets-pull.com", "cnameTo" : "testing-snippets-pull.com.edgesuite.net", "cnameType" : "EDGE_HOSTNAME", "edgeHostnameId" : 3248236}, {"cnameFrom" : "testing-snippets.com", "cnameTo" : "testing-snippets.edgesuite.net", "cnameType" : "EDGE_HOSTNAME", "edgeHostnameId" : 3216762}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"cnameFrom": {"type": "string"}, "cnameTo": {"type": "string"}, "cnameType": {"type": "string"}, "edgeHostnameId": {"type": "integer"}}, "required": ["cnameFrom", "cnameTo", "cnameType", "edgeHostnameId"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"tests": {"type": "object", "properties": {}, "required": []}, "interrupted": {"type": "boolean"}, "num_failures_by_type": {"type": "object", "properties": {}, "required": []}, "version": {"type": "integer"}, "seconds_since_epoch": {"type": "number"}, "path_delimiter": {"type": "string"}}, "required": ["tests", "interrupted", "num_failures_by_type", "version", "seconds_since_epoch", "path_delimiter"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"tests" : {}, "interrupted" : false, "num_failures_by_type" : {}, "version" : 3, "seconds_since_epoch" : 1530869282.514833, "path_delimiter" : "/"}
json_instruct
{"type": "object", "properties": {"tests": {"type": "object", "properties": {}, "required": []}, "interrupted": {"type": "boolean"}, "num_failures_by_type": {"type": "object", "properties": {}, "required": []}, "version": {"type": "integer"}, "seconds_since_epoch": {"type": "number"}, "path_delimiter": {"type": "string"}}, "required": ["tests", "interrupted", "num_failures_by_type", "version", "seconds_since_epoch", "path_delimiter"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "field": {"type": "string"}, "value": {"type": "integer"}}, "required": ["type", "field", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "eq", "field" : "vrf_id", "value" : 0}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "field": {"type": "string"}, "value": {"type": "integer"}}, "required": ["type", "field", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "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" : 15751, "citation_title" : "Intermediation and Economic Integration", "citation_author" : ["Pol Antr\u00e0s", "Arnaud Costinot"], "citation_publication_date" : "2010-02-18", "issue_date" : "2010-02-18", "revision_date" : "None", "topics" : ["Microeconomics", "Market Structure and Distribution", "International Economics", "Trade", "Development and Growth", "Development"], "program" : ["International Trade and Investment"], "projects" : null, "working_groups" : null, "abstract" : "\n\nThe theory of international trade has paid scant attention to market institutions. Neither neoclassical theory nor new trade models typically specify the process by which supply and demand meet. Yet in the real world, intermediaries play a central role in materializing the gains from exchange outlined by standard trade theories. In Antr\u00e0s and Costinot (2010), we have developed a stylized but explicit model of intermediation in trade. In this short paper, we present a variant of this model that illustrates the potential role of intermediaries in facilitating the realization of the gains from trade.\n\n", "acknowledgement" : "\nWe thank Jon Eaton, Emmanuel Farhi, Gita Gopinath, and Steve Redding for comments. This paper has been prepared for the 2010 American Economic Review Papers and Proceedings. The views expressed herein are those of the authors and do not necessarily reflect the views of the National Bureau of Economic Research.\n\n\n"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "783a6112-8e36-4d5c-adc5-dffbc2fae75c", "playerTags" : [], "teamTags" : ["ca3f1c8c-c025-4d8e-8eef-5be6accbeb16", "c73b705c-40ad-4633-a6ed-d357ee2e2bcf"], "gameTags" : ["b986bf3b-9293-48ce-9af3-f416efb4a227"], "metadata" : {"play" : 164, "subPlay" : -1}, "created" : "2021-04-15T15:13:53.763Z", "season" : 15, "tournament" : -1, "type" : 15, "day" : 69, "phase" : 4, "category" : 0, "description" : "Foul Ball. 1-1", "nuts" : 0}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"optimist": {"type": "string"}, "cradle": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "connect": {"type": "string"}, "request": {"type": "string"}, "step": {"type": "string"}, "watch": {"type": "string"}}, "required": ["optimist", "cradle", "ejs", "express", "connect", "request", "step", "watch"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["name", "version", "description", "author", "keywords", "private", "dependencies", "engines", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "{{project}}", "version" : "0.0.1", "description" : "{{description}}", "author" : "{{name}} <{{email}}>", "keywords" : [], "private" : true, "dependencies" : {"optimist" : ">= 0.0.3", "cradle" : ">= 0.3.1", "ejs" : ">= 0.2.1", "express" : ">= 1.0.1", "connect" : " >= 1.4.1", "request" : ">= 0.10.0", "step" : ">= 0.0.3", "watch" : ">= 0.3.0"}, "engines" : {"node" : ">= 0.4.x"}, "scripts" : {"start" : "node run.js"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"optimist": {"type": "string"}, "cradle": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "connect": {"type": "string"}, "request": {"type": "string"}, "step": {"type": "string"}, "watch": {"type": "string"}}, "required": ["optimist", "cradle", "ejs", "express", "connect", "request", "step", "watch"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["name", "version", "description", "author", "keywords", "private", "dependencies", "engines", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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" : [[[[-95.854359, 33.136024], [-95.849925, 33.136999], [-95.848263, 33.137363], [-95.847858, 33.137458], [-95.847398, 33.137521], [-95.846986, 33.137562], [-95.846599, 33.137585], [-95.846575, 33.138976], [-95.846546, 33.140185], [-95.844371, 33.140163], [-95.842348, 33.140151], [-95.842334, 33.142359], [-95.841808, 33.142358], [-95.840543, 33.142353], [-95.840532, 33.142865], [-95.840496, 33.143517], [-95.840427, 33.144184], [-95.840393, 33.144466], [-95.840333, 33.144965], [-95.840245, 33.145953], [-95.840176, 33.146628], [-95.840147, 33.148373], [-95.840145, 33.148494], [-95.840118, 33.149132], [-95.835782, 33.148883], [-95.835821, 33.147361], [-95.835892, 33.144616], [-95.836912, 33.144538], [-95.836928, 33.144098], [-95.83803, 33.144027], [-95.838638, 33.143988], [-95.838638, 33.143722], [-95.837465, 33.143759], [-95.837053, 33.143769], [-95.836956, 33.143566], [-95.836628, 33.142881], [-95.83307, 33.142876], [-95.833088, 33.142235], [-95.833219, 33.13747], [-95.833239, 33.136207], [-95.833288, 33.134268], [-95.833404, 33.130683], [-95.828631, 33.131029], [-95.828578, 33.130498], [-95.833373, 33.130128], [-95.833391, 33.129948], [-95.833411, 33.129737], [-95.833422, 33.129558], [-95.833297, 33.129565], [-95.832001, 33.129655], [-95.832022, 33.129235], [-95.83344, 33.129198], [-95.833419, 33.126531], [-95.833425, 33.125408], [-95.84073, 33.125458], [-95.84073, 33.125662], [-95.84073, 33.125888], [-95.844388, 33.125895], [-95.844415, 33.128869], [-95.844396, 33.129069], [-95.844375, 33.129284], [-95.844363, 33.129388], [-95.844356, 33.129481], [-95.844362, 33.129638], [-95.846454, 33.129606], [-95.846946, 33.129613], [-95.846884, 33.133481], [-95.846765, 33.133474], [-95.846755, 33.133609], [-95.846696, 33.135249], [-95.849735, 33.134889], [-95.853455, 33.134426], [-95.854188, 33.135213], [-95.854581, 33.135975], [-95.854359, 33.136024]]]], "properties" : {"id" : "usa-tx-cumby-city", "type" : "city", "name" : "Cumby", "code" : "4818128"}}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "originalId": {"type": "integer"}, "rarity": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "load": {"type": "integer"}, "energy": {"type": "integer"}, "exp": {"type": "integer"}, "category": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "string"}}, "required": ["id", "category"]}}, "recipe": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["id", "name", "amount"]}}}, "required": ["id", "originalId", "rarity", "name", "description", "load", "energy", "exp", "category", "recipe"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "fine_brushwork_peaks_of_minlin", "originalId" : 364104, "rarity" : 4, "name" : "Lukisan Tinta: Puncak Minlin", "description" : "Seniman di balik karya ini tidak diketahui, tapi siapa pun pasti akan setuju bahwa pemandangan pegunungan dan sungai yang mengalir dengan indah dalam lukisan ini, adalah karya seorang seniman hebat.\\nKertas yang digunakan di lukisan Liyue memang unik, karena membutuhkan bambu dari Desa Qingce. Para pelukis dari bangsa lain sudah sering meniru gaya lukis ini, tetapi mereka semua menyerah karena keterbatasan tekstur dari kertas gulung mereka.", "load" : 64, "energy" : 90, "exp" : 90, "category" : [{"id" : 5003, "category" : "Karya Seni"}], "recipe" : [{"id" : "bamboo_segment", "name" : "Bamboo Segment", "amount" : 8}, {"id" : "blue_dye", "name" : "Blue Dye", "amount" : 8}, {"id" : "yellow_dye", "name" : "Yellow Dye", "amount" : 8}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "originalId": {"type": "integer"}, "rarity": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "load": {"type": "integer"}, "energy": {"type": "integer"}, "exp": {"type": "integer"}, "category": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "string"}}, "required": ["id", "category"]}}, "recipe": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["id", "name", "amount"]}}}, "required": ["id", "originalId", "rarity", "name", "description", "load", "energy", "exp", "category", "recipe"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["express-orm-mvc"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x46e6f55d4195f15f4ba88c8a9654a55d6dd33eb4a8d111621ee9b4f5a585e43f", "parentHash" : "0x71fcafc1fbb545118f48bda688cb57495bfbd164265b05b2979be029f384f6ae", "number" : 3952, "timestamp" : 1438281492, "nonce" : "0x35152bb19fca0976", "difficulty" : 114294117045, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xdd2F1e6e498202e86D8f5442Af596580A4f03c2C", "extraData" : "0x476574682f76312e302e302d30636463373634372f6c696e75782f676f312e34", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"760314503761756200": {"type": "object", "properties": {"GID": {"type": "integer"}, "MIN_RANK": {"type": "integer"}, "VERIFIED_ROLE_ID": {"type": "integer"}, "RAID_CHANNEL_ID": {"type": "integer"}, "DUNGEON_ROLES": {"type": "string"}, "EMOJI_DATA": {"type": "object", "properties": {}, "required": []}}, "required": ["GID", "MIN_RANK", "VERIFIED_ROLE_ID", "RAID_CHANNEL_ID", "DUNGEON_ROLES", "EMOJI_DATA"]}, "522815906376843274": {"type": "object", "properties": {"GID": {"type": "integer"}, "MIN_RANK": {"type": "integer"}, "VERIFIED_ROLE_ID": {"type": "integer"}, "RAID_CHANNEL_ID": {"type": "integer"}, "DUNGEON_ROLES": {"type": "string"}, "EMOJI_DATA": {"type": "object", "properties": {}, "required": []}}, "required": ["GID", "MIN_RANK", "VERIFIED_ROLE_ID", "RAID_CHANNEL_ID", "DUNGEON_ROLES", "EMOJI_DATA"]}}, "required": ["760314503761756200", "522815906376843274"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"760314503761756200" : {"GID" : 760314503761756200, "MIN_RANK" : 10, "VERIFIED_ROLE_ID" : 769303706280919046, "RAID_CHANNEL_ID" : 0, "DUNGEON_ROLES" : "", "EMOJI_DATA" : {}}, "522815906376843274" : {"GID" : 522815906376843274, "MIN_RANK" : 20, "VERIFIED_ROLE_ID" : 522817975091462147, "RAID_CHANNEL_ID" : 760727406608121858, "DUNGEON_ROLES" : "", "EMOJI_DATA" : {}}}
json_instruct
{"type": "object", "properties": {"760314503761756200": {"type": "object", "properties": {"GID": {"type": "integer"}, "MIN_RANK": {"type": "integer"}, "VERIFIED_ROLE_ID": {"type": "integer"}, "RAID_CHANNEL_ID": {"type": "integer"}, "DUNGEON_ROLES": {"type": "string"}, "EMOJI_DATA": {"type": "object", "properties": {}, "required": []}}, "required": ["GID", "MIN_RANK", "VERIFIED_ROLE_ID", "RAID_CHANNEL_ID", "DUNGEON_ROLES", "EMOJI_DATA"]}, "522815906376843274": {"type": "object", "properties": {"GID": {"type": "integer"}, "MIN_RANK": {"type": "integer"}, "VERIFIED_ROLE_ID": {"type": "integer"}, "RAID_CHANNEL_ID": {"type": "integer"}, "DUNGEON_ROLES": {"type": "string"}, "EMOJI_DATA": {"type": "object", "properties": {}, "required": []}}, "required": ["GID", "MIN_RANK", "VERIFIED_ROLE_ID", "RAID_CHANNEL_ID", "DUNGEON_ROLES", "EMOJI_DATA"]}}, "required": ["760314503761756200", "522815906376843274"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"entityId": {"type": "integer"}, "dX": {"type": "integer"}, "dY": {"type": "integer"}, "dZ": {"type": "integer"}, "yaw": {"type": "integer"}, "pitch": {"type": "integer"}, "onGround": {"type": "boolean"}}, "required": ["entityId", "dX", "dY", "dZ", "yaw", "pitch", "onGround"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"entityId" : 328, "dX" : 223, "dY" : -219, "dZ" : -1542, "yaw" : 126, "pitch" : 0, "onGround" : false}
json_instruct
{"type": "object", "properties": {"entityId": {"type": "integer"}, "dX": {"type": "integer"}, "dY": {"type": "integer"}, "dZ": {"type": "integer"}, "yaw": {"type": "integer"}, "pitch": {"type": "integer"}, "onGround": {"type": "boolean"}}, "required": ["entityId", "dX", "dY", "dZ", "yaw", "pitch", "onGround"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "panel", "description" : "Creates a panel class, an HTML template and an SCSS stylesheet and places it in the project elements folder."}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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" : ["Combine flour, butter, sugar, vanilla extract, and salt in a bowl to form a dough; stir in pecans.", "Shape dough into a large ball and refrigerate until firm, about 15 minutes.", "Preheat oven to 400 degrees F (200 degrees C).", "Roll dough into 1-inch balls and place on a baking sheet.", "Make an indentation with thumb in the middle of each ball, forming a 'nest'.", "Fill each nest with about 1 teaspoon chocolate chips.", "Bake nests in the preheated oven until edges are crisp (cookies will not brown), 10 to 12 minutes. Cool cookies on a wire rack, about 15 minutes."], "ingredients" : ["2 1/4 cups all-purpose flour", "1 cup butter, softened", "1/2 cup sifted confectioners' sugar", "1 teaspoon vanilla extract", "1/4 teaspoon salt", "3/4 cup chopped pecans", "1 cup semisweet chocolate chips"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Bird's Nest Tea Cakes", "url" : "http://allrecipes.com/recipe/220819/birds-nest-tea-cakes/"}
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"templates": {"type": "array", "items": {"type": "string"}}, "variables": {"type": "array", "items": {"type": "string"}}}, "required": ["templates", "variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"templates" : ["builders/virtualbox.yaml", "builders/virtualbox.yaml", "post-processors/vagrant.yaml", "provisioners/core.yaml"], "variables" : ["variables/default.yaml"]}
json_instruct
{"type": "object", "properties": {"templates": {"type": "array", "items": {"type": "string"}}, "variables": {"type": "array", "items": {"type": "string"}}}, "required": ["templates", "variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "Description"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features" : [{"type" : "Feature", "properties" : {"Name" : "SENADOR GEORGINO AVELINO", "Description" : "SENADOR GEORGINO AVELINO / RN"}, "geometry" : {"type" : "LineString", "coordinates" : [[-35.091556455865714, -6.178786478712993], [-35.097914008024986, -6.187609310920891], [-35.11078882564373, -6.186945132811558], [-35.13549242523521, -6.167116689683439], [-35.14643401881489, -6.152793759424411], [-35.15702580489693, -6.148161755360661], [-35.162314639608894, -6.136068012428779], [-35.13229523193934, -6.136702161275649], [-35.12689086672009, -6.144263077379094], [-35.111156044016184, -6.134582860310729], [-35.09843183945776, -6.139341847748028], [-35.09801455133043, -6.163622765078514], [-35.091556455865714, -6.178786478712993]]}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"Name": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "Description"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"commands": {"type": "array", "items": {"type": "string"}}, "response_type": {"type": "string"}, "response": {"type": "string"}}, "required": ["commands", "response_type", "response"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"commands" : ["lift daniel"], "response_type" : "display", "response" : "Daniel has a slim physique - you can probably lift him. But don't you have better things to do?"}
json_instruct
{"type": "object", "properties": {"commands": {"type": "array", "items": {"type": "string"}}, "response_type": {"type": "string"}, "response": {"type": "string"}}, "required": ["commands", "response_type", "response"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"Author": {"type": "string"}, "Content-Length": {"type": "string"}, "Content-Type": {"type": "string"}, "Creation-Date": {"type": "string"}, "X-Parsed-By": {"type": "array", "items": {"type": "string"}}, "creator": {"type": "string"}, "dc:creator": {"type": "string"}, "dc:title": {"type": "string"}, "dcterms:created": {"type": "string"}, "extended-properties:Company": {"type": "string"}, "meta:author": {"type": "string"}, "meta:character-count": {"type": "string"}, "meta:creation-date": {"type": "string"}, "meta:page-count": {"type": "string"}, "meta:word-count": {"type": "string"}, "resourceName": {"type": "string"}, "title": {"type": "string"}}, "required": ["Author", "Content-Length", "Content-Type", "Creation-Date", "X-Parsed-By", "creator", "dc:creator", "dc:title", "dcterms:created", "extended-properties:Company", "meta:author", "meta:character-count", "meta:creation-date", "meta:page-count", "meta:word-count", "resourceName", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Author" : "Stenio", "Content-Length" : "78545", "Content-Type" : "application/rtf", "Creation-Date" : "2020-09-24T19:38:00Z", "X-Parsed-By" : ["org.apache.tika.parser.DefaultParser", "org.apache.tika.parser.rtf.RTFParser"], "creator" : "Stenio", "dc:creator" : "Stenio", "dc:title" : "A PREFEITURA DA SERRA, atrav\u00e9s da Secretaria de Finan\u00e7as, torna p\u00fablico:", "dcterms:created" : "2020-09-24T19:38:00Z", "extended-properties:Company" : "Hewlett-Packard Company", "meta:author" : "Stenio", "meta:character-count" : "3644", "meta:creation-date" : "2020-09-24T19:38:00Z", "meta:page-count" : "1", "meta:word-count" : "674", "resourceName" : "49df891212a6ba7f73db901cad7a1fd3fe2469bc.rtf", "title" : "A PREFEITURA DA SERRA, atrav\u00e9s da Secretaria de Finan\u00e7as, torna p\u00fablico:"}
json_instruct
{"type": "object", "properties": {"Author": {"type": "string"}, "Content-Length": {"type": "string"}, "Content-Type": {"type": "string"}, "Creation-Date": {"type": "string"}, "X-Parsed-By": {"type": "array", "items": {"type": "string"}}, "creator": {"type": "string"}, "dc:creator": {"type": "string"}, "dc:title": {"type": "string"}, "dcterms:created": {"type": "string"}, "extended-properties:Company": {"type": "string"}, "meta:author": {"type": "string"}, "meta:character-count": {"type": "string"}, "meta:creation-date": {"type": "string"}, "meta:page-count": {"type": "string"}, "meta:word-count": {"type": "string"}, "resourceName": {"type": "string"}, "title": {"type": "string"}}, "required": ["Author", "Content-Length", "Content-Type", "Creation-Date", "X-Parsed-By", "creator", "dc:creator", "dc:title", "dcterms:created", "extended-properties:Company", "meta:author", "meta:character-count", "meta:creation-date", "meta:page-count", "meta:word-count", "resourceName", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "1.2.0": {"type": "object", "properties": {"url": {"type": "string"}, "file-type": {"type": "string"}, "bin": {"type": "array", "items": {"type": "string"}}, "shortcuts": {"type": "array", "items": {}}, "persist": {"type": "array", "items": {}}}, "required": ["url", "file-type", "bin", "shortcuts", "persist"]}, "auto-update": {"type": "object", "properties": {"url": {"type": "string"}, "version-check": {"type": "object", "properties": {"webpage": {"type": "string"}, "regex": {"type": "string"}}, "required": ["webpage", "regex"]}}, "required": ["url", "version-check"]}}, "required": ["display-name", "package-name", "latest-version", "1.2.0", "auto-update"]}}, "required": ["display-name", "package-name", "is-portable", "portable"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"display-name" : "", "package-name" : "grex", "is-portable" : true, "portable" : {"display-name" : "", "package-name" : "grex", "latest-version" : "1.2.0", "1.2.0" : {"url" : "https://github.com/pemistahl/grex/releases/download/v1.2.0/grex-v1.2.0-x86_64-pc-windows-msvc.zip", "file-type" : ".zip", "bin" : ["grex.exe"], "shortcuts" : [], "persist" : []}, "auto-update" : {"url" : "https://dl.bintray.com/groovy/maven/apache-groovy-binary-<version>.zip", "version-check" : {"webpage" : "https://groovy.apache.org/download.html", "regex" : "apache-groovy-binary-([\\d.]+)\\.zip"}}}}
json_instruct
{"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "is-portable": {"type": "boolean"}, "portable": {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "1.2.0": {"type": "object", "properties": {"url": {"type": "string"}, "file-type": {"type": "string"}, "bin": {"type": "array", "items": {"type": "string"}}, "shortcuts": {"type": "array", "items": {}}, "persist": {"type": "array", "items": {}}}, "required": ["url", "file-type", "bin", "shortcuts", "persist"]}, "auto-update": {"type": "object", "properties": {"url": {"type": "string"}, "version-check": {"type": "object", "properties": {"webpage": {"type": "string"}, "regex": {"type": "string"}}, "required": ["webpage", "regex"]}}, "required": ["url", "version-check"]}}, "required": ["display-name", "package-name", "latest-version", "1.2.0", "auto-update"]}}, "required": ["display-name", "package-name", "is-portable", "portable"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"powered=false": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "powered=true": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["powered=false", "powered=true"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"powered=false" : {"model" : "rankine:block/wadsleyite_pressure_plate"}, "powered=true" : {"model" : "rankine:block/wadsleyite_pressure_plate_down"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"powered=false": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "powered=true": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["powered=false", "powered=true"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"meta": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "data": {"type": "object", "properties": {"id": {"type": "string"}, "imgURL": {"type": "string"}, "imgCopyright": {"type": "string"}, "name": {"type": "string"}, "party": {"type": "string"}, "job": {"type": "string"}, "office": {"type": "array", "items": {"type": "string"}}, "links": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "URL": {"type": "string"}}, "required": ["name", "URL"]}}, "biography": {"type": "array", "items": {"type": "string"}}, "directCandidate": {"type": "boolean"}, "constituency": {"type": "string"}, "constituencyName": {"type": "string"}, "functions": {"type": "array", "items": {"type": "object", "properties": {"category": {"type": "string"}, "functions": {"type": "array", "items": {"type": "string"}}}, "required": ["category", "functions"]}}, "speechesURL": {"type": "string"}, "votesURL": {"type": "string"}, "publicationRequirement": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "imgURL", "imgCopyright", "name", "party", "job", "office", "links", "biography", "directCandidate", "constituency", "constituencyName", "functions", "speechesURL", "votesURL", "publicationRequirement"]}}, "required": ["meta", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"meta" : {"url" : "https://www.bundestag.de/abgeordnete/biografien/M/middelberg_mathias-522026"}, "data" : {"id" : "522026", "imgURL" : "https://www.bundestag.de/resource/image/522024/3x4/284/379/762a58d3d0b7840af46301903f5057d7/CR/Middelberg_Mathias_gross.jpg", "imgCopyright" : "Mathias Middelberg/ Hermann Pentermann", "name" : "Mathias Middelberg", "party" : "CDU/CSU", "job" : "Rechtsanwalt", "office" : ["Deutscher Bundestag", "Platz der Republik 1", "11011 Berlin"], "links" : [{"name" : "mathias-middelberg.de", "URL" : "http://mathias-middelberg.de/"}, {"name" : "Facebook", "URL" : "http://facebook.com/mathias.middelberg"}], "biography" : ["Geboren am 14. Dezember 1964 in Osnabr\u00fcck. R\u00f6m.-kath."], "directCandidate" : true, "constituency" : "039", "constituencyName" : "Stadt Osnabr\u00fcck", "functions" : [{"category" : "Ordentliches Mitglied", "functions" : ["Ausschuss f\u00fcr Inneres und Heimat"]}, {"category" : "Stellvertretendes Mitglied", "functions" : ["Ausschuss f\u00fcr Recht und Verbraucherschutz", "Finanzausschuss", "Wahlausschuss"]}], "speechesURL" : "https://www.bundestag.dehttps://www.bundestag.de/ajax/filterlist/webarchiv/abgeordnete/biografien18/440470-440470?rednerIds=480914%236603+OR+8364+OR+9404", "votesURL" : "https://www.bundestag.de/apps/na/na/abstimmunglinksByMdb.form?vaid=1652&notwahlperioden=", "publicationRequirement" : ["Stiftung Denkmal f\u00fcr die ermordeten Juden Europas, Berlin,", "Mitglied des Kuratoriums"]}}
json_instruct
{"type": "object", "properties": {"meta": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "data": {"type": "object", "properties": {"id": {"type": "string"}, "imgURL": {"type": "string"}, "imgCopyright": {"type": "string"}, "name": {"type": "string"}, "party": {"type": "string"}, "job": {"type": "string"}, "office": {"type": "array", "items": {"type": "string"}}, "links": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "URL": {"type": "string"}}, "required": ["name", "URL"]}}, "biography": {"type": "array", "items": {"type": "string"}}, "directCandidate": {"type": "boolean"}, "constituency": {"type": "string"}, "constituencyName": {"type": "string"}, "functions": {"type": "array", "items": {"type": "object", "properties": {"category": {"type": "string"}, "functions": {"type": "array", "items": {"type": "string"}}}, "required": ["category", "functions"]}}, "speechesURL": {"type": "string"}, "votesURL": {"type": "string"}, "publicationRequirement": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "imgURL", "imgCopyright", "name", "party", "job", "office", "links", "biography", "directCandidate", "constituency", "constituencyName", "functions", "speechesURL", "votesURL", "publicationRequirement"]}}, "required": ["meta", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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" : ["5 5 20 25\n1 2 25\n2 3 25\n3 4 20\n4 5 20\n5 1 20\n", "6 7 13 22\n1 2 13\n2 3 13\n1 4 22\n3 4 13\n4 5 13\n5 6 13\n6 1 13\n", "2 1 1 2\n2 1 1\n", "2 1 9999999 10000000\n1 2 10000000\n", "3 3 78422 6789101\n3 1 6789101\n2 1 78422\n2 3 78422\n", "3 3 2770628 3912422\n1 2 2770628\n2 3 2770628\n1 3 3912422\n", "3 3 2566490 5132980\n1 2 2566490\n2 3 2566490\n3 1 5132980\n", "3 2 509529 5982470\n1 2 509529\n3 2 509529\n", "3 2 1349740 8457492\n2 1 1349740\n3 1 1349740\n", "3 2 150319 5002968\n3 2 150319\n1 2 5002968\n", "3 2 990530 8623767\n3 2 8623767\n1 2 990530\n", "3 2 810925 2022506\n1 2 2022506\n1 3 810925\n", "3 2 1651136 5131013\n1 2 5131013\n3 2 5131013\n", "3 2 451715 1577270\n1 3 1577270\n1 2 1577270\n", "3 3 1291926 4943478\n2 3 1291926\n1 2 1291926\n3 1 1291926\n", "3 3 2132137 9084127\n1 2 2132137\n3 2 9084127\n3 1 2132137\n", "3 3 1126640 9858678\n3 1 9858678\n3 2 1126640\n1 2 9858678\n", "3 3 1966851 6439891\n1 3 6439891\n1 2 1966851\n3 2 6439891\n", "3 3 1787246 7806211\n3 2 7806211\n2 1 7806211\n1 3 7806211\n"], "outputs" : ["0 25 60 40 20\n", "0 13 26 39 26 13\n", "0 1\n", "0 10000000\n", "0 78422 156844\n", "0 2770628 5541256\n", "0 2566490 5132980\n", "0 509529 1019058\n", "0 1349740 1349740\n", "0 5002968 5153287\n", "0 990530 9614297\n", "0 2022506 810925\n", "0 5131013 10262026\n", "0 1577270 1577270\n", "0 1291926 1291926\n", "0 2132137 2132137\n", "0 9858678 9858678\n", "0 1966851 6439891\n", "0 7806211 7806211\n"]}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "object", "properties": {"1KLHksRTsFp3cfT72ZNcNze5CNSGdm5oa": {"type": "string"}}, "required": ["1KLHksRTsFp3cfT72ZNcNze5CNSGdm5oa"]}, "user": {"type": "array", "items": {"type": "object", "properties": {"avatar": {"type": "string"}, "date_added": {"type": "integer"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "user_name": {"type": "string"}}, "required": ["avatar", "date_added", "hub", "intro", "user_name"]}}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs", "user"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"address" : "1UDbADib99KE9d3qZ87NqJF2QLTHmMkoV", "cert_auth_type" : "web", "cert_sign" : "HOqnekVlVLDWQY/BeLmoN2n9NDZXoCtUsAYEyl4BqNL8VPqgsQF0Geo9sD2Tl7Fon3iG7xRzqW4PxfqWkSnyjmM=", "cert_user_id" : "[email protected]", "files" : {}, "inner_path" : "data/userdb/1KLHksRTsFp3cfT72ZNcNze5CNSGdm5oa/content.json", "modified" : 1478227558.483, "signs" : {"1KLHksRTsFp3cfT72ZNcNze5CNSGdm5oa" : "G3h67yS63uSrWvHUv3d27fylE4l+UFzpwQTy+fZ5Z8w3q/YZF8zLHfsofWhn6vHlqSlRyHHSeZBFqwImp494n5Q="}, "user" : [{"avatar" : "generate", "date_added" : 1478227558, "hub" : "1GrEenUGRWnzaNZjR3XsQa6dQgdPDTyt7i", "intro" : "Random ZeroNet user", "user_name" : "Keengmee"}]}
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {}, "required": []}, "inner_path": {"type": "string"}, "modified": {"type": "number"}, "signs": {"type": "object", "properties": {"1KLHksRTsFp3cfT72ZNcNze5CNSGdm5oa": {"type": "string"}}, "required": ["1KLHksRTsFp3cfT72ZNcNze5CNSGdm5oa"]}, "user": {"type": "array", "items": {"type": "object", "properties": {"avatar": {"type": "string"}, "date_added": {"type": "integer"}, "hub": {"type": "string"}, "intro": {"type": "string"}, "user_name": {"type": "string"}}, "required": ["avatar", "date_added", "hub", "intro", "user_name"]}}}, "required": ["address", "cert_auth_type", "cert_sign", "cert_user_id", "files", "inner_path", "modified", "signs", "user"], "$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": {"queryName": {"type": "string"}, "severity": {"type": "string"}, "line": {"type": "integer"}}, "required": ["queryName", "severity", "line"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"queryName" : "EC2 Sensitive Port Is Publicly Exposed", "severity" : "HIGH", "line" : 8}, {"queryName" : "EC2 Sensitive Port Is Publicly Exposed", "severity" : "HIGH", "line" : 38}, {"queryName" : "EC2 Sensitive Port Is Publicly Exposed", "severity" : "HIGH", "line" : 38}, {"queryName" : "EC2 Sensitive Port Is Publicly Exposed", "severity" : "HIGH", "line" : 77}, {"queryName" : "EC2 Sensitive Port Is Publicly Exposed", "severity" : "HIGH", "line" : 107}, {"queryName" : "EC2 Sensitive Port Is Publicly Exposed", "severity" : "HIGH", "line" : 107}, {"queryName" : "EC2 Sensitive Port Is Publicly Exposed", "severity" : "HIGH", "line" : 107}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"queryName": {"type": "string"}, "severity": {"type": "string"}, "line": {"type": "integer"}}, "required": ["queryName", "severity", "line"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"clientID": {"type": "string"}, "serverToken": {"type": "string"}, "clientToken": {"type": "string"}, "encKey": {"type": "string"}, "macKey": {"type": "string"}}, "required": ["clientID", "serverToken", "clientToken", "encKey", "macKey"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"clientID" : "PGbNSPkCXxOdi1h2PY2n1Q==", "serverToken" : "1@qpTIn4qw/gpTCLtVpR3Wrk8nBxWYdQ7qBtE6ZsOQnB0WPKhCWtqviIwVYCjl7CbR+sLrba3sCrJWXw==", "clientToken" : "To6p1IcXOOGHblmo8WP672kRB+36stOwVx0X+DRXi0ur/J7xGiwmIMgBA3EyOSqqA5Fv0V/11PvvV2oxDile4w==", "encKey" : "vDQ1AYkefiYjSq+T9G3BVwhYzVMsbscfYiWWqaVy9eo=", "macKey" : "D/bK3TW1rSgHhjrtaiwUyehPzm2wk9PfoiZK1+kGmgo="}
json_instruct
{"type": "object", "properties": {"clientID": {"type": "string"}, "serverToken": {"type": "string"}, "clientToken": {"type": "string"}, "encKey": {"type": "string"}, "macKey": {"type": "string"}}, "required": ["clientID", "serverToken", "clientToken", "encKey", "macKey"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "providers": {"type": "object", "properties": {"provider-oberhavel": {"type": "object", "properties": {}, "required": []}}, "required": ["provider-oberhavel"]}}, "required": ["name", "providers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Brandenburg", "providers" : {"provider-oberhavel" : {}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "providers": {"type": "object", "properties": {"provider-oberhavel": {"type": "object", "properties": {}, "required": []}}, "required": ["provider-oberhavel"]}}, "required": ["name", "providers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "QmTvi4MXUBeVcz9jc3knx8Ft4wh4dwC54vwPr5N3u3aqRk", "title" : "Test Image", "body" : "[![IMAGE ALT TEXT HERE](http://localhost:1337/static/media/YourSharesYourVoice_Desktop_Launched.d271d4ad.png)](https://i.imgur.com/JjJapNr.jpg)\n\nhttps://i.imgur.com/JjJapNr.jpg\n\n[Hyperlink](https://i.imgur.com/JjJapNr.jpg)\n\nThree or more...\n\n---\n\nHyphens\n\n***\n\nAsterisks\n\n___\n\nUnderscores", "choices" : ["Maybe", "No"], "start" : 1618502400, "end" : 1618848000, "snapshot" : "12253106", "state" : "closed", "author" : "0xAbE36E3D0D69fa3F669C7DF71A3d9B19f7B0E712", "space" : {"id" : "somegreenguy.eth", "name" : "Axion DAO"}, "votes" : 0, "votes_data" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"$schema": {"type": "string"}, "id": {"type": "string"}, "alias": {"type": "string"}, "componentType": {"type": "string"}, "version": {"type": "string"}, "manifestVersion": {"type": "integer"}, "supportedHosts": {"type": "array", "items": {"type": "string"}}, "safeWithCustomScriptDisabled": {"type": "boolean"}, "preconfiguredEntries": {"type": "array", "items": {"type": "object", "properties": {"groupId": {"type": "string"}, "group": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "title": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "description": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "officeFabricIconFontName": {"type": "string"}, "properties": {"type": "object", "properties": {"normalWeekToggleField": {"type": "boolean"}}, "required": ["normalWeekToggleField"]}}, "required": ["groupId", "group", "title", "description", "officeFabricIconFontName", "properties"]}}}, "required": ["$schema", "id", "alias", "componentType", "version", "manifestVersion", "supportedHosts", "safeWithCustomScriptDisabled", "preconfiguredEntries"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "https://developer.microsoft.com/json-schemas/spfx/client-side-web-part-manifest.schema.json", "id" : "cc3ff58a-edf7-44ba-a47c-7daa593e1b93", "alias" : "MyTimeAwayWebPart", "componentType" : "WebPart", "version" : "*", "manifestVersion" : 2, "supportedHosts" : ["SharePointWebPart", "TeamsPersonalApp", "TeamsTab"], "safeWithCustomScriptDisabled" : true, "preconfiguredEntries" : [{"groupId" : "cc3ff58a-edf7-44ba-a47c-7daa593e1b93", "group" : {"default" : "Communication and collaboration"}, "title" : {"default" : "Your Time Away"}, "description" : {"default" : "Provides a simple way for a user to enter and list their time away."}, "officeFabricIconFontName" : "Sunny", "properties" : {"normalWeekToggleField" : true}}]}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "id": {"type": "string"}, "alias": {"type": "string"}, "componentType": {"type": "string"}, "version": {"type": "string"}, "manifestVersion": {"type": "integer"}, "supportedHosts": {"type": "array", "items": {"type": "string"}}, "safeWithCustomScriptDisabled": {"type": "boolean"}, "preconfiguredEntries": {"type": "array", "items": {"type": "object", "properties": {"groupId": {"type": "string"}, "group": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "title": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "description": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}, "officeFabricIconFontName": {"type": "string"}, "properties": {"type": "object", "properties": {"normalWeekToggleField": {"type": "boolean"}}, "required": ["normalWeekToggleField"]}}, "required": ["groupId", "group", "title", "description", "officeFabricIconFontName", "properties"]}}}, "required": ["$schema", "id", "alias", "componentType", "version", "manifestVersion", "supportedHosts", "safeWithCustomScriptDisabled", "preconfiguredEntries"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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" : "Louvign\u00e9", "circ" : "1\u00e8re circonscription", "dpt" : "Mayenne", "inscrits" : 736, "abs" : 317, "votants" : 419, "blancs" : 8, "nuls" : 3, "exp" : 408, "res" : [{"nuance" : "SOC", "nom" : "M. Guillaume GAROT", "voix" : 145}, {"nuance" : "REM", "nom" : "Mme B\u00e9atrice MOTTIER", "voix" : 112}, {"nuance" : "FN", "nom" : "M. Bruno DE LA MORINI\u00c8RE", "voix" : 44}, {"nuance" : "LR", "nom" : "Mme Samia SOULTANI-VIGNERON", "voix" : 42}, {"nuance" : "FI", "nom" : "M. Nicolas CHOMEL", "voix" : 27}, {"nuance" : "DLF", "nom" : "Mme Isabelle MAH\u00c9 GENERO", "voix" : 12}, {"nuance" : "DVD", "nom" : "M. Philippe HABAULT", "voix" : 8}, {"nuance" : "ECO", "nom" : "M. Ma\u00ebl RANNOU", "voix" : 6}, {"nuance" : "DIV", "nom" : "M. Luccio STIZ", "voix" : 5}, {"nuance" : "COM", "nom" : "M. Aur\u00e9lien GUILLOT", "voix" : 4}, {"nuance" : "EXG", "nom" : "Mme Martine AMELIN", "voix" : 3}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"946863007350": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}}, "required": ["946863007350"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"946863007350" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/MS0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9TYW1wbGVyLUVRX1NhbXBsZXIuaHRtbC1hbmFseXRpY3MtOTQ2ODYzMDA3MjYz.json"}}
json_instruct
{"type": "object", "properties": {"946863007350": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}}, "required": ["946863007350"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "shadowless", "definition" : "Having no shadow."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"bounds": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["bounds"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"bounds" : [[23.3, 28.8], [222.98, 303.36]]}
json_instruct
{"type": "object", "properties": {"bounds": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["bounds"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "extract_dir": {"type": "string"}, "shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "persist": {"type": "string"}, "checkver": {"type": "object", "properties": {"url": {"type": "string"}, "regex": {"type": "string"}, "replace": {"type": "string"}}, "required": ["url", "regex", "replace"]}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}, "extract_dir": {"type": "string"}}, "required": ["url", "extract_dir"]}, "post_install": {"type": "array", "items": {"type": "string"}}, "uninstaller": {"type": "object", "properties": {"script": {"type": "array", "items": {"type": "string"}}}, "required": ["script"]}, "notes": {"type": "string"}}, "required": ["version", "description", "homepage", "license", "url", "hash", "extract_dir", "shortcuts", "persist", "checkver", "autoupdate", "post_install", "uninstaller", "notes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "4.2.3-262-g78914e386", "description" : "A free single-player dungeon exploration Roguelike (Pre-release)", "homepage" : "https://rephial.org/", "license" : "GPL-2.0", "url" : "https://github.com/angband/angband/releases/download/4.2.3-262-g78914e386/Angband-4.2.3-262-g78914e386-win.zip", "hash" : "c07ed36df848532e3801388771fada70e8fb50700fbadd37d38e0740f54903bd", "extract_dir" : "angband-4.2.3-262-g78914e386", "shortcuts" : [["angband.exe", "Angband\\Angband (Pre-release)"], ["docs\\index.html", "Angband\\Angband Manual (Pre-release)"]], "persist" : "lib\\user", "checkver" : {"url" : "https://github.com/angband/angband/releases", "regex" : "Angband-(?<major>[\\d]+)\\.(?<minor>[\\d]+)\\.(?<patch>[\\d]+)-(?<build>[\\d]+)-g(?<commit>[\\da-z]+)-win\\.zip", "replace" : "${major}.${minor}.${patch}-${build}-g${commit}"}, "autoupdate" : {"url" : "https://github.com/angband/angband/releases/download/$version/Angband-$version-win.zip", "extract_dir" : "angband-$version"}, "post_install" : ["'angband.INI' | ForEach-Object {", " if (!(Test-Path \"$persist_dir\\$_.bak\")) {", " New-Item -ItemType File \"$dir\\$_\" | Out-Null", " } else {", " Copy-Item \"$persist_dir\\$_.bak\" \"$dir\\$_\" -Force", " }", "}"], "uninstaller" : {"script" : ["'angband.INI' | ForEach-Object {", " Copy-Item \"$dir\\$_\" \"$persist_dir\\$_.bak\" -Force", "}"]}, "notes" : "Configuration files cannot be persisted, but will be retained during the update"}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "extract_dir": {"type": "string"}, "shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "persist": {"type": "string"}, "checkver": {"type": "object", "properties": {"url": {"type": "string"}, "regex": {"type": "string"}, "replace": {"type": "string"}}, "required": ["url", "regex", "replace"]}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}, "extract_dir": {"type": "string"}}, "required": ["url", "extract_dir"]}, "post_install": {"type": "array", "items": {"type": "string"}}, "uninstaller": {"type": "object", "properties": {"script": {"type": "array", "items": {"type": "string"}}}, "required": ["script"]}, "notes": {"type": "string"}}, "required": ["version", "description", "homepage", "license", "url", "hash", "extract_dir", "shortcuts", "persist", "checkver", "autoupdate", "post_install", "uninstaller", "notes"], "$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": {"20626": {"type": "string"}, "20641": {"type": "string"}}, "required": ["20626", "20641"]}, "timeto": {"type": "object", "properties": {"20626": {"type": "number"}, "20641": {"type": "number"}}, "required": ["20626", "20641"]}, "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" : 20627, "title" : ["[Wehnimer's, Burrow Way]"], "description" : ["At the edge of this warren, only a single torch burns, its light barely pushing away any darkness. The faint sound of rodents skittering about can be heard close by."], "paths" : ["Obvious exits: north"], "location" : "the town of Wehnimer's Landing", "wayto" : {"20626" : "north", "20641" : "search\ngo crack"}, "timeto" : {"20626" : 0.2, "20641" : 0.2}, "image" : "wl-burrow_way-1360361110.png", "image_coords" : [749, 279, 776, 305]}
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": {"20626": {"type": "string"}, "20641": {"type": "string"}}, "required": ["20626", "20641"]}, "timeto": {"type": "object", "properties": {"20626": {"type": "number"}, "20641": {"type": "number"}}, "required": ["20626", "20641"]}, "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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "chrome-devtools-frontend", "version" : "1.0.401423", "description" : "Chrome DevTools' UI", "main" : "front_end/inspector.html", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/ChromeDevTools/devtools-frontend.git"}, "keywords" : ["devtools", "chrome", "chromium", "blink", "debugger"], "author" : "Paul Irish", "license" : "SEE LICENSE IN https://chromium.googlesource.com/chromium/src/+/master/LICENSE", "bugs" : {"url" : "https://code.google.com/p/chromium/issues/list?can=2&q=Cr%3DPlatform-DevTools&colspec=ID+Pri+Stars+Status+Owner+Summary+Modified&x=m&y=releaseblock&cells=tiles"}, "homepage" : "https://devtools.chrome.com"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"hazards": {"type": "object", "properties": {"Ladders": {"type": "array", "items": {"type": "string"}}, "Fall Arresting": {"type": "array", "items": {"type": "string"}}, "Edge Protection": {"type": "array", "items": {"type": "string"}}, "Housekeeping": {"type": "array", "items": {"type": "string"}}}, "required": ["Ladders", "Fall Arresting", "Edge Protection", "Housekeeping"]}, "answers": {"type": "object", "properties": {"01_A": {"type": "array", "items": {"type": "string"}}, "02_A": {"type": "array", "items": {"type": "string"}}, "03_A": {"type": "array", "items": {"type": "string"}}, "04_A": {"type": "array", "items": {"type": "string"}}}, "required": ["01_A", "02_A", "03_A", "04_A"]}}, "required": ["hazards", "answers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hazards" : {"Ladders" : ["Height-to-Run Ratio", "Step Ladder Incorrect Usage", "Ladder Overextension"], "Fall Arresting" : ["Untied Worker", "Safety Nets", "Fall Body Harness"], "Edge Protection" : ["Improper Gaurdrails", "Warning Lines System", "Floor Opening"], "Housekeeping" : ["Electrical Cords", "Material Storage", "Wet Surfaces"]}, "answers" : {"01_A" : ["Untied Worker", "Safety Nets"], "02_A" : ["Untied Worker", "Safety Nets"], "03_A" : ["Untied Worker", "Safety Nets"], "04_A" : ["Untied Worker", "Safety Nets"]}}
json_instruct
{"type": "object", "properties": {"hazards": {"type": "object", "properties": {"Ladders": {"type": "array", "items": {"type": "string"}}, "Fall Arresting": {"type": "array", "items": {"type": "string"}}, "Edge Protection": {"type": "array", "items": {"type": "string"}}, "Housekeeping": {"type": "array", "items": {"type": "string"}}}, "required": ["Ladders", "Fall Arresting", "Edge Protection", "Housekeeping"]}, "answers": {"type": "object", "properties": {"01_A": {"type": "array", "items": {"type": "string"}}, "02_A": {"type": "array", "items": {"type": "string"}}, "03_A": {"type": "array", "items": {"type": "string"}}, "04_A": {"type": "array", "items": {"type": "string"}}}, "required": ["01_A", "02_A", "03_A", "04_A"]}}, "required": ["hazards", "answers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"135": {"type": "array", "items": {}}, "136": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}}, "required": ["key", "value"]}, "156": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}}, "required": ["key", "value"]}, "176": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}}, "required": ["key", "value"]}, "header": {"type": "object", "properties": {"forms_id": {"type": "string"}, "sections_id": {"type": "string"}, "languages_id": {"type": "string"}, "session": {"type": "string"}}, "required": ["forms_id", "sections_id", "languages_id", "session"]}}, "required": ["135", "136", "156", "176", "header"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"135" : [], "136" : {"key" : "403", "value" : "403"}, "156" : {"key" : "603", "value" : "603"}, "176" : {"key" : "803", "value" : "803"}, "header" : {"forms_id" : "3", "sections_id" : "21", "languages_id" : "1", "session" : "4a453194edebea1749b095e35c0ea690"}}
json_instruct
{"type": "object", "properties": {"135": {"type": "array", "items": {}}, "136": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}}, "required": ["key", "value"]}, "156": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}}, "required": ["key", "value"]}, "176": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}}, "required": ["key", "value"]}, "header": {"type": "object", "properties": {"forms_id": {"type": "string"}, "sections_id": {"type": "string"}, "languages_id": {"type": "string"}, "session": {"type": "string"}}, "required": ["forms_id", "sections_id", "languages_id", "session"]}}, "required": ["135", "136", "156", "176", "header"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"version_id": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "requestBody": {"type": "object", "properties": {"example": {"type": "object", "properties": {"active": {"type": "integer"}, "html_content": {"type": "string"}, "name": {"type": "string"}, "plain_content": {"type": "string"}, "subject": {"type": "string"}}, "required": ["active", "html_content", "name", "plain_content", "subject"]}, "properties": {"type": "object", "properties": {"active": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "html_content": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "name": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "plain_content": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "subject": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}}, "required": ["active", "html_content", "name", "plain_content", "subject"]}, "type": {"type": "string"}}, "required": ["example", "properties", "type"]}, "on_behalf_of": {"type": "object", "properties": {"type": {"type": "string"}, "default": {"type": "string"}}, "required": ["type", "default"]}}, "required": ["version_id", "requestBody", "on_behalf_of"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "object", "properties" : {"version_id" : {"required" : true, "type" : "string"}, "requestBody" : {"example" : {"active" : 1, "html_content" : "<%body%>", "name" : "updated_example_name", "plain_content" : "<%body%>", "subject" : "<%subject%>"}, "properties" : {"active" : {"description" : "Indicates if the template version is active.", "type" : "integer"}, "html_content" : {"description" : "The HTML content of the template version.", "type" : "string"}, "name" : {"description" : "The name of the template version.", "type" : "string"}, "plain_content" : {"description" : "The text/plain content of the template version.", "type" : "string"}, "subject" : {"description" : "The subject of the template version.", "type" : "string"}}, "type" : "object"}, "on_behalf_of" : {"type" : "string", "default" : "subuser_<user_name>"}}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"version_id": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "requestBody": {"type": "object", "properties": {"example": {"type": "object", "properties": {"active": {"type": "integer"}, "html_content": {"type": "string"}, "name": {"type": "string"}, "plain_content": {"type": "string"}, "subject": {"type": "string"}}, "required": ["active", "html_content", "name", "plain_content", "subject"]}, "properties": {"type": "object", "properties": {"active": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "html_content": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "name": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "plain_content": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "subject": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}}, "required": ["active", "html_content", "name", "plain_content", "subject"]}, "type": {"type": "string"}}, "required": ["example", "properties", "type"]}, "on_behalf_of": {"type": "object", "properties": {"type": {"type": "string"}, "default": {"type": "string"}}, "required": ["type", "default"]}}, "required": ["version_id", "requestBody", "on_behalf_of"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x277f5aa60c277aafa22f393d85af1cd037836343", "tool" : "osiris", "start" : 1564582458.4683647, "end" : 1564582511.866706, "duration" : 53.39834117889404, "analysis" : [{"errors" : [{"line" : 75, "column" : 9, "message" : "overflow_bugs"}], "file" : "/unique_chucks/5/0x277f5aa60c277aafa22f393d85af1cd037836343.sol", "name" : "BestEther"}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}}, "required": ["line", "column", "message"]}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Lamarque-Rustaing", "dpt" : "Hautes-Pyr\u00e9n\u00e9es", "inscrits" : 49, "abs" : 3, "votants" : 46, "blancs" : 2, "nuls" : 0, "exp" : 44, "res" : [{"panneau" : "1", "voix" : 27}, {"panneau" : "2", "voix" : 17}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"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": {"25239": {"type": "string"}, "25237": {"type": "string"}}, "required": ["25239", "25237"]}, "timeto": {"type": "object", "properties": {"25239": {"type": "number"}, "25237": {"type": "number"}}, "required": ["25239", "25237"]}, "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" : 25238, "title" : ["[Sanctum Tower, First Floor]"], "description" : ["Mimicking the coloring of a sidewinder's skin, the gold-tinged stony floors are chiseled with an overlapping pattern of oblong keeled scales, occasionally punctuated with a gleaming ebonwood accent. The rest of the corridor is empty, accentuating the dizzying effect of the precisely rendered design."], "paths" : ["Obvious exits: south, northwest"], "location" : "the shadow of the Sanctum", "wayto" : {"25239" : "northwest", "25237" : "south"}, "timeto" : {"25239" : 0.2, "25237" : 0.2}, "image" : "sanctum-1474169333.png", "image_coords" : [264, 251, 279, 265]}
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": {"25239": {"type": "string"}, "25237": {"type": "string"}}, "required": ["25239", "25237"]}, "timeto": {"type": "object", "properties": {"25239": {"type": "number"}, "25237": {"type": "number"}}, "required": ["25239", "25237"]}, "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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"totalShames": {"type": "integer"}, "totalShamings": {"type": "integer"}}, "required": ["totalShames", "totalShamings"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "08f7733c-9c9b-453f-bc29-71692ca8f879", "playerTags" : [], "teamTags" : ["747b8e4a-7e50-4638-a973-ea7950a3e739"], "gameTags" : [], "metadata" : {"totalShames" : 49, "totalShamings" : 72}, "created" : "2021-03-19T17:25:37.625Z", "season" : 13, "tournament" : -1, "type" : 154, "day" : 96, "phase" : 6, "category" : 3, "description" : "The Tigers were shamed by the Firefighters.", "nuts" : 1}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"totalShames": {"type": "integer"}, "totalShamings": {"type": "integer"}}, "required": ["totalShames", "totalShamings"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "angular": {"type": "string"}, "angular-resource": {"type": "string"}, "angular-animate": {"type": "string"}, "angular-mocks": {"type": "string"}, "angular-bootstrap": {"type": "string"}, "angular-ui-utils": {"type": "string"}, "angular-ui-router": {"type": "string"}, "angular-material": {"type": "string"}, "material-design-icons": {"type": "string"}, "angular-material-icons": {"type": "string"}, "d3": {"type": "string"}, "jquery": {"type": "string"}, "chart.js": {"type": "string"}, "moment": {"type": "string"}, "angular-material-data-table": {"type": "string"}}, "required": ["bootstrap", "angular", "angular-resource", "angular-animate", "angular-mocks", "angular-bootstrap", "angular-ui-utils", "angular-ui-router", "angular-material", "material-design-icons", "angular-material-icons", "d3", "jquery", "chart.js", "moment", "angular-material-data-table"]}, "resolutions": {"type": "object", "properties": {"angular-material": {"type": "string"}}, "required": ["angular-material"]}}, "required": ["name", "version", "description", "dependencies", "resolutions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "meanjs", "version" : "0.3.2", "description" : "Fullstack JavaScript with MongoDB, Express, AngularJS, and Node.js.", "dependencies" : {"bootstrap" : "~3", "angular" : "~1.2", "angular-resource" : "~1.2", "angular-animate" : "~1.2", "angular-mocks" : "~1.2", "angular-bootstrap" : "~0.12.0", "angular-ui-utils" : "~0.1.1", "angular-ui-router" : "~0.2.11", "angular-material" : "~0.11.0", "material-design-icons" : "~2.0.0", "angular-material-icons" : "~0.5.0", "d3" : "~3.5.6", "jquery" : "~2.1.4", "chart.js" : "~0.1.0", "moment" : "~2.10.6", "angular-material-data-table" : "~0.8.11"}, "resolutions" : {"angular-material" : "~0.11.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "angular": {"type": "string"}, "angular-resource": {"type": "string"}, "angular-animate": {"type": "string"}, "angular-mocks": {"type": "string"}, "angular-bootstrap": {"type": "string"}, "angular-ui-utils": {"type": "string"}, "angular-ui-router": {"type": "string"}, "angular-material": {"type": "string"}, "material-design-icons": {"type": "string"}, "angular-material-icons": {"type": "string"}, "d3": {"type": "string"}, "jquery": {"type": "string"}, "chart.js": {"type": "string"}, "moment": {"type": "string"}, "angular-material-data-table": {"type": "string"}}, "required": ["bootstrap", "angular", "angular-resource", "angular-animate", "angular-mocks", "angular-bootstrap", "angular-ui-utils", "angular-ui-router", "angular-material", "material-design-icons", "angular-material-icons", "d3", "jquery", "chart.js", "moment", "angular-material-data-table"]}, "resolutions": {"type": "object", "properties": {"angular-material": {"type": "string"}}, "required": ["angular-material"]}}, "required": ["name", "version", "description", "dependencies", "resolutions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"greeting": {"type": "string"}, "interpolatedGreeting": {"type": "string"}, "Click me!": {"type": "string"}, "cats": {"type": "object", "properties": {"one": {"type": "string"}, "other": {"type": "string"}}, "required": ["one", "other"]}}, "required": ["greeting", "interpolatedGreeting", "Click me!", "cats"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"greeting" : "Hallo Welt!", "interpolatedGreeting" : "Hallo %s!", "Click me!" : "Klick mich!", "cats" : {"one" : "Eine Katze", "other" : "%s Katzen"}}
json_instruct
{"type": "object", "properties": {"greeting": {"type": "string"}, "interpolatedGreeting": {"type": "string"}, "Click me!": {"type": "string"}, "cats": {"type": "object", "properties": {"one": {"type": "string"}, "other": {"type": "string"}}, "required": ["one", "other"]}}, "required": ["greeting", "interpolatedGreeting", "Click me!", "cats"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : "Papaichton", "circ" : "2\u00e8me circonscription", "dpt" : "Guyane", "inscrits" : 1128, "abs" : 903, "votants" : 225, "blancs" : 0, "nuls" : 4, "exp" : 221, "res" : [{"nuance" : "REM", "nom" : "M. L\u00e9na\u00efck ADAM", "voix" : 149}, {"nuance" : "DVG", "nom" : "M. Jean-Etienne ANTOINETTE", "voix" : 35}, {"nuance" : "DVG", "nom" : "Mme Chantal BERTHELOT", "voix" : 13}, {"nuance" : "REG", "nom" : "M. Davy RIMANE", "voix" : 11}, {"nuance" : "DVG", "nom" : "M. Richard JOIGNY", "voix" : 10}, {"nuance" : "DIV", "nom" : "M. Bernard TADDE\u00cf", "voix" : 3}, {"nuance" : "FI", "nom" : "M. Paul PERSDAM", "voix" : 0}, {"nuance" : "LR", "nom" : "Mme Juliana RIMANE", "voix" : 0}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "32207650-d15e-4fb6-a086-aa79ae0fa670", "playerTags" : ["5bcfb3ff-5786-4c6c-964c-5c325fcc48d7"], "teamTags" : ["9debc64f-74b7-4ae1-a4d6-fce0144b6ea5", "747b8e4a-7e50-4638-a973-ea7950a3e739"], "gameTags" : ["88fea312-f3f4-4ea2-ad02-fbc007ba2617"], "metadata" : {"play" : 55, "subPlay" : -1}, "created" : "2021-04-14T07:04:46.171Z", "season" : 15, "tournament" : -1, "type" : 4, "day" : 37, "phase" : 4, "category" : 0, "description" : "Paula Turnip steals second base!", "nuts" : 0}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type": "integer"}}, "required": ["play", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "6303070020", "district_id" : "6303070", "name" : "SUNGAI ARFAT"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {}}}, "required": ["name", "email", "designation", "mobile"]}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}, "briefDescription": {"type": "string"}, "yearOfEstablishment": {"type": "string"}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "organisationType", "telephone", "mainAddrress", "briefDescription", "yearOfEstablishment"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contacts" : [{"name" : "SANJAY TANDON", "email" : "", "designation" : "", "mobile" : []}], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=4872", "name" : "'SANKALP' INDIA TRUST", "primaryEmail" : "[email protected]", "organisationType" : ["Advocacy & Campaigning", "Direct Service", "Grant-making", "Intermediary", "Network", "Support"], "telephone" : ["919839010863"], "mainAddrress" : {"state" : "Uttar Pradesh", "address" : ["1ST FLOOR,REGENCY AVADH", "CHOWK", "LUCKNOW", "Lucknow", "Uttar Pradesh", "226003"]}, "briefDescription" : "Sankalp India Trust is a NGO and was set up in year 2007 with the objective of promoting social welfare activities like healthcare,education,rural development,environment protection,micro finance,poverty eradication and disaster management etc.At present we are mainly focusing on AIDS and CANCER awareness programmes,shelter for slum children,old age home for very poor persons,education for very poor children,water sanitation and health awareness projects etc.", "yearOfEstablishment" : "2007"}
json_instruct
{"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {}}}, "required": ["name", "email", "designation", "mobile"]}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}, "briefDescription": {"type": "string"}, "yearOfEstablishment": {"type": "string"}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "organisationType", "telephone", "mainAddrress", "briefDescription", "yearOfEstablishment"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following 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" : 93782, "cartId" : "23ebe38c-3de0-41dc-b0ad-203262366567", "preferredProducts" : [3392, 1720, 2717, 3695, 3957, 1836, 666, 3413], "productReviews" : [{"productId" : 2112, "reviewText" : "one of my hobbies is piano. and when i'm playing piano this works great.", "reviewDate" : "2017-08-18T11:44:16.1843309+03:00"}, {"productId" : 4429, "reviewText" : "My neighbor Albertina has one of these. She works as a gardener and she says it looks humongous.", "reviewDate" : "2019-07-23T06:18:01.851921+03:00"}, {"productId" : 2525, "reviewText" : "this SMS is hyper.", "reviewDate" : "2019-11-23T02:15:35.8760183+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["Udupi ", "Karnataka", "3.17", "569"], ["New Delhi ", "NCT of Delhi", "2.65", "94"], ["South Goa ", "Goa", "2.45", "586"], ["North Goa ", "Goa", "2.31", "585"], ["Dakshina Kannada ", "Karnataka", "1.89", "575"], ["Mahe ", "Puducherry", "1.84", "636"], ["Chandigarh ", "Chandigarh", "1.74", "55"], ["Mumbai ", "Maharashtra", "1.70", "519"], ["Tehri Garhwal ", "Uttarakhand", "1.61", "59"], ["Tirunelveli ", "Tamil Nadu", "1.55", "628"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Gen. Luna, Dinalupihan, Bataan, Central Luzon (Region III), PH", "locale" : "ph.central-luzon-region-iii.bataan.dinalupihan.gen-luna", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "6", "region_reference" : "3", "region_name" : "Central Luzon (Region III)", "province_id" : "10", "province_reference" : "10", "province_name" : "Bataan", "city_id" : "418", "city_reference" : "138", "city_name" : "Dinalupihan", "barangay_id" : "11812", "barangay_reference" : "3098", "barangay_name" : "Gen. Luna"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[120.474197, 14.85933], [120.477448, 14.85897], [120.477921, 14.85668], [120.475929, 14.85582], [120.475723, 14.85708], [120.47377, 14.85719], [120.474197, 14.85933]]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Google.Apis.CloudSearch.v1.CloudSearchBaseServiceRequest<<TResponse>>.AltEnum": {"type": "array", "items": {"type": "string"}}, "Google.Apis.CloudSearch.v1.CloudSearchBaseServiceRequest<<TResponse>>.XgafvEnum": {"type": "array", "items": {"type": "string"}}, "Google.Apis.CloudSearch.v1.DebugResource+IdentitysourcesResource+UnmappedidsResource+ListRequest.ResolutionStatusCodeEnum": {"type": "array", "items": {"type": "string"}}, "Google.Apis.CloudSearch.v1.IndexingResource+DatasourcesResource+ItemsResource+DeleteRequest.ModeEnum": {"type": "array", "items": {"type": "string"}}, "Google.Apis.CloudSearch.v1.MediaResource+UploadMediaUpload.AltEnum": {"type": "array", "items": {"type": "string"}}, "Google.Apis.CloudSearch.v1.MediaResource+UploadMediaUpload.XgafvEnum": {"type": "array", "items": {"type": "string"}}}, "required": ["Google.Apis.CloudSearch.v1.CloudSearchBaseServiceRequest<<TResponse>>.AltEnum", "Google.Apis.CloudSearch.v1.CloudSearchBaseServiceRequest<<TResponse>>.XgafvEnum", "Google.Apis.CloudSearch.v1.DebugResource+IdentitysourcesResource+UnmappedidsResource+ListRequest.ResolutionStatusCodeEnum", "Google.Apis.CloudSearch.v1.IndexingResource+DatasourcesResource+ItemsResource+DeleteRequest.ModeEnum", "Google.Apis.CloudSearch.v1.MediaResource+UploadMediaUpload.AltEnum", "Google.Apis.CloudSearch.v1.MediaResource+UploadMediaUpload.XgafvEnum"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Google.Apis.CloudSearch.v1.CloudSearchBaseServiceRequest<<TResponse>>.AltEnum" : ["json", "media", "proto"], "Google.Apis.CloudSearch.v1.CloudSearchBaseServiceRequest<<TResponse>>.XgafvEnum" : ["1", "2"], "Google.Apis.CloudSearch.v1.DebugResource+IdentitysourcesResource+UnmappedidsResource+ListRequest.ResolutionStatusCodeEnum" : ["CODE_UNSPECIFIED", "NOT_FOUND", "IDENTITY_SOURCE_NOT_FOUND", "IDENTITY_SOURCE_MISCONFIGURED", "TOO_MANY_MAPPINGS_FOUND", "INTERNAL_ERROR"], "Google.Apis.CloudSearch.v1.IndexingResource+DatasourcesResource+ItemsResource+DeleteRequest.ModeEnum" : ["UNSPECIFIED", "SYNCHRONOUS", "ASYNCHRONOUS"], "Google.Apis.CloudSearch.v1.MediaResource+UploadMediaUpload.AltEnum" : ["json", "media", "proto"], "Google.Apis.CloudSearch.v1.MediaResource+UploadMediaUpload.XgafvEnum" : ["1", "2"]}
json_instruct
{"type": "object", "properties": {"Google.Apis.CloudSearch.v1.CloudSearchBaseServiceRequest<<TResponse>>.AltEnum": {"type": "array", "items": {"type": "string"}}, "Google.Apis.CloudSearch.v1.CloudSearchBaseServiceRequest<<TResponse>>.XgafvEnum": {"type": "array", "items": {"type": "string"}}, "Google.Apis.CloudSearch.v1.DebugResource+IdentitysourcesResource+UnmappedidsResource+ListRequest.ResolutionStatusCodeEnum": {"type": "array", "items": {"type": "string"}}, "Google.Apis.CloudSearch.v1.IndexingResource+DatasourcesResource+ItemsResource+DeleteRequest.ModeEnum": {"type": "array", "items": {"type": "string"}}, "Google.Apis.CloudSearch.v1.MediaResource+UploadMediaUpload.AltEnum": {"type": "array", "items": {"type": "string"}}, "Google.Apis.CloudSearch.v1.MediaResource+UploadMediaUpload.XgafvEnum": {"type": "array", "items": {"type": "string"}}}, "required": ["Google.Apis.CloudSearch.v1.CloudSearchBaseServiceRequest<<TResponse>>.AltEnum", "Google.Apis.CloudSearch.v1.CloudSearchBaseServiceRequest<<TResponse>>.XgafvEnum", "Google.Apis.CloudSearch.v1.DebugResource+IdentitysourcesResource+UnmappedidsResource+ListRequest.ResolutionStatusCodeEnum", "Google.Apis.CloudSearch.v1.IndexingResource+DatasourcesResource+ItemsResource+DeleteRequest.ModeEnum", "Google.Apis.CloudSearch.v1.MediaResource+UploadMediaUpload.AltEnum", "Google.Apis.CloudSearch.v1.MediaResource+UploadMediaUpload.XgafvEnum"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "latitude", "longitude", "tags", "friends", "greeting", "favoriteFruit"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "55ee5e44f277a43bccf41690", "index" : 330, "guid" : "7e6596b6-8f3a-453d-a91b-fecf2ce5023a", "isActive" : true, "balance" : "$74,321.14", "picture" : "http://placehold.it/32x32", "age" : 47, "eyeColor" : "blue", "name" : "Virginia Coffey", "gender" : "female", "company" : "ZOGAK", "email" : "[email protected]", "phone" : "+1 (879) 535-2581", "address" : "925 Tennis Court, Homestead, American Samoa, 1561", "about" : "Magna pariatur anim dolore anim do in in pariatur et do anim cupidatat. In nisi eu proident sint deserunt nisi labore. Fugiat cillum quis commodo laborum sint minim voluptate. Minim voluptate est laboris ullamco aliqua tempor ex aliquip adipisicing. Incididunt minim labore id anim elit velit aute eu. Laboris aliqua aliquip dolore dolor mollit culpa nostrud qui commodo duis minim ea. Aliquip esse commodo et ex pariatur culpa adipisicing culpa incididunt do ut duis in.\r\n", "registered" : "2014-08-15T10:28:37 -07:00", "latitude" : -82.085697, "longitude" : 75.795599, "tags" : ["aliquip", "labore", "velit", "duis", "irure", "dolore", "fugiat"], "friends" : [{"id" : 0, "name" : "Everett Joyce"}, {"id" : 1, "name" : "Vicki Stevenson"}, {"id" : 2, "name" : "Cathryn Estes"}], "greeting" : "Hello, Virginia Coffey! You have 4 unread messages.", "favoriteFruit" : "orange"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "latitude", "longitude", "tags", "friends", "greeting", "favoriteFruit"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "spec": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "email": {"type": "string"}, "version": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}, "endpoints": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "files", "spec", "author", "email", "version", "categories", "endpoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "500 Webhook", "description" : "Send a POST request to URL when an error occurs", "files" : ["500_webhook.lua"], "spec" : ["500_webhook_spec.lua"], "author" : "Giovanni Cappellotto", "email" : "[email protected]", "version" : "1.0.0", "categories" : ["notifications", "devops"], "endpoints" : ["*"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "spec": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "email": {"type": "string"}, "version": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}, "endpoints": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "files", "spec", "author", "email", "version", "categories", "endpoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "lastModifiedAt": {"type": "integer"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "lastModifiedAt": {"type": "integer"}}, "required": ["name", "lastModifiedAt"]}}}, "required": ["name", "lastModifiedAt", "entries"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Uint8Array", "lastModifiedAt" : 1629769827000, "entries" : [{"name" : "Uint8Array", "lastModifiedAt" : 1606791057717}, {"name" : "__type__", "lastModifiedAt" : 1629769827000}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "lastModifiedAt": {"type": "integer"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "lastModifiedAt": {"type": "integer"}}, "required": ["name", "lastModifiedAt"]}}}, "required": ["name", "lastModifiedAt", "entries"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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" : "Constraint", "definitions" : ["A limitation or restriction.", "Stiffness of manner and inhibition in relations between people."], "parts-of-speech" : "Noun"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {"type": "number"}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "LENGTH_OF_ERA": {"type": "object", "properties": {"CATEGORY": {"type": "string"}, "MIN_VALUE": {"type": "integer"}, "P10_VALUE": {"type": "integer"}, "P25_VALUE": {"type": "integer"}, "MEDIAN_VALUE": {"type": "integer"}, "P75_VALUE": {"type": "integer"}, "P90_VALUE": {"type": "integer"}, "MAX_VALUE": {"type": "integer"}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "LENGTH_OF_ERA", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [200306, 200404, 200507, 200601], "Y_PREVALENCE_1000PP" : [0.00156, 0.00143, 0.00133, 0.0013]}, "LENGTH_OF_ERA" : {"CATEGORY" : "Length of era", "MIN_VALUE" : 1, "P10_VALUE" : 1, "P25_VALUE" : 1, "MEDIAN_VALUE" : 1, "P75_VALUE" : 1, "P90_VALUE" : 1, "MAX_VALUE" : 32}, "AGE_AT_FIRST_DIAGNOSIS" : {"CATEGORY" : ["MALE", "FEMALE"], "MIN_VALUE" : [15, 1], "P10_VALUE" : [32, 32], "P25_VALUE" : [40, 41], "MEDIAN_VALUE" : [48, 50], "P75_VALUE" : [63, 64], "P90_VALUE" : [76, 77], "MAX_VALUE" : [95, 90]}}
json_instruct
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {"type": "number"}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "LENGTH_OF_ERA": {"type": "object", "properties": {"CATEGORY": {"type": "string"}, "MIN_VALUE": {"type": "integer"}, "P10_VALUE": {"type": "integer"}, "P25_VALUE": {"type": "integer"}, "MEDIAN_VALUE": {"type": "integer"}, "P75_VALUE": {"type": "integer"}, "P90_VALUE": {"type": "integer"}, "MAX_VALUE": {"type": "integer"}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "LENGTH_OF_ERA", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"addition_input_file_paths": {"type": "array", "items": {}}, "input_files": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}}, "required": ["addition_input_file_paths", "input_files", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"addition_input_file_paths" : [], "input_files" : ["Microsoft.PowerPlatform/preview/2020-10-30-preview/account.json", "Microsoft.PowerPlatform/preview/2020-10-30-preview/enterprisePolicy.json", "Microsoft.PowerPlatform/preview/2020-10-30-preview/privateEndpointConnection.json", "Microsoft.PowerPlatform/preview/2020-10-30-preview/privateLinkResources.json"], "name" : "package-2020-10-30-preview"}
json_instruct
{"type": "object", "properties": {"addition_input_file_paths": {"type": "array", "items": {}}, "input_files": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}}, "required": ["addition_input_file_paths", "input_files", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"hooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}}, "required": ["pre-commit"]}}, "required": ["hooks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hooks" : {"pre-commit" : "yarn format"}}
json_instruct
{"type": "object", "properties": {"hooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}}, "required": ["pre-commit"]}}, "required": ["hooks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"221790": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["221790"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"221790" : {"success" : false}}
json_instruct
{"type": "object", "properties": {"221790": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["221790"], "$schema": "http://json-schema.org/draft-07/schema#"}