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": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "_release": {"type": "string"}, "_resolution": {"type": "object", "properties": {"type": {"type": "string"}, "branch": {"type": "string"}, "commit": {"type": "string"}}, "required": ["type", "branch", "commit"]}, "_source": {"type": "string"}, "_target": {"type": "string"}, "_originalSource": {"type": "string"}, "_direct": {"type": "boolean"}}, "required": ["name", "description", "main", "homepage", "dependencies", "repository", "_release", "_resolution", "_source", "_target", "_originalSource", "_direct"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "jquery-html5-placeholder-shim", "description" : "HTML5 Placeholder support for non compliant browsers using jQuery.", "main" : "./jquery.html5-placeholder-shim.js", "homepage" : "https://github.com/parndt/jquery-html5-placeholder-shim", "dependencies" : {"jquery" : ">=1.9.0"}, "repository" : {"type" : "git", "url" : "git://github.com/parndt/jquery-html5-placeholder-shim.git"}, "_release" : "67436f7c44", "_resolution" : {"type" : "branch", "branch" : "master", "commit" : "67436f7c448673b760b7df1d6155800fe2f8bf53"}, "_source" : "git://github.com/parndt/jquery-html5-placeholder-shim.git", "_target" : "*", "_originalSource" : "jquery-html5-placeholder-shim", "_direct" : true}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "_release": {"type": "string"}, "_resolution": {"type": "object", "properties": {"type": {"type": "string"}, "branch": {"type": "string"}, "commit": {"type": "string"}}, "required": ["type", "branch", "commit"]}, "_source": {"type": "string"}, "_target": {"type": "string"}, "_originalSource": {"type": "string"}, "_direct": {"type": "boolean"}}, "required": ["name", "description", "main", "homepage", "dependencies", "repository", "_release", "_resolution", "_source", "_target", "_originalSource", "_direct"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["eurostar-booking-magnet"]
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": {"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" : ["Place a baking sheet in the refrigerator to chill.", "Melt chocolate in a microwave-safe glass or ceramic bowl in 30-second intervals, stirring after each melting, for 1 to 3 minutes. Dip cookies in the melted chocolate and place on the chilled baking sheet. Return baking sheet to refrigerator until chocolate is set, at least 30 seconds."], "ingredients" : ["1 pound chocolate almond bark", "2 (16 ounce) packages gingersnap cookies"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Chocolate Covered Gingersnaps", "url" : "http://allrecipes.com/recipe/234344/chocolate-covered-gingersnaps/"}
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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"1": {"type": "boolean"}}, "required": ["1"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "c5e4d112cd9aa8a1b4c1", "c" : {"1" : false}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"1": {"type": "boolean"}}, "required": ["1"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_popup"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "options_ui": {"type": "object", "properties": {"page": {"type": "string"}, "chrome_style": {"type": "boolean"}}, "required": ["page", "chrome_style"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "run_at": {"type": "string"}}, "required": ["matches", "js", "run_at"]}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}}, "required": ["manifest_version", "name", "description", "version", "icons", "browser_action", "permissions", "options_ui", "content_scripts", "background"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"manifest_version" : 2, "name" : "musicorumFindosus", "description" : "Find your favorite music service", "version" : "1.0.0", "icons" : {"128" : "icon_128.png"}, "browser_action" : {"default_icon" : "icon.png", "default_popup" : "popup.html"}, "permissions" : ["activeTab", "https://open.spotify.com/*", "https://www.musixmatch.com/search/*"], "options_ui" : {"page" : "html/options.html", "chrome_style" : true}, "content_scripts" : [{"matches" : ["https://open.spotify.com/*"], "js" : ["js/spotifyListener.js"], "run_at" : "document_idle"}, {"matches" : ["https://www.musixmatch.com/search/*"], "js" : ["js/musixmatchSearch.js"], "run_at" : "document_idle"}], "background" : {"scripts" : ["js/startup.js"]}}
json_instruct
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_popup"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "options_ui": {"type": "object", "properties": {"page": {"type": "string"}, "chrome_style": {"type": "boolean"}}, "required": ["page", "chrome_style"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "run_at": {"type": "string"}}, "required": ["matches", "js", "run_at"]}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}}, "required": ["manifest_version", "name", "description", "version", "icons", "browser_action", "permissions", "options_ui", "content_scripts", "background"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "chainId": {"type": "integer"}, "decimals": {"type": "integer"}, "symbol": {"type": "string"}, "defaultView": {"type": "string"}, "address": {"type": "string"}, "token": {"type": "string"}, "core": {"type": "array", "items": {}}, "min": {"type": "integer"}, "invalid": {"type": "array", "items": {}}}, "required": ["key", "name", "chainId", "decimals", "symbol", "defaultView", "address", "token", "core", "min", "invalid"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"key" : "raid-guild", "name" : "Raid Guild", "chainId" : 1, "decimals" : 0, "symbol" : "RAID", "defaultView" : "all", "address" : "0x4BBC860B82E70CB7af1FD50dEBB0143E0F53e016", "token" : "0x4BBC860B82E70CB7af1FD50dEBB0143E0F53e016", "core" : [], "min" : 1, "invalid" : []}
json_instruct
{"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "chainId": {"type": "integer"}, "decimals": {"type": "integer"}, "symbol": {"type": "string"}, "defaultView": {"type": "string"}, "address": {"type": "string"}, "token": {"type": "string"}, "core": {"type": "array", "items": {}}, "min": {"type": "integer"}, "invalid": {"type": "array", "items": {}}}, "required": ["key", "name", "chainId", "decimals", "symbol", "defaultView", "address", "token", "core", "min", "invalid"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"namaKab" : "TOLITOLI", "originalFilename" : "1. MUSTARIM.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 199749, "noUrut" : 1, "nama" : "MUSTARIM", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TOLITOLI", "originalFilename" : "1.JPG", "namaPartai" : "PARTAI DEMOKRAT", "id" : 303855, "noUrut" : 2, "nama" : "DENNY ALDEN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TOLITOLI", "originalFilename" : "3. NOVA DUNGGIO.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 203055, "noUrut" : 3, "nama" : "NOVA DUNGGIO", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "TOLITOLI", "originalFilename" : "4. MANSUR.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 200137, "noUrut" : 4, "nama" : "MANSUR", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TOLITOLI", "originalFilename" : "5. ASRAN.JPG", "namaPartai" : "PARTAI DEMOKRAT", "id" : 197335, "noUrut" : 5, "nama" : "ASRAN KAMRAN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TOLITOLI", "originalFilename" : "DSC_0186.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 302240, "noUrut" : 6, "nama" : "JURIA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "TOLITOLI", "originalFilename" : "7. SATRIANI.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 223647, "noUrut" : 7, "nama" : "SATRIANI, SE", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "TOLITOLI", "originalFilename" : "8. BAHARUDIN.jpg", "namaPartai" : "PARTAI DEMOKRAT", "id" : 141749, "noUrut" : 8, "nama" : "BAHARUDIN, SE", "stringJenisKelamin" : "Laki-Laki"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"page_title": {"type": "string"}, "meta_descr": {"type": "string"}, "meta_keywords": {"type": "string"}, "start_function": {"type": "string"}, "functions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "func_name": {"type": "string"}}, "required": ["type", "url", "func_name"]}}, "styleSheets": {"type": "array", "items": {}}, "clear_function": {"type": "string"}, "styles": {"type": "string"}, "menu_title": {"type": "string"}, "src": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "folder_name": {"type": "string"}, "item_name": {"type": "string"}, "button_type": {"type": "string"}, "h_text": {"type": "string"}}, "required": ["type", "url", "folder_name", "item_name", "button_type", "h_text"]}}, "news": {"type": "array", "items": {}}}, "required": ["page_title", "meta_descr", "meta_keywords", "start_function", "functions", "styleSheets", "clear_function", "styles", "menu_title", "src", "news"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"page_title" : "JavaScript | \u0417\u0430\u043d\u044f\u0442\u0438\u0435 3", "meta_descr" : "JavaScript: DOM (Document Object Model)", "meta_keywords" : "for, for/in, while, case, if, else, do...while,", "start_function" : "/Javascript/js_object.js", "functions" : [{"type" : "function", "url" : "/js/create_galery.js", "func_name" : "garevna_createGalery"}], "styleSheets" : [], "clear_function" : "", "styles" : "", "menu_title" : "\u0417\u0430\u043d\u044f\u0442\u0438\u0435 3", "src" : [{"type" : "window", "url" : "/chunks/js/#/data_files/js/JS_statements.json", "folder_name" : "JS", "item_name" : "Statements", "button_type" : "settings", "h_text" : "\u0412\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f"}, {"type" : "window", "url" : "https://jsfiddle.net/jq4L6rkf/67/", "folder_name" : "JS", "item_name" : "\u0426\u0438\u043a\u043b\u044b \u0438 \u0443\u0441\u043b\u043e\u0432\u043d\u044b\u0435 \u043e\u043f\u0435\u0440\u0430\u0442\u043e\u0440\u044b", "button_type" : "jsfiddle", "h_text" : "\u0420\u0430\u0431\u043e\u0447\u0430\u044f \u043f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u0430"}, {"type" : "window", "url" : "https://jsbin.com", "folder_name" : "\u0412\u0441\u043f\u043e\u043c\u043e\u0433\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u044b", "item_name" : "\u041f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u0430 jsbin.com", "button_type" : "jsbin", "h_text" : "\u041f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u0430"}, {"type" : "window", "url" : "https://jsfiddle.net", "folder_name" : "\u0412\u0441\u043f\u043e\u043c\u043e\u0433\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u044b", "item_name" : "\u041f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u0430 jsfiddle.net", "button_type" : "jsfiddle", "h_text" : "\u041f\u0435\u0441\u043e\u0447\u043d\u0438\u0446\u0430"}], "news" : []}
json_instruct
{"type": "object", "properties": {"page_title": {"type": "string"}, "meta_descr": {"type": "string"}, "meta_keywords": {"type": "string"}, "start_function": {"type": "string"}, "functions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "func_name": {"type": "string"}}, "required": ["type", "url", "func_name"]}}, "styleSheets": {"type": "array", "items": {}}, "clear_function": {"type": "string"}, "styles": {"type": "string"}, "menu_title": {"type": "string"}, "src": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "folder_name": {"type": "string"}, "item_name": {"type": "string"}, "button_type": {"type": "string"}, "h_text": {"type": "string"}}, "required": ["type", "url", "folder_name", "item_name", "button_type", "h_text"]}}, "news": {"type": "array", "items": {}}}, "required": ["page_title", "meta_descr", "meta_keywords", "start_function", "functions", "styleSheets", "clear_function", "styles", "menu_title", "src", "news"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "title" : "Piano di Cammarata", "id" : "452406", "bbox" : [16.259078, 39.744248, 16.259078, 39.744248], "description" : "An ancient place, cited: BAtlas 46 D2 Piano di Cammarata", "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [16.259078, 39.744248]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [16.259078, 39.744248]}, "id" : "darmc-location-18758", "type" : "Feature", "properties" : {"description" : "500K scale point location", "location_precision" : "precise", "title" : "DARMC location 18758", "link" : "http://pleiades.stoa.org/places/452406/darmc-location-18758"}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "AccessComments": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "AccessComments", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 113069, "UUID" : "A561C1FC-36CC-440F-8459-A85EC9D8E23A", "DataProviderID" : 2, "DataProvidersReference" : "104318", "OperatorID" : 5, "UsageTypeID" : 1, "AddressInfo" : {"ID" : 113415, "Title" : "LG&E", "AddressLine1" : "3101 Rock Creek Dr", "Town" : "Louisville", "StateOrProvince" : "KY", "Postcode" : "40207", "CountryID" : 2, "Latitude" : 38.2421201, "Longitude" : -85.6712378, "ContactTelephone1" : "888-758-4389", "AccessComments" : "24 hours daily", "RelatedURL" : "http://www.chargepoint.com/", "DistanceUnit" : 0}, "Connections" : [{"ID" : 159235, "ConnectionTypeID" : 1, "LevelID" : 2, "Amps" : 16, "Voltage" : 230, "PowerKW" : 3, "CurrentTypeID" : 10, "Quantity" : 2}], "DateLastStatusUpdate" : "2019-04-06T04:02:00Z", "DataQualityLevel" : 3, "DateCreated" : "2018-11-28T02:04:00Z", "SubmissionStatusTypeID" : 100}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "AccessComments": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "AccessComments", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["tiara air", "oranjestad", "aruba", "kralendijk", "netherlands antilles", "0"], ["tiara air", "oranjestad", "aruba", "willemstad", "netherlands antilles", "0"], ["tiara air", "oranjestad", "aruba", "paraguana", "venezuela", "0"], ["tiara air", "oranjestad", "aruba", "maracaibo", "venezuela", "0"], ["tiara air", "oranjestad", "aruba", "rio hacha", "colombia", "0"], ["tiara air", "kralendijk", "netherlands antilles", "oranjestad", "aruba", "0"], ["tiara air", "willemstad", "netherlands antilles", "oranjestad", "aruba", "0"], ["tiara air", "paraguana", "venezuela", "oranjestad", "aruba", "0"], ["tiara air", "maracaibo", "venezuela", "oranjestad", "aruba", "0"], ["tiara air", "rio hacha", "colombia", "oranjestad", "aruba", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"index_name": {"type": "string"}, "start_urls": {"type": "array", "items": {"type": "string"}}, "selectors": {"type": "object", "properties": {"lvl0": {"type": "object", "properties": {"selector": {"type": "string"}, "default_value": {"type": "string"}}, "required": ["selector", "default_value"]}, "lvl1": {"type": "string"}, "lvl2": {"type": "string"}, "text": {"type": "string"}}, "required": ["lvl0", "lvl1", "lvl2", "text"]}, "nb_hits": {"type": "integer"}}, "required": ["index_name", "start_urls", "selectors", "nb_hits"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index_name" : "middlebury", "start_urls" : ["http://middlebury.github.io/online-style-guide/editorial"], "selectors" : {"lvl0" : {"selector" : "", "default_value" : "Documentation"}, "lvl1" : "#content h2", "lvl2" : "#content p strong", "text" : "#content p"}, "nb_hits" : 1198}
json_instruct
{"type": "object", "properties": {"index_name": {"type": "string"}, "start_urls": {"type": "array", "items": {"type": "string"}}, "selectors": {"type": "object", "properties": {"lvl0": {"type": "object", "properties": {"selector": {"type": "string"}, "default_value": {"type": "string"}}, "required": ["selector", "default_value"]}, "lvl1": {"type": "string"}, "lvl2": {"type": "string"}, "text": {"type": "string"}}, "required": ["lvl0", "lvl1", "lvl2", "text"]}, "nb_hits": {"type": "integer"}}, "required": ["index_name", "start_urls", "selectors", "nb_hits"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"start": {"type": "object", "properties": {"output": {"type": "string"}, "explorer": {"type": "string"}}, "required": ["output", "explorer"]}, "stop": {"type": "object", "properties": {"output": {"type": "string"}, "explorer": {"type": "string"}, "terminatePreLaunchTask": {"type": "boolean"}}, "required": ["output", "explorer", "terminatePreLaunchTask"]}}, "required": ["start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"start" : {"output" : "workbench.debug.action.focusRepl", "explorer" : "workbench.view.debug"}, "stop" : {"output" : "workbench.action.output.toggleOutput", "explorer" : "workbench.view.explorer", "terminatePreLaunchTask" : true}}
json_instruct
{"type": "object", "properties": {"start": {"type": "object", "properties": {"output": {"type": "string"}, "explorer": {"type": "string"}}, "required": ["output", "explorer"]}, "stop": {"type": "object", "properties": {"output": {"type": "string"}, "explorer": {"type": "string"}, "terminatePreLaunchTask": {"type": "boolean"}}, "required": ["output", "explorer", "terminatePreLaunchTask"]}}, "required": ["start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"avif": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}, "webp": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}, "jpeg": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}, "slug": {"type": "string"}}, "required": ["avif", "webp", "jpeg", "slug"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"avif" : [{"format" : "avif", "width" : 90, "height" : 90, "url" : "/img/avatars/opencollective/netin-nopeustesti.avif", "sourceType" : "image/avif", "srcset" : "/img/avatars/opencollective/netin-nopeustesti.avif 90w", "filename" : "netin-nopeustesti.avif", "outputPath" : "src/img/avatars/opencollective/netin-nopeustesti.avif", "size" : 894}], "webp" : [{"format" : "webp", "width" : 90, "height" : 90, "url" : "/img/avatars/opencollective/netin-nopeustesti.webp", "sourceType" : "image/webp", "srcset" : "/img/avatars/opencollective/netin-nopeustesti.webp 90w", "filename" : "netin-nopeustesti.webp", "outputPath" : "src/img/avatars/opencollective/netin-nopeustesti.webp", "size" : 1278}], "jpeg" : [{"format" : "jpeg", "width" : 90, "height" : 90, "url" : "/img/avatars/opencollective/netin-nopeustesti.jpeg", "sourceType" : "image/jpeg", "srcset" : "/img/avatars/opencollective/netin-nopeustesti.jpeg 90w", "filename" : "netin-nopeustesti.jpeg", "outputPath" : "src/img/avatars/opencollective/netin-nopeustesti.jpeg", "size" : 1937}], "slug" : "netin-nopeustesti"}
json_instruct
{"type": "object", "properties": {"avif": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}, "webp": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}, "jpeg": {"type": "array", "items": {"type": "object", "properties": {"format": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "url": {"type": "string"}, "sourceType": {"type": "string"}, "srcset": {"type": "string"}, "filename": {"type": "string"}, "outputPath": {"type": "string"}, "size": {"type": "integer"}}, "required": ["format", "width", "height", "url", "sourceType", "srcset", "filename", "outputPath", "size"]}}, "slug": {"type": "string"}}, "required": ["avif", "webp", "jpeg", "slug"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"figCaption": {"type": "string"}}, "required": ["figCaption"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"figCaption" : "Tekst under bildet med en <a href=\"{{link.sider-infoportal-seksjonsforside-v-starteogdrive}}\">lenke</a>."}
json_instruct
{"type": "object", "properties": {"figCaption": {"type": "string"}}, "required": ["figCaption"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "types": {"type": "string"}, "typeScriptVersion": {"type": "string"}}, "required": ["name", "version", "description", "scripts", "author", "homepage", "license", "types", "typeScriptVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@types/qwebchannel", "version" : "1.0.0", "description" : "TypeScript definitions for QT WebChannel API", "scripts" : {}, "author" : "Volume Graphics GmbH", "homepage" : "https://www.volumegraphics.com/", "license" : "MIT", "types" : "index", "typeScriptVersion" : "3.0"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "types": {"type": "string"}, "typeScriptVersion": {"type": "string"}}, "required": ["name", "version", "description", "scripts", "author", "homepage", "license", "types", "typeScriptVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "city": {"type": "object", "properties": {"code": {"type": "integer"}, "name": {"type": "string"}}, "required": ["code", "name"]}, "region": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "name"]}, "party": {"type": "string"}, "name": {"type": "string"}, "hasEmail": {"type": "boolean"}}, "required": ["id", "city", "region", "party", "name", "hasEmail"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "100136537", "city" : {"code" : 2600, "name" : "\ubd80\uc0b0\uad11\uc5ed\uc2dc"}, "region" : {"code" : "2260502", "name" : "\ubd80\uc0b0\uc9c4\uad6c\uc744"}, "party" : "\ubbf8\ub798\ud1b5\ud569\ub2f9", "name" : "\uc774\ud5cc\uc2b9", "hasEmail" : true}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "city": {"type": "object", "properties": {"code": {"type": "integer"}, "name": {"type": "string"}}, "required": ["code", "name"]}, "region": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "name"]}, "party": {"type": "string"}, "name": {"type": "string"}, "hasEmail": {"type": "boolean"}}, "required": ["id", "city", "region", "party", "name", "hasEmail"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"1547613949234": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "1547613949498": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}}, "required": ["1547613949234", "1547613949498"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"1547613949234" : {"type" : "st"}, "1547613949498" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/MS0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9XT1JMRF9FYXJ0aC1FUV9XT1JMRF9FQVJUSC5odG1sLWFuYWx5dGljcy0xNTQ3NjEzOTQ5MzQ1.json"}}
json_instruct
{"type": "object", "properties": {"1547613949234": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "1547613949498": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}}, "required": ["1547613949234", "1547613949498"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {"type": "string"}}}, "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"}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "organisationType", "telephone", "mainAddrress", "briefDescription"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contacts" : [{"name" : "Patrick San Francesco", "email" : "delhi@samarpanfoundation.org", "designation" : "Chief Functionary", "mobile" : ["91-9873872451"]}], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=8407", "name" : "SAMARPAN FOUNDATION", "primaryEmail" : "nilofer@samarpanfoundation.org", "organisationType" : ["Direct Service"], "telephone" : ["919873872451"], "mainAddrress" : {"state" : "Delhi", "address" : ["63 Jor Bagh", "New Delhi", "Delhi", "110003"]}, "briefDescription" : "To work for the upliftment and welfare of underprivileged children and orphans, irrespective of caste, creed and religion and to establish institutions."}
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": {"type": "string"}}}, "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"}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "organisationType", "telephone", "mainAddrress", "briefDescription"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "integer"}, "name": {"type": "string"}, "level": {"type": "integer"}, "pods": {"type": "integer"}, "ethereal": {"type": "boolean"}, "stats": {"type": "string"}}, "required": ["id", "type", "name", "level", "pods", "ethereal", "stats"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 10605, "type" : 75, "name" : "Pergamino del hechizo B\u00fameran P\u00e9rfido", "level" : 1, "pods" : 1, "ethereal" : false, "stats" : ""}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "integer"}, "name": {"type": "string"}, "level": {"type": "integer"}, "pods": {"type": "integer"}, "ethereal": {"type": "boolean"}, "stats": {"type": "string"}}, "required": ["id", "type", "name", "level", "pods", "ethereal", "stats"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "pk": {"type": "integer"}, "fields": {"type": "object", "properties": {"created_at": {"type": "string"}, "updated_at": {"type": "string"}, "code": {"type": "string"}, "title": {"type": "string"}, "slug": {"type": "string"}, "description": {"type": "string"}}, "required": ["created_at", "updated_at", "code", "title", "slug", "description"]}}, "required": ["model", "pk", "fields"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"model" : "coderdojochi.meetingtype", "pk" : 1, "fields" : {"created_at" : "2013-01-01T06:00:00Z", "updated_at" : "2013-01-01T06:00:00Z", "code" : "", "title" : "Introductory Meeting", "slug" : "introductory-meeting", "description" : "<p>This will be an introduction meeting. We will be going over our progress, our future, and how you can help!</p>\r\n\r\n<p>Please bring something you want to write on.</p>\r\n\r\n<p>Do you like kids? Do you like helping kids learn? We All Code is the best of both: a free computer club for kids interested in learning how to code.</p>\r\n\r\n<p>Everybody is welcome! No technical skills necessary.</p>\r\n\r\n<p>If you are interested in helping out, please sign up and tell your friends! We are so excited for so many passionate people!</p>"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "pk": {"type": "integer"}, "fields": {"type": "object", "properties": {"created_at": {"type": "string"}, "updated_at": {"type": "string"}, "code": {"type": "string"}, "title": {"type": "string"}, "slug": {"type": "string"}, "description": {"type": "string"}}, "required": ["created_at", "updated_at", "code", "title", "slug", "description"]}}, "required": ["model", "pk", "fields"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Heat the canola oil in a large skillet over medium heat and stir in the ginger slices. Cook and stir until fragrant and lightly browned. Remove ginger and set aside. Season chicken with salt and pepper. Place chicken in the same skillet over medium-high heat without crowding. Cook until chicken is lightly brown on all sides. Return the ginger to the skillet and add coconut milk. Bring to a boil, then cover the skillet with the lid tilted to allow steam to escape. Reduce heat to medium-low and simmer until the chicken is no longer pink at the bone, stirring occasionally, about 30 minutes.", "Stir in the spinach. Simmer uncovered until spinach is warmed through, 8 to 12 minutes. Season with salt and pepper, as necessary."], "ingredients" : ["3 tablespoons canola oil", "1/2 cup sliced fresh ginger", "1 (5 pound) whole chicken, cut into pieces", "salt and ground black pepper to taste", "2 (14 ounce) cans coconut milk", "1 (10 ounce) package frozen chopped spinach, thawed and drained"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Ginataang Manok (Chicken Cooked in Coconut Milk)", "url" : "http://allrecipes.com/recipe/204821/ginataang-manok-chicken-cooked-in-co/"}
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"infoPage": {"type": "object", "properties": {"match": {"type": "string"}, "indexPage": {"type": "string"}, "footer": {"type": "string"}, "bookInfos": {"type": "object", "properties": {"source": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "classes": {"type": "string"}, "isend": {"type": "string"}, "cover": {"type": "string"}, "brief": {"type": "string"}}, "required": ["source", "title", "author", "classes", "isend", "cover", "brief"]}}, "required": ["match", "indexPage", "footer", "bookInfos"]}, "indexPage": {"type": "object", "properties": {"match": {"type": "string"}, "infoPage": {"type": "string"}, "footer": {"type": "string"}, "bookIndexs": {"type": "string"}}, "required": ["match", "infoPage", "footer", "bookIndexs"]}, "contentPage": {"type": "object", "properties": {"match": {"type": "string"}, "footer": {"type": "string"}, "filter": {"type": "string"}, "filter2": {"type": "string"}, "chapterInfos": {"type": "object", "properties": {"source": {"type": "string"}, "content": {"type": "string"}, "nextPage": {"type": "string"}}, "required": ["source", "content", "nextPage"]}}, "required": ["match", "footer", "filter", "filter2", "chapterInfos"]}}, "required": ["infoPage", "indexPage", "contentPage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"infoPage" : {"match" : "$('.breadnav a').length == 1", "indexPage" : "$.location()", "footer" : "$('footer').length > 0", "bookInfos" : {"source" : "$.location()", "title" : "$('.all').text()", "author" : "'\u6728\u6728X'", "classes" : "$('.all').text()", "isend" : "false", "cover" : "'http://image.hnol.net/c/2016-03/13/13/201603131308166381-2089977.jpg'", "brief" : "$('.all').text()"}}, "indexPage" : {"match" : "$('.breadnav a').length == 1", "infoPage" : "$.location()", "footer" : "$('footer').length > 0", "bookIndexs" : "$('div.bd > ul > li > a').map((i,v)=>({href:$.location($(v).attr('href')),text:$(v).attr('title'),id:$(v).attr('href').replace(/.*\\/(\\w+)\\/$/,'$1')})).toArray()"}, "contentPage" : {"match" : "$('.breadnav a').length == 2", "footer" : "$('footer').length > 0", "filter" : "$('.con').find('a,script').remove()", "filter2" : "$('.con img').each((i,v)=>{$(v).attr('src',$(v).attr('data-original'))})", "chapterInfos" : {"source" : "$.location()", "content" : "$('.con').html()", "nextPage" : "$.location($('#page').find('a:contains(\u4e0b\u4e00\u9875)').attr('href'))"}}}
json_instruct
{"type": "object", "properties": {"infoPage": {"type": "object", "properties": {"match": {"type": "string"}, "indexPage": {"type": "string"}, "footer": {"type": "string"}, "bookInfos": {"type": "object", "properties": {"source": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "classes": {"type": "string"}, "isend": {"type": "string"}, "cover": {"type": "string"}, "brief": {"type": "string"}}, "required": ["source", "title", "author", "classes", "isend", "cover", "brief"]}}, "required": ["match", "indexPage", "footer", "bookInfos"]}, "indexPage": {"type": "object", "properties": {"match": {"type": "string"}, "infoPage": {"type": "string"}, "footer": {"type": "string"}, "bookIndexs": {"type": "string"}}, "required": ["match", "infoPage", "footer", "bookIndexs"]}, "contentPage": {"type": "object", "properties": {"match": {"type": "string"}, "footer": {"type": "string"}, "filter": {"type": "string"}, "filter2": {"type": "string"}, "chapterInfos": {"type": "object", "properties": {"source": {"type": "string"}, "content": {"type": "string"}, "nextPage": {"type": "string"}}, "required": ["source", "content", "nextPage"]}}, "required": ["match", "footer", "filter", "filter2", "chapterInfos"]}}, "required": ["infoPage", "indexPage", "contentPage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "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" : 76981, "cartId" : "b07c0423-00ac-4721-ad9a-8fa7c7567f36", "preferredProducts" : [], "productReviews" : [{"productId" : 1473, "reviewText" : "This Facilitator works excessively well. It speedily improves my baseball by a lot.", "reviewDate" : "2017-04-16T08:37:43.6121575+03:00"}, {"productId" : 2847, "reviewText" : "i use it every Tuesday when i'm in my store.", "reviewDate" : "2018-01-18T23:19:08.0463675+02:00"}, {"productId" : 4880, "reviewText" : "The box this comes in is 4 mile by 5 yard and weights 18 pound!!", "reviewDate" : "2019-09-29T21:52:15.292955+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "DAINE", "frequency" : 622, "males" : "51.60771704180064 %", "females" : "48.39228295819936 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"ColorSpace": {"type": "string"}, "CustomRendered": {"type": "string"}, "DateTimeOriginal": {"type": "string"}, "DigitalZoomRatio": {"type": "string"}, "ExifIFDPointer": {"type": "string"}, "ExifImageHeight": {"type": "string"}, "ExifImageWidth": {"type": "string"}, "ExifVersion": {"type": "string"}, "ExposureBias": {"type": "string"}, "ExposureProgram": {"type": "string"}, "ExposureTime": {"type": "string"}, "FNumber": {"type": "string"}, "Flash": {"type": "string"}, "FocalLength": {"type": "string"}, "FocalPlaneResolutionUnit": {"type": "string"}, "FocalPlaneXResolution": {"type": "string"}, "FocalPlaneYResolution": {"type": "string"}, "Make": {"type": "string"}, "Model": {"type": "string"}, "Orientation": {"type": "string"}, "ResolutionUnit": {"type": "string"}, "Software": {"type": "string"}, "SubjectDistance": {"type": "string"}, "UserComment": {"type": "string"}, "WhiteBalance": {"type": "string"}, "XResolution": {"type": "string"}, "YResolution": {"type": "string"}}, "required": ["ColorSpace", "CustomRendered", "DateTimeOriginal", "DigitalZoomRatio", "ExifIFDPointer", "ExifImageHeight", "ExifImageWidth", "ExifVersion", "ExposureBias", "ExposureProgram", "ExposureTime", "FNumber", "Flash", "FocalLength", "FocalPlaneResolutionUnit", "FocalPlaneXResolution", "FocalPlaneYResolution", "Make", "Model", "Orientation", "ResolutionUnit", "Software", "SubjectDistance", "UserComment", "WhiteBalance", "XResolution", "YResolution"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ColorSpace" : "", "CustomRendered" : "Custom", "DateTimeOriginal" : "2008:03:18 04:02:12", "DigitalZoomRatio" : "0.002", "ExifIFDPointer" : "175", "ExifImageHeight" : "1200", "ExifImageWidth" : "1600", "ExifVersion" : "0220", "ExposureBias" : "1", "ExposureProgram" : "Shutter priority", "ExposureTime" : "0", "FNumber" : "0.0000234", "Flash" : "No Flash", "FocalLength" : "325.4 mm", "FocalPlaneResolutionUnit" : "2", "FocalPlaneXResolution" : "2.21", "FocalPlaneYResolution" : "6", "Make" : "LG Electronics", "Model" : "GT365", "Orientation" : "10", "ResolutionUnit" : "2", "Software" : "Exif Software Version 1.00a", "SubjectDistance" : "1.2647058823529411", "UserComment" : "65,83,67,73,0,0,0,65,99,116", "WhiteBalance" : "Manual", "XResolution" : "72", "YResolution" : "72"}
json_instruct
{"type": "object", "properties": {"ColorSpace": {"type": "string"}, "CustomRendered": {"type": "string"}, "DateTimeOriginal": {"type": "string"}, "DigitalZoomRatio": {"type": "string"}, "ExifIFDPointer": {"type": "string"}, "ExifImageHeight": {"type": "string"}, "ExifImageWidth": {"type": "string"}, "ExifVersion": {"type": "string"}, "ExposureBias": {"type": "string"}, "ExposureProgram": {"type": "string"}, "ExposureTime": {"type": "string"}, "FNumber": {"type": "string"}, "Flash": {"type": "string"}, "FocalLength": {"type": "string"}, "FocalPlaneResolutionUnit": {"type": "string"}, "FocalPlaneXResolution": {"type": "string"}, "FocalPlaneYResolution": {"type": "string"}, "Make": {"type": "string"}, "Model": {"type": "string"}, "Orientation": {"type": "string"}, "ResolutionUnit": {"type": "string"}, "Software": {"type": "string"}, "SubjectDistance": {"type": "string"}, "UserComment": {"type": "string"}, "WhiteBalance": {"type": "string"}, "XResolution": {"type": "string"}, "YResolution": {"type": "string"}}, "required": ["ColorSpace", "CustomRendered", "DateTimeOriginal", "DigitalZoomRatio", "ExifIFDPointer", "ExifImageHeight", "ExifImageWidth", "ExifVersion", "ExposureBias", "ExposureProgram", "ExposureTime", "FNumber", "Flash", "FocalLength", "FocalPlaneResolutionUnit", "FocalPlaneXResolution", "FocalPlaneYResolution", "Make", "Model", "Orientation", "ResolutionUnit", "Software", "SubjectDistance", "UserComment", "WhiteBalance", "XResolution", "YResolution"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"repair_end": {"type": "string"}, "repair_begin": {"type": "string"}, "patches": {"type": "array", "items": {}}}, "required": ["repair_end", "repair_begin", "patches"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"repair_end" : "2019-07-24 19:26:15.594025", "repair_begin" : "2019-07-24 17:26:12.146100", "patches" : []}
json_instruct
{"type": "object", "properties": {"repair_end": {"type": "string"}, "repair_begin": {"type": "string"}, "patches": {"type": "array", "items": {}}}, "required": ["repair_end", "repair_begin", "patches"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"css/auth.css": {"type": "string"}, "js/app.js": {"type": "string"}, "js/ie.js": {"type": "string"}}, "required": ["css/auth.css", "js/app.js", "js/ie.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"css/auth.css" : "css/auth-b2df36d73c.css", "js/app.js" : "js/app-9e4fa0ca12.js", "js/ie.js" : "js/ie-fc49ecd7c7.js"}
json_instruct
{"type": "object", "properties": {"css/auth.css": {"type": "string"}, "js/app.js": {"type": "string"}, "js/ie.js": {"type": "string"}}, "required": ["css/auth.css", "js/app.js", "js/ie.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "in reference to https://github.com/spack/spack/issues/8152\r\n\r\n`2.6.5` is supposed to fix this issue, until then, let's use `2.6.3` by default.", "user" : "davydden", "url" : "https://api.github.com/repos/spack/spack/issues/8154", "updated_at" : "2018-05-17 20:58:35", "created_at" : "2018-05-16 15:27:36", "closed_at" : "2018-05-17 20:58:30", "state" : "closed", "title" : "flex: use 2.6.3. by default", "number" : 8154, "milestone" : null, "labels" : [], "id" : 323672178, "html_url" : "https://github.com/spack/spack/pull/8154", "assignees" : [], "comments" : 7}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "version": {"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": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"LikeThread\\": {"type": "string"}}, "required": ["LikeThread\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"LikeThread\\": {"type": "string"}}, "required": ["LikeThread\\"]}}, "required": ["psr-4"]}, "bin": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "keywords", "license", "version", "type", "authors", "require", "require-dev", "autoload", "autoload-dev", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "paulxu-cn/yield-thread", "description" : "A Java thread-like coroutine scheduler implemented with PHP", "keywords" : ["yield", "coroutine", "thread", "yield thread"], "license" : "MIT", "version" : "0.0.1", "type" : "library", "authors" : [{"name" : "PaulXu-cn", "email" : "dianzikdcdmain@163.com"}], "require" : {"php" : ">=5.5"}, "require-dev" : {"phpunit/phpunit" : "^6.0"}, "autoload" : {"psr-4" : {"LikeThread\\" : "src/"}, "files" : ["src/functions.php"]}, "autoload-dev" : {"psr-4" : {"LikeThread\\" : "tests"}}, "bin" : ["yieldboot"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "version": {"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": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"LikeThread\\": {"type": "string"}}, "required": ["LikeThread\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"LikeThread\\": {"type": "string"}}, "required": ["LikeThread\\"]}}, "required": ["psr-4"]}, "bin": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "keywords", "license", "version", "type", "authors", "require", "require-dev", "autoload", "autoload-dev", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["511621111001", "\u9f99\u6865\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["511621111002", "\u91d1\u9f99\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["511621111201", "\u996d\u6ee9\u6865\u6751\u59d4\u4f1a", "220", "0"], ["511621111202", "\u7f8a\u5b50\u5c71\u6751\u59d4\u4f1a", "220", "0"], ["511621111203", "\u96f7\u6253\u77f3\u6751\u59d4\u4f1a", "220", "0"], ["511621111204", "\u77f3\u9f99\u6865\u6751\u59d4\u4f1a", "220", "0"], ["511621111205", "\u82b1\u5e99\u5b50\u6751\u59d4\u4f1a", "220", "0"], ["511621111206", "\u5012\u7891\u6751\u59d4\u4f1a", "220", "0"], ["511621111207", "\u8001\u9762\u623f\u6751\u59d4\u4f1a", "220", "0"], ["511621111208", "\u7ea2\u571f\u5730\u6751\u59d4\u4f1a", "122", "0"], ["511621111209", "\u70c2\u671d\u95e8\u6751\u59d4\u4f1a", "220", "0"], ["511621111210", "\u61d2\u571f\u5730\u6751\u59d4\u4f1a", "220", "0"], ["511621111211", "\u767d\u4e91\u89c2\u6751\u59d4\u4f1a", "122", "0"], ["511621111212", "\u4e61\u91cc\u7960\u6751\u59d4\u4f1a", "122", "0"], ["511621111213", "\u767d\u9e64\u89c2\u6751\u59d4\u4f1a", "122", "0"], ["511621111214", "\u5c0f\u9ea6\u5c71\u6751\u59d4\u4f1a", "122", "0"], ["511621111215", "\u706f\u8349\u884c\u6751\u59d4\u4f1a", "122", "0"], ["511621111216", "\u6c34\u6d6e\u5c71\u6751\u59d4\u4f1a", "220", "0"], ["511621111217", "\u65b9\u77f3\u575d\u6751\u59d4\u4f1a", "220", "0"], ["511621111218", "\u5927\u68a8\u6811\u6751\u59d4\u4f1a", "220", "0"], ["511621111219", "\u53e4\u575f\u6881\u6751\u59d4\u4f1a", "220", "0"], ["511621111220", "\u6768\u5bb6\u6865\u6751\u59d4\u4f1a", "220", "0"], ["511621111221", "\u86e4\u87c6\u53e3\u6751\u59d4\u4f1a", "220", "0"], ["511621111222", "\u5b98\u6597\u5c71\u6751\u59d4\u4f1a", "220", "0"], ["511621111223", "\u58a8\u6597\u6eaa\u6751\u59d4\u4f1a", "220", "0"], ["511621111224", "\u9a6c\u5e94\u5c71\u6751\u59d4\u4f1a", "220", "0"], ["511621111225", "\u6731\u5bb6\u575d\u6751\u59d4\u4f1a", "220", "0"], ["511621111226", "\u5eb5\u5802\u6c9f\u6751\u59d4\u4f1a", "220", "0"], ["511621111227", "\u5357\u6eaa\u6865\u6751\u59d4\u4f1a", "220", "0"], ["511621111228", "\u8303\u5bb6\u575d\u6751\u59d4\u4f1a", "220", "0"], ["511621111229", "\u53cc\u571f\u5730\u6751\u59d4\u4f1a", "220", "0"], ["511621111230", "\u56de\u9f99\u5e99\u6751\u59d4\u4f1a", "220", "0"], ["511621111231", "\u5b89\u5bb6\u575d\u6751\u59d4\u4f1a", "220", "0"], ["511621111232", "\u66fe\u62f1\u6865\u6751\u59d4\u4f1a", "220", "0"], ["511621111233", "\u859b\u5bb6\u576a\u6751\u59d4\u4f1a", "220", "0"], ["511621111234", "\u5723\u5fb7\u5c71\u6751\u59d4\u4f1a", "220", "0"], ["511621111235", "\u718a\u5bb6\u6c9f\u6751\u59d4\u4f1a", "220", "0"], ["511621111236", "\u51c9\u6c34\u4e95\u6751\u59d4\u4f1a", "220", "0"], ["511621111237", "\u77f3\u677f\u5761\u6751\u59d4\u4f1a", "220", "0"], ["511621111238", "\u56de\u9f99\u5bfa\u6751\u59d4\u4f1a", "220", "0"], ["511621111239", "\u5434\u5bb6\u5761\u6751\u59d4\u4f1a", "220", "0"], ["511621111240", "\u7ea2\u671d\u95e8\u6751\u59d4\u4f1a", "220", "0"], ["511621111241", "\u9ad8\u5ca9\u5934\u6751\u59d4\u4f1a", "220", "0"], ["511621111242", "\u6842\u6797\u6865\u6751\u59d4\u4f1a", "220", "0"], ["511621111243", "\u98ce\u95e8\u5773\u6751\u59d4\u4f1a", "220", "0"], ["511621111244", "\u5b89\u4e50\u5be8\u6751\u59d4\u4f1a", "220", "0"], ["511621111245", "\u5173\u516c\u5e99\u6751\u59d4\u4f1a", "220", "0"], ["511621111246", "\u8d70\u9a6c\u576a\u6751\u59d4\u4f1a", "220", "0"], ["511621111247", "\u957f\u4e94\u95f4\u6751\u59d4\u4f1a", "220", "0"], ["511621111248", "\u732b\u513f\u77f3\u6751\u59d4\u4f1a", "220", "0"], ["511621111249", "\u56db\u65b9\u4e95\u6751\u59d4\u4f1a", "220", "0"], ["511621111250", "\u4e09\u6e05\u6751\u59d4\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x14fb4c93fe461ec3f9f22b61ab7030f258867969", "tool" : "manticore", "start" : 1564907050.5291493, "end" : 1564908852.1714818, "duration" : 1801.6423325538635, "analysis" : [[]]}
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": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 92653, "cartId" : "78c7f27c-4454-4b09-afed-2780f9878925", "preferredProducts" : [3065, 3628, 3496, 1292, 3321], "productReviews" : [{"productId" : 3088, "reviewText" : "heard about this on melodic death metal radio, decided to give it a try.", "reviewDate" : "2019-10-19T08:25:17.8358559+03:00"}, {"productId" : 776, "reviewText" : "My neighbor Forest has one of these. She works as a gardener and she says it looks nude.", "reviewDate" : "2020-03-10T05:11:31.7299766+02:00"}, {"productId" : 1917, "reviewText" : "this time-frame is vertical.", "reviewDate" : "2017-07-30T08:19:57.2810957+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"copy-webpack-plugin": {"type": "string"}, "jquery": {"type": "string"}, "keycode": {"type": "string"}, "roman-numerals": {"type": "string"}}, "required": ["copy-webpack-plugin", "jquery", "keycode", "roman-numerals"]}, "devDependencies": {"type": "object", "properties": {"@symfony/webpack-encore": {"type": "string"}, "node-sass": {"type": "string"}, "sass-loader": {"type": "string"}, "webpack-notifier": {"type": "string"}}, "required": ["@symfony/webpack-encore", "node-sass", "sass-loader", "webpack-notifier"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ckeditor-icclist-plugin", "version" : "0.1.0", "description" : "CKEditor plugin for adding lists in iccxml", "main" : "index.js", "repository" : "git+https://github.com/InternationalCodeCouncil/ckeditor-iccexception-plugin", "author" : "Caxy <dev@caxy.com>", "license" : "MIT", "dependencies" : {"copy-webpack-plugin" : "^4.2.3", "jquery" : "^3.2.1", "keycode" : "^2.1.9", "roman-numerals" : "^0.3.2"}, "devDependencies" : {"@symfony/webpack-encore" : "^0.17.0", "node-sass" : "^4.6.0", "sass-loader" : "^6.0.6", "webpack-notifier" : "^1.5.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"copy-webpack-plugin": {"type": "string"}, "jquery": {"type": "string"}, "keycode": {"type": "string"}, "roman-numerals": {"type": "string"}}, "required": ["copy-webpack-plugin", "jquery", "keycode", "roman-numerals"]}, "devDependencies": {"type": "object", "properties": {"@symfony/webpack-encore": {"type": "string"}, "node-sass": {"type": "string"}, "sass-loader": {"type": "string"}, "webpack-notifier": {"type": "string"}}, "required": ["@symfony/webpack-encore", "node-sass", "sass-loader", "webpack-notifier"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "$schema": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "patternProperties": {"type": "object", "properties": {"^x-oasis-cti-tc-assertion-ext$": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"sep_version": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "valid_from": {"type": "object", "properties": {"$ref": {"type": "string"}, "description": {"type": "string"}}, "required": ["$ref", "description"]}, "valid_until": {"type": "object", "properties": {"$ref": {"type": "string"}, "description": {"type": "string"}}, "required": ["$ref", "description"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "threat_level": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "description": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["sep_version", "valid_from", "valid_until", "source", "threat_level", "description"]}, "anyOf": {"type": "array", "items": {"type": "string"}}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "description", "properties", "anyOf", "required"]}}, "required": ["^x-oasis-cti-tc-assertion-ext$"]}}, "required": ["id", "$schema", "title", "description", "type", "patternProperties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "x-oasis-cti-tc-assertion-ext.json", "$schema" : "http://json-schema.org/draft-04/schema#", "title" : "assertion-ext", "description" : "The Assertion Extension is intended to convey an assertion about the SDO it is included in, which currently is either an Observed Data or an Indicator SDO.", "type" : "object", "patternProperties" : {"^x-oasis-cti-tc-assertion-ext$" : {"type" : "object", "description" : "The Assertion Extension is intended to convey an assertion about the SDO it is included in, which currently is either an Observed Data or an Indicator SDO.", "properties" : {"sep_version" : {"type" : "integer", "description" : "The version of this SEP."}, "valid_from" : {"$ref" : "../../../../cti-stix2-json-schemas/schemas/common/timestamp.json", "description" : "The first time at which this Assertion was considered valid."}, "valid_until" : {"$ref" : "../../../../cti-stix2-json-schemas/schemas/common/timestamp.json", "description" : "The time at which this Assertion should no longer be considered valid."}, "source" : {"type" : "string", "description" : "The source of this assertion."}, "threat_level" : {"type" : "integer", "description" : "Identifies the threat level that the creator is asserting with respect to this data."}, "description" : {"type" : "string", "description" : "A description that provides the recipient with a human-readable description of this threat level."}}, "anyOf" : ["valid_from", "valid_until", "source", "threat_level", "description"], "required" : ["sep_version"]}}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "$schema": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "patternProperties": {"type": "object", "properties": {"^x-oasis-cti-tc-assertion-ext$": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"sep_version": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "valid_from": {"type": "object", "properties": {"$ref": {"type": "string"}, "description": {"type": "string"}}, "required": ["$ref", "description"]}, "valid_until": {"type": "object", "properties": {"$ref": {"type": "string"}, "description": {"type": "string"}}, "required": ["$ref", "description"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "threat_level": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "description": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["sep_version", "valid_from", "valid_until", "source", "threat_level", "description"]}, "anyOf": {"type": "array", "items": {"type": "string"}}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["type", "description", "properties", "anyOf", "required"]}}, "required": ["^x-oasis-cti-tc-assertion-ext$"]}}, "required": ["id", "$schema", "title", "description", "type", "patternProperties"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"n_dim" : 3, "n_trials" : 130, "objective" : "markowitz_analytic_on_cube", "white" : "platypus_omopso", "black" : "platypus_genetic", "traceback" : ["passing", "passing"], "best_val" : [0.14682582201890257, 0.12215841769791813], "best_x" : [[0.408767706119311, 0.34807131624298837, 0.26557228123779786], [0.33906651407858235, 0.2475255412031101, 0.4016666058464736]], "feval_count" : [100, 100], "n_trials_instructed" : [91, 100], "passing" : [true, true], "completed" : true, "points" : 0.0, "winner" : "platypus_genetic_cube", "loser" : "platypus_omopso_cube"}
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"jquery.awesome-cursor.js": {"type": "string"}, "jquery.awesome-cursor.min.js": {"type": "string"}}, "required": ["jquery.awesome-cursor.js", "jquery.awesome-cursor.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jquery.awesome-cursor.js" : "sha512-X06EYjlkky/RqoGpkwHEH9i6d9Zs6i6V2PhI33bvWL5CGFor/T/N0MM5kTgWVLddeaVguL8j7n2O9Y/lW9diow==", "jquery.awesome-cursor.min.js" : "sha512-io/7WcrAPNTjhzLbB7ewEqktGPYxuf0jmoGt5usrq3H+KPsXlsFxkaDjoly5MgIKMqF8c2b7Wg3SvtGq2wQWhQ=="}
json_instruct
{"type": "object", "properties": {"jquery.awesome-cursor.js": {"type": "string"}, "jquery.awesome-cursor.min.js": {"type": "string"}}, "required": ["jquery.awesome-cursor.js", "jquery.awesome-cursor.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d1773-4", "text" : "2\nNATIONAL ASSOCIATION OF EDUCATIONAL BROADCASTERS\nREGION V CONVENTION\nPROGRAM\nJune 14\n(Morning session) 9 A.M.\nPresiding Mr* John C* Schwarzmlder, Director,\nRegion V\nManager, KUHT, University of Houston\nWeloome ... * * Mr. Henry H* Mamet, Station Manager, KR1A-TV\nAddress .. Dr* Kenneth E* Oberholtzer, Superintendent,\nDenver Public Schools\nStatement of Agenda Items* Mr* John C* Schwarzwalder\nDiscussion of Agenda\nLuncheon 12:00 Denver Athletic Club, 1325 Glenarm PI*\nSpeaker ..Mr. Frank Schooley, President, NAEB\n\u2019\u2019Educational Broadcasters\u201d\n(Afternoon Session) 2 P.M, \u2014 Open discussion by all delegates of NAEB\nproblems including proposed redistricting of Region V\n(No Evening Session)\n7:45 P.M. Informal tour of KRMA-TV, Channel 6, 12th at YiTelton Streets\n8:15 P.M. Television program, KRMA-TV, \u2019\u2019The Role of Educational\nBroadcasting\u201d\nJune 15\n(Morning session) 9 A.M* \u2014 Brief business session (All NAEB Delegates)\n9:30-12:00 \u2014 \u2019\u2019Televised Education\u201d\nPresiding \u2022\u2022\u2022.. Mr* Robert Schenkkan, Director, Radio House,\nUniversity of Texas\nSpeaker \u2022.**..... Mr* George Arras, Operations Manager, KETC-TV.\nSt. Louis\nOpen Discussion\nLuncheon 12:00 \u2014 Denver Athletic Club\nSpeaker .....Mr. Ralph Steetle, Executive Director, Joint\nCounoil on Educational Television.\n\u2019\u2019The National ETV Picture\"\n(Afternoon Session) 2 P.M. \u2014 \u2019\u2019Educational Radio\u201d\nPresiding \u2022.....\u2022\u2022\u2022..\u2022\u2022\u2022 Miss Marguerite Fleming, Manager KSLH,\nSt. Louis Board of Education\nAdjournment 5 P.M<"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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" : "1407011003", "district_id" : "1407011", "name" : "SULIGI"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"message" : "type guard field DeityUnion.Supernatural.name expects type \"String?\" but Deity.name is type \"Int?\"."}, {"message" : "type guard field DeityUnion.Supernatural.power expects type \"[String]\" but Deity.power is type \"[String]?\"."}, {"message" : "type guard field HeroUnion.Character.name expected but \"Hero\" does not provide it."}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"message": {"type": "string"}}, "required": ["message"]}, "$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"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "title" : "Ain Shellaly", "id" : "746708", "bbox" : [35.412735, 29.572969, 35.412735, 29.572969], "description" : "An ancient place, cited: BAtlas 76 G2 Ain Shellaly", "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [35.412735, 29.572969]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [35.412735, 29.572969]}, "id" : "darmc-location-23515", "type" : "Feature", "properties" : {"description" : "Point location", "location_precision" : "precise", "title" : "DARMC location 23515", "link" : "http://pleiades.stoa.org/places/746708/darmc-location-23515"}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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" : [[[152.75, 22.75], [152.75, 22.833333333333332], [152.875, 22.833333333333332], [152.875, 22.75], [152.75, 22.75]]]}, "properties" : {"code" : 345216, "url" : "http://madefor.github.io/0410/api/v1/345216.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/345216.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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : " Learn How to Multiply a Monomial by a Polynomial with a Fraction Coefficient\n\n[imath]\\frac{1}{2} x^{3}\\left(4 x^{2}-5 x+2\\right)[/imath]\n\n\n", "url" : "https://www.youtube.com/watch?v=8rCSalT4wqQ"}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}, "build": {"type": "string"}, "precommit": {"type": "string"}}, "required": ["lint", "test", "build", "precommit"]}, "lint-staged": {"type": "object", "properties": {"*.{html,js,json,css}": {"type": "array", "items": {"type": "string"}}}, "required": ["*.{html,js,json,css}"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-google": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-html": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "husky": {"type": "string"}, "jsdoc": {"type": "string"}, "jsdoc-to-markdown": {"type": "string"}, "lint-staged": {"type": "string"}, "polymer-cli": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["eslint", "eslint-config-google", "eslint-config-prettier", "eslint-plugin-html", "eslint-plugin-prettier", "husky", "jsdoc", "jsdoc-to-markdown", "lint-staged", "polymer-cli", "prettier"]}}, "required": ["name", "description", "main", "scripts", "lint-staged", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "polymer-vis", "description" : "Global namespace with some utilities functions for PolymerVis.", "main" : "polymer-vis.html", "scripts" : {"lint" : "npx eslint *.js", "test" : "echo \"Error: no test specified\" && exit 1", "build" : "npx jsdoc2md --template README.hbs --files polymer-vis.js > README.md", "precommit" : "lint-staged"}, "lint-staged" : {"*.{html,js,json,css}" : ["prettier --write", "git add"]}, "keywords" : ["polymer", "polymervis", "visualization", "web-components"], "author" : "eterna2 <eterna2@hotmail.com>", "license" : "MIT", "devDependencies" : {"eslint" : "^4.6.1", "eslint-config-google" : "^0.7.0", "eslint-config-prettier" : "^2.5.0", "eslint-plugin-html" : "^3.2.2", "eslint-plugin-prettier" : "^2.3.1", "husky" : "^0.14.3", "jsdoc" : "^3.5.5", "jsdoc-to-markdown" : "^3.0.0", "lint-staged" : "^4.2.1", "polymer-cli" : "^1.5.4", "prettier" : "^1.7.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}, "build": {"type": "string"}, "precommit": {"type": "string"}}, "required": ["lint", "test", "build", "precommit"]}, "lint-staged": {"type": "object", "properties": {"*.{html,js,json,css}": {"type": "array", "items": {"type": "string"}}}, "required": ["*.{html,js,json,css}"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-google": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-html": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "husky": {"type": "string"}, "jsdoc": {"type": "string"}, "jsdoc-to-markdown": {"type": "string"}, "lint-staged": {"type": "string"}, "polymer-cli": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["eslint", "eslint-config-google", "eslint-config-prettier", "eslint-plugin-html", "eslint-plugin-prettier", "husky", "jsdoc", "jsdoc-to-markdown", "lint-staged", "polymer-cli", "prettier"]}}, "required": ["name", "description", "main", "scripts", "lint-staged", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"cSpell.ignoreWords": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.ignoreWords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cSpell.ignoreWords" : ["cache", "data", "name"]}
json_instruct
{"type": "object", "properties": {"cSpell.ignoreWords": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.ignoreWords"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"}}, "required": ["Id", "ThreadId", "Html", "PostedDate", "UserRole", "MarkedAsAnswerDate"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"Id" : "169063", "ThreadId" : "50440", "Html" : "<p>Hi there,</p>\r\n<p>Is it possible to call a sheet by its name rather than its index?</p>\r\n<p>So normally I would use</p>\r\n<p>$objPHPExcel-&gt;setActiveSheetIndex(0);</p>\r\n<p>but what I want to do is to call the sheet by name eg</p>\r\n<p>$objPHPExcel-&gt;setActiveSheetIndex('sheetname');</p>\r\n<p>but this does not work... any ideas?</p>\r\n<p>thanksandy</p>\r\n", "PostedDate" : "2009-03-17T09:12:29.283-07:00", "UserRole" : null, "MarkedAsAnswerDate" : null}, {"Id" : "169072", "ThreadId" : "50440", "Html" : "This should do the trick for now:<br>\r\n<br>\r\n<code>$objPHPExcel-&gt;setActiveSheetIndex($objPHPExcel-&gt;getIndex($objPHPExcel-&gt;getSheetByName('sheetname')));<br>\r\n</code>\r\n<br>\r\n", "PostedDate" : "2009-03-17T09:27:27.683-07:00", "UserRole" : null, "MarkedAsAnswerDate" : null}, {"Id" : "169078", "ThreadId" : "50440", "Html" : "lol,<br>\r\n<br>\r\ngenious, gald i asked as I would never have figured that out<br>\r\n<br>\r\nthanks<br>\r\n", "PostedDate" : "2009-03-17T09:36:00.543-07:00", "UserRole" : null, "MarkedAsAnswerDate" : null}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"}}, "required": ["Id", "ThreadId", "Html", "PostedDate", "UserRole", "MarkedAsAnswerDate"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "connectsWith", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "title" : "Oescus (river)", "id" : "216908", "bbox" : [23.5370147, 42.5159742, 23.5370147, 42.5159742], "description" : "The Oescus river (modern Iskar) is a river of Bulgaria and tributary of the Danube.", "connectsWith" : ["226577"], "names" : ["Oescus"], "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [23.5370147, 42.5159742]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [23.5370147, 42.5159742]}, "id" : "location-of-iskar-river", "type" : "Feature", "properties" : {"description" : "The Iskar river is a tributary of the Danube. Location based on OpenStreetMap.", "location_precision" : "precise", "title" : "location of Iskar river", "link" : "http://pleiades.stoa.org/places/216908/location-of-iskar-river"}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "connectsWith", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"hosted-zone:account=321723152483:domainName=marioscalas.me:region=eu-west-1": {"type": "object", "properties": {"Id": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Id", "Name"]}, "availability-zones:account=321723152483:region=eu-west-1": {"type": "array", "items": {"type": "string"}}}, "required": ["hosted-zone:account=321723152483:domainName=marioscalas.me:region=eu-west-1", "availability-zones:account=321723152483:region=eu-west-1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hosted-zone:account=321723152483:domainName=marioscalas.me:region=eu-west-1" : {"Id" : "/hostedzone/Z2E4D5JNN2QFD6", "Name" : "marioscalas.me."}, "availability-zones:account=321723152483:region=eu-west-1" : ["eu-west-1a", "eu-west-1b", "eu-west-1c"]}
json_instruct
{"type": "object", "properties": {"hosted-zone:account=321723152483:domainName=marioscalas.me:region=eu-west-1": {"type": "object", "properties": {"Id": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Id", "Name"]}, "availability-zones:account=321723152483:region=eu-west-1": {"type": "array", "items": {"type": "string"}}}, "required": ["hosted-zone:account=321723152483:domainName=marioscalas.me:region=eu-west-1", "availability-zones:account=321723152483:region=eu-west-1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"scripts" : {"start" : "nodemon chapter1/helloWord.js --config nodemon.json"}}
json_instruct
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "rankine:block/polished_shonkinite_vertical_slab_straight"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"TotalAmount": {"type": "string"}, "LineItem": {"type": "array", "items": {"type": "object", "properties": {"ItemDescription": {"type": "string"}, "ItemUnitCount": {"type": "string"}, "ItemUnitValue": {"type": "string"}, "ItemTotal": {"type": "string"}}, "required": ["ItemDescription", "ItemUnitCount", "ItemUnitValue", "ItemTotal"]}}, "InvoiceNumber": {"type": "string"}, "IssuedDate": {"type": "string"}}, "required": ["TotalAmount", "LineItem", "InvoiceNumber", "IssuedDate"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"TotalAmount" : "1,084.17", "LineItem" : [{"ItemDescription" : "NATIONAL", "ItemUnitCount" : "17.23", "ItemUnitValue" : "63.00", "ItemTotal" : "922.67"}, {"ItemDescription" : "1 COLOR", "ItemTotal" : "161.50", "ItemUnitCount" : "", "ItemUnitValue" : ""}], "InvoiceNumber" : "", "IssuedDate" : ""}
json_instruct
{"type": "object", "properties": {"TotalAmount": {"type": "string"}, "LineItem": {"type": "array", "items": {"type": "object", "properties": {"ItemDescription": {"type": "string"}, "ItemUnitCount": {"type": "string"}, "ItemUnitValue": {"type": "string"}, "ItemTotal": {"type": "string"}}, "required": ["ItemDescription", "ItemUnitCount", "ItemUnitValue", "ItemTotal"]}}, "InvoiceNumber": {"type": "string"}, "IssuedDate": {"type": "string"}}, "required": ["TotalAmount", "LineItem", "InvoiceNumber", "IssuedDate"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies 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" : "CEMILE", "frequency" : 0, "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#"}
Following the schema specification below, generate a valid JSON instance: {"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/prasad/Desktop/test projects/amazon-clone/src/Checkout.js\";\nimport React from 'react';\nimport { useStateValue } from \"./StateProvider\";\nimport checkoutad from \"./assets/checkout-ad.jpg\";\nexport default function Checkout() {\n const [{\n basket\n }, _] = useStateValue();\n return /*#__PURE__*/React.createElement(\"div\", {\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 8,\n columnNumber: 9\n }\n }, /*#__PURE__*/React.createElement(\"img\", {\n className: \"checkout-ad\",\n src: checkoutad,\n alt: \"ad\",\n __self: this,\n __source: {\n fileName: _jsxFileName,\n lineNumber: 9,\n columnNumber: 13\n }\n }));\n}", "map" : {"version" : 3, "sources" : ["/Users/prasad/Desktop/test projects/amazon-clone/src/Checkout.js"], "names" : ["React", "useStateValue", "checkoutad", "Checkout", "basket", "_"], "mappings" : ";AAAA,OAAOA,KAAP,MAAkB,OAAlB;AACA,SAASC,aAAT,QAA8B,iBAA9B;AACA,OAAOC,UAAP,MAAuB,0BAAvB;AAEA,eAAe,SAASC,QAAT,GAAoB;AAC/B,QAAM,CAAC;AAAEC,IAAAA;AAAF,GAAD,EAAaC,CAAb,IAAkBJ,aAAa,EAArC;AACA,sBACI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBACI;AAAK,IAAA,SAAS,EAAC,aAAf;AAA6B,IAAA,GAAG,EAAEC,UAAlC;AAA8C,IAAA,GAAG,EAAC,IAAlD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IADJ,CADJ;AAKH", "sourcesContent" : ["import React from 'react'\nimport { useStateValue } from \"./StateProvider\";\nimport checkoutad from \"./assets/checkout-ad.jpg\";\n\nexport default function Checkout() {\n const [{ basket }, _] = useStateValue();\n return (\n <div>\n <img className=\"checkout-ad\" src={checkoutad} alt=\"ad\"></img>\n </div>\n )\n}"]}, "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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "e2etest": {"type": "string"}}, "required": ["start", "test", "e2etest"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}}, "required": ["body-parser", "cors", "express"]}, "devDependencies": {"type": "object", "properties": {"newman": {"type": "string"}}, "required": ["newman"]}}, "required": ["name", "version", "description", "main", "engines", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "superheroes", "version" : "1.0.0", "description" : "", "main" : "heroes.js", "engines" : {"node" : "10.x"}, "scripts" : {"start" : "node app/heroes.js $PORT", "test" : "node_modules/.bin/newman --env-var 'url=http://localhost:3000' run app/test/superheroes.postman_collection.json", "e2etest" : "node_modules/.bin/newman --env-var 'url=https://covid19superheroes.herokuapp.com' run app/test/superheroes.postman_collection.json"}, "keywords" : [], "author" : "alejandro sanchez giraldo", "license" : "MIT", "dependencies" : {"body-parser" : "^1.18.3", "cors" : "^2.8.5", "express" : "^4.16.4"}, "devDependencies" : {"newman" : "^4.6.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "e2etest": {"type": "string"}}, "required": ["start", "test", "e2etest"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}}, "required": ["body-parser", "cors", "express"]}, "devDependencies": {"type": "object", "properties": {"newman": {"type": "string"}}, "required": ["newman"]}}, "required": ["name", "version", "description", "main", "engines", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index" : 6088, "hash" : 3116563244, "artDyeHash" : 3116563244, "redacted" : false, "dyeManifestHash" : 2701757740, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "campus": {"type": "string"}, "term": {"type": "string"}, "breadths": {"type": "array", "items": {}}, "meeting_sections": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "instructors": {"type": "array", "items": {"type": "string"}}, "times": {"type": "array", "items": {"type": "object", "properties": {"day": {"type": "string"}, "start": {"type": "integer"}, "end": {"type": "integer"}, "duration": {"type": "integer"}, "location": {"type": "string"}}, "required": ["day", "start", "end", "duration", "location"]}}, "size": {"type": "integer"}, "enrolment": {"type": "integer"}}, "required": ["code", "instructors", "times", "size", "enrolment"]}}}, "required": ["id", "code", "name", "description", "division", "department", "prerequisites", "exclusions", "level", "campus", "term", "breadths", "meeting_sections"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "ERS203H5S20201", "code" : "ERS203H5S", "name" : "Rock Forming Processes", "description" : "Deep beneath volcanoes lie magmatic systems where magma is formed and evolves. These systems are directly related to plate tectonics and the structure and chemistry of the Earth. This course will study these systems ? how they are formed, and why they evolve, as well as what they lead to; volcanic eruptions. This course will use rock specimens, thin sections and geochemistry to study igneous and volcanic rocks, the metamorphic rocks that are associated with magmatic systems, and the economic geology of ore bodies of igneous origin. [24L, 36P]", "division" : "University of Toronto Mississauga", "department" : "Chemical and Physical Sciences", "prerequisites" : "ERS201H5", "exclusions" : "ESS222H1", "level" : 200, "campus" : "UTM", "term" : "2020 Winter", "breadths" : [], "meeting_sections" : [{"code" : "L0101", "instructors" : ["P Ashwell"], "times" : [{"day" : "MONDAY", "start" : 39600, "end" : 43200, "duration" : 3600, "location" : "IB 380"}, {"day" : "WEDNESDAY", "start" : 39600, "end" : 43200, "duration" : 3600, "location" : "IB 380"}], "size" : 50, "enrolment" : 41}, {"code" : "P0101", "instructors" : [], "times" : [{"day" : "MONDAY", "start" : 50400, "end" : 61200, "duration" : 10800, "location" : "DV 2060"}], "size" : 25, "enrolment" : 25}, {"code" : "P0102", "instructors" : [], "times" : [{"day" : "WEDNESDAY", "start" : 54000, "end" : 64800, "duration" : 10800, "location" : "DV 2060"}], "size" : 25, "enrolment" : 12}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "campus": {"type": "string"}, "term": {"type": "string"}, "breadths": {"type": "array", "items": {}}, "meeting_sections": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "instructors": {"type": "array", "items": {"type": "string"}}, "times": {"type": "array", "items": {"type": "object", "properties": {"day": {"type": "string"}, "start": {"type": "integer"}, "end": {"type": "integer"}, "duration": {"type": "integer"}, "location": {"type": "string"}}, "required": ["day", "start", "end", "duration", "location"]}}, "size": {"type": "integer"}, "enrolment": {"type": "integer"}}, "required": ["code", "instructors", "times", "size", "enrolment"]}}}, "required": ["id", "code", "name", "description", "division", "department", "prerequisites", "exclusions", "level", "campus", "term", "breadths", "meeting_sections"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"locationData" : {"relativeBoundingBox" : {"xmin" : 0.8937163, "width" : 0.07040554, "ymin" : 0.6019823, "height" : 0.088006854}, "relativeKeypoints" : [{"y" : 0.6139993, "x" : 0.90974706}, {"y" : 0.67269397, "x" : 0.9414908}, {"y" : 0.6749977, "x" : 0.93832475}, {"y" : 0.6720973, "x" : 0.93368524}, {"y" : 0.6664483, "x" : 0.9284434}, {"y" : 0.61666834, "x" : 0.9170564}, {"y" : 0.6419755, "x" : 0.9322864}], "format" : "RELATIVE_BOUNDING_BOX"}, "score" : [0.98555213], "label" : ["Palm"]}
json_instruct
{"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "express-graphql": {"type": "string"}, "graphql": {"type": "string"}, "serverless-http": {"type": "string"}}, "required": ["body-parser", "express", "express-graphql", "graphql", "serverless-http"]}, "devDependencies": {"type": "object", "properties": {"netlify-lambda": {"type": "string"}}, "required": ["netlify-lambda"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "express-graphql-serverless", "version" : "1.0.0", "description" : "", "main" : "functions/api.js", "scripts" : {"dev" : "netlify-lambda serve src", "build" : "netlify-lambda build src"}, "keywords" : [], "author" : "ThunderMiracle", "license" : "MIT", "dependencies" : {"body-parser" : "^1.19.0", "express" : "^4.17.1", "express-graphql" : "^0.11.0", "graphql" : "^15.3.0", "serverless-http" : "^2.5.0"}, "devDependencies" : {"netlify-lambda" : "^2.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "express-graphql": {"type": "string"}, "graphql": {"type": "string"}, "serverless-http": {"type": "string"}}, "required": ["body-parser", "express", "express-graphql", "graphql", "serverless-http"]}, "devDependencies": {"type": "object", "properties": {"netlify-lambda": {"type": "string"}}, "required": ["netlify-lambda"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"n_dim" : 21, "n_trials" : 340, "objective" : "markowitz_realized_on_cube", "white" : "platypus_epsmoea", "black" : "optuna_random", "traceback" : ["passing", "passing"], "best_val" : [2.974259511879459, 6.253776590822765], "best_x" : [[0.35635662294461123, 0.005225134703744749, 0.1351488514481869, 0.130473385424546, 0.18931585653750171, 0.3231613041082545, 0.1066092901363791, 0.08435586698278368, 0.0811564734597275, 0.13199150227341827, 0.23137393407768558, 0.1736962419154336, 0.08497827783802331, 0.3613256162143054, 0.026537828397811936, 0.157609757348165, 0.5996957688801758, 0.07337046217209137, 0.15522900577036203, 0.15256812061315217, 0.6224044126516888], [0.4330416344477658, 0.7814403360943748, 0.08344863305411576, 0.19427657233795392, 0.19792155694245028, 0.28034959186798947, 0.036633928412120986, 0.30242382338254037, 0.5951631041996699, 0.4684698103749242, 0.14464772628770206, 0.06072814321399833, 0.20645972822982472, 0.7596237442636636, 0.045173992649641836, 0.5901495377782765, 0.6961976116192282, 0.6606478007620568, 0.5940456915989081, 0.2910908734103588, 0.041694319474641084]], "feval_count" : [340, 340], "n_trials_instructed" : [340, 340], "passing" : [true, true], "completed" : true, "points" : 1.0, "winner" : "platypus_epsmoea", "loser" : "optuna_random"}
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "feval_count": {"type": "array", "items": {"type": "integer"}}, "n_trials_instructed": {"type": "array", "items": {"type": "integer"}}, "passing": {"type": "array", "items": {"type": "boolean"}}, "completed": {"type": "boolean"}, "points": {"type": "number"}, "winner": {"type": "string"}, "loser": {"type": "string"}}, "required": ["n_dim", "n_trials", "objective", "white", "black", "traceback", "best_val", "best_x", "feval_count", "n_trials_instructed", "passing", "completed", "points", "winner", "loser"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 404424005, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "a0ec31594ab0644c3a82b6fc0a71f3cd", "wof:id" : 404424005, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [4.49212513868067, 48.00617718531993, 4.59368931754117, 48.0888259530246], "geometry" : {"coordinates" : [[[4.55471959773913, 48.01227579490388], [4.55032906737515, 48.00617718531993], [4.53577423692018, 48.0065660946497], [4.53057909174306, 48.00687681494225], [4.51832491946526, 48.01781843232683], [4.50865573773088, 48.02029195647106], [4.49567753750104, 48.02106965498162], [4.49212513868067, 48.02355390761531], [4.49272510386276, 48.04055730503218], [4.50264742968747, 48.05205068946368], [4.51154407161471, 48.05427694494652], [4.52331062061933, 48.06523186793238], [4.52788805841728, 48.0814632468411], [4.54251348570522, 48.08186670772351], [4.55195872861092, 48.0888259530246], [4.56619259049852, 48.08726957892503], [4.57107067841291, 48.0873306481348], [4.58072594139339, 48.08002818416024], [4.59368931754117, 48.06627176765688], [4.57925971641281, 48.0570065369526], [4.58008445771718, 48.05360225156594], [4.55218016885562, 48.0446397750235], [4.5473695211923, 48.03848368372066], [4.55093969644324, 48.01466587743873], [4.55471959773913, 48.01227579490388]]], "type" : "Polygon"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"root": {"type": "boolean"}, "extends": {"type": "string"}}, "required": ["root", "extends"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"root" : true, "extends" : "@sealsystems/eslint-config-es"}
json_instruct
{"type": "object", "properties": {"root": {"type": "boolean"}, "extends": {"type": "string"}}, "required": ["root", "extends"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "build": {"type": "object", "properties": {"dockerfile": {"type": "string"}, "args": {"type": "object", "properties": {"VARIANT": {"type": "string"}, "INSTALL_MAVEN": {"type": "string"}, "INSTALL_GRADLE": {"type": "string"}, "NODE_VERSION": {"type": "string"}}, "required": ["VARIANT", "INSTALL_MAVEN", "INSTALL_GRADLE", "NODE_VERSION"]}}, "required": ["dockerfile", "args"]}, "settings": {"type": "object", "properties": {"java.home": {"type": "string"}}, "required": ["java.home"]}, "extensions": {"type": "array", "items": {"type": "string"}}, "remoteUser": {"type": "string"}, "features": {"type": "object", "properties": {"git": {"type": "string"}}, "required": ["git"]}}, "required": ["name", "build", "settings", "extensions", "remoteUser", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Advent of Code 2021", "build" : {"dockerfile" : "Dockerfile", "args" : {"VARIANT" : "17", "INSTALL_MAVEN" : "true", "INSTALL_GRADLE" : "false", "NODE_VERSION" : "none"}}, "settings" : {"java.home" : "/docker-java-home"}, "extensions" : ["vscjava.vscode-java-pack", "streetsidesoftware.code-spell-checker", "mhutchie.git-graph", "redhat.vscode-xml"], "remoteUser" : "vscode", "features" : {"git" : "os-provided"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "build": {"type": "object", "properties": {"dockerfile": {"type": "string"}, "args": {"type": "object", "properties": {"VARIANT": {"type": "string"}, "INSTALL_MAVEN": {"type": "string"}, "INSTALL_GRADLE": {"type": "string"}, "NODE_VERSION": {"type": "string"}}, "required": ["VARIANT", "INSTALL_MAVEN", "INSTALL_GRADLE", "NODE_VERSION"]}}, "required": ["dockerfile", "args"]}, "settings": {"type": "object", "properties": {"java.home": {"type": "string"}}, "required": ["java.home"]}, "extensions": {"type": "array", "items": {"type": "string"}}, "remoteUser": {"type": "string"}, "features": {"type": "object", "properties": {"git": {"type": "string"}}, "required": ["git"]}}, "required": ["name", "build", "settings", "extensions", "remoteUser", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "property": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "property"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Future Drive", "number" : "12508268", "is_illegal" : false, "text" : "Target 1 \"Utopic Future\" Xyz Monster you control; apply the following effect(s) to that monster you control for the rest of this turn.\n\u25cf It can attack all monsters your opponent controls once each.\n\u25cf If it battles an opponent's monster, that monster's effects are negated during the Damage Step only.\n\u25cf Each time it destroys an opponent's monster by battle, inflict damage to your opponent equal to the destroyed monster's original ATK.\nYou can only activate 1 \"Future Drive\" per turn.", "type" : "Spell", "is_monster" : false, "is_spell" : true, "is_trap" : false, "property" : "Quick-Play"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "property": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "property"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"1989": {"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "countRefugee": {"type": "string"}}, "required": ["country", "countRefugee"]}}, "1990": {"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "countRefugee": {"type": "string"}}, "required": ["country", "countRefugee"]}}, "1991": {"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "countRefugee": {"type": "string"}}, "required": ["country", "countRefugee"]}}, "1992": {"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "countRefugee": {"type": "string"}}, "required": ["country", "countRefugee"]}}, "1993": {"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "countRefugee": {"type": "string"}}, "required": ["country", "countRefugee"]}}, "1994": {"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "countRefugee": {"type": "string"}}, "required": ["country", "countRefugee"]}}}, "required": ["1989", "1990", "1991", "1992", "1993", "1994"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"1989" : [{"country" : "Suriname", "countRefugee" : "6601"}], "1990" : [{"country" : "Suriname", "countRefugee" : "6601"}], "1991" : [{"country" : "Suriname", "countRefugee" : "5902"}], "1992" : [{"country" : "Suriname", "countRefugee" : "1667"}], "1993" : [{"country" : "Suriname", "countRefugee" : "11"}], "1994" : [{"country" : "Suriname", "countRefugee" : "11"}]}
json_instruct
{"type": "object", "properties": {"1989": {"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "countRefugee": {"type": "string"}}, "required": ["country", "countRefugee"]}}, "1990": {"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "countRefugee": {"type": "string"}}, "required": ["country", "countRefugee"]}}, "1991": {"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "countRefugee": {"type": "string"}}, "required": ["country", "countRefugee"]}}, "1992": {"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "countRefugee": {"type": "string"}}, "required": ["country", "countRefugee"]}}, "1993": {"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "countRefugee": {"type": "string"}}, "required": ["country", "countRefugee"]}}, "1994": {"type": "array", "items": {"type": "object", "properties": {"country": {"type": "string"}, "countRefugee": {"type": "string"}}, "required": ["country", "countRefugee"]}}}, "required": ["1989", "1990", "1991", "1992", "1993", "1994"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "typings", "scripts", "keywords", "author", "homepage", "bugs", "repository", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "react-native-anchor-parser", "version" : "0.0.2", "description" : "You can convert Acchor tag with simple clickable title", "main" : "index.js", "typings" : "index.d.ts", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["react-native", "react-native-anchor-parser", "react-native-anchor", "anchor-link", "anchor link", "anchor tag", "anchor parser", "react native anchor link", "react native anchor tag", "react native anchor parser", "react native anchor link parser", "link", "anchor", "hyperlink"], "author" : "Anju <anjubaladev@gmail.com>", "homepage" : "https://github.com/anjubala-dev/react-native-anchor-parser.git#readme", "bugs" : {"url" : "https://github.com/anjubala-dev/react-native-anchor-parser.git/issues"}, "repository" : {"type" : "git", "url" : "https://github.com/anjubala-dev/react-native-anchor-parser.git"}, "license" : "ISC"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "typings", "scripts", "keywords", "author", "homepage", "bugs", "repository", "license"], "$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" : "plasmatic", "definition" : "1. Forming; shaping; molding. [Obs.] Dr. H. More. 2. (Biol.) Of or pertaining to plasma; having the character of plasma; containing, or conveying, plasma."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}, "config": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"rustc" : 14140201583299346137, "features" : "[]", "target" : 12736166166696524604, "profile" : 4339006351771724982, "path" : 773007104366097121, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "release/.fingerprint/untrusted-9579e994c86423b2/dep-lib-untrusted"}}], "rustflags" : [], "metadata" : 3355246253459849707, "config" : 0}
json_instruct
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}, "config": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata", "config"], "$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"}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["build", "prepublishOnly"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {}}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/express", "typescript"]}, "dependencies": {"type": "object", "properties": {"@kangojs/http-status-codes": {"type": "string"}}, "required": ["@kangojs/http-status-codes"]}}, "required": ["name", "version", "description", "author", "homepage", "bugs", "license", "main", "scripts", "files", "keywords", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@kangojs/error-handler", "version" : "0.2.4", "description" : "An error handler for Express.", "author" : "Ben-Ryder <dev@benryder.me> (https://www.benryder.me)", "homepage" : "https://github.com/kangojs/kangojs/tree/main/packages/error-handler", "bugs" : "https://github.com/kangojs/kangojs/issues", "license" : "MIT", "main" : "build/index.js", "scripts" : {"build" : "rm -rf ./build && tsc", "prepublishOnly" : "npm run build"}, "files" : ["build/**/*"], "keywords" : [], "devDependencies" : {"@types/express" : "^4.17.13", "typescript" : "^4.5.2"}, "dependencies" : {"@kangojs/http-status-codes" : "^1.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["build", "prepublishOnly"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {}}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/express", "typescript"]}, "dependencies": {"type": "object", "properties": {"@kangojs/http-status-codes": {"type": "string"}}, "required": ["@kangojs/http-status-codes"]}}, "required": ["name", "version", "description", "author", "homepage", "bugs", "license", "main", "scripts", "files", "keywords", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "key": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "key", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "data/TT", "key" : "TT", "name" : "TRINIDAD AND TOBAGO"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "key": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "key", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}, "maxLength": {"type": "integer"}}, "required": ["title", "description", "type", "enum", "maxLength"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Sample Collection Equipment", "description" : "", "type" : "string", "enum" : ["Bucket", "DH-81", "DH-95", "Diffusion Gradient in Thin Film", "Kemmerer Bottle", "Nansen Bottle", "Niskin Bottle", "Osterberg Piston Sampler", "pH Paper", "Polar Orga. Chem. Integrative Sampler", "Probe/Sensor", "Pump/Air Lift", "Pump/Bailer", "Pump/Centrifugal", "Pump/Jet", "Pump/Non-Submersible", "Pump/Piston", "Pump/Rotary", "Pump/Submersible", "Pump/Turbine", "Secchi Disk", "Sediment sub-core", "Sediment Trap", "Semipermeable Membrane Device", "Syringe", "Turbidimeter", "Turbidity Tube", "Van Dorn Bottle", "Variable voltage pulsator unit", "Vinyl Tube", "Water Bottle", "Water Sampler (Other)", "WBH-96", "Whirl-pak bag", "Wide mouth glass jar"], "maxLength" : 40}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}, "maxLength": {"type": "integer"}}, "required": ["title", "description", "type", "enum", "maxLength"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-cli": {"type": "string"}, "gulp-imagemin": {"type": "string"}, "gulp-include": {"type": "string"}, "gulp-plumber": {"type": "string"}, "gulp-pug": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-uglify": {"type": "string"}, "imagemin-pngquant": {"type": "string"}}, "required": ["browser-sync", "gulp", "gulp-cli", "gulp-imagemin", "gulp-include", "gulp-plumber", "gulp-pug", "gulp-rename", "gulp-sass", "gulp-uglify", "imagemin-pngquant"]}}, "required": ["name", "version", "description", "author", "license", "main", "scripts", "keywords", "bugs", "repository", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "unicorn", "version" : "1.0.3", "description" : "A Gulp & Pug Starter Kit", "author" : "Tyler King", "license" : "MIT", "main" : "index.html", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "gulp"}, "keywords" : ["bourbon", "neat", "gulp", "sass", "js", "images"], "bugs" : {"url" : "https://github.com/doitliketyler/Unicorn/issues"}, "repository" : {"type" : "git", "url" : "https://github.com/doitliketyler/Unicorn"}, "devDependencies" : {"browser-sync" : "^2.0.0", "gulp" : "^3.8.8", "gulp-cli" : "^2.0.1", "gulp-imagemin" : "^4.1.0", "gulp-include" : "^2.3.1", "gulp-plumber" : "^1.2.0", "gulp-pug" : "^3.0.3", "gulp-rename" : "^1.2.0", "gulp-sass" : "^3.1.0", "gulp-uglify" : "^3.0.0", "imagemin-pngquant" : "^5.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-cli": {"type": "string"}, "gulp-imagemin": {"type": "string"}, "gulp-include": {"type": "string"}, "gulp-plumber": {"type": "string"}, "gulp-pug": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-uglify": {"type": "string"}, "imagemin-pngquant": {"type": "string"}}, "required": ["browser-sync", "gulp", "gulp-cli", "gulp-imagemin", "gulp-include", "gulp-plumber", "gulp-pug", "gulp-rename", "gulp-sass", "gulp-uglify", "imagemin-pngquant"]}}, "required": ["name", "version", "description", "author", "license", "main", "scripts", "keywords", "bugs", "repository", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"env": {"type": "object", "properties": {"Server": {"type": "string"}, "Account": {"type": "string"}, "Version": {"type": "string"}, "RETRIES": {"type": "integer"}, "iflag": {"type": "string"}}, "required": ["Server", "Account", "Version", "RETRIES", "iflag"]}, "reporter": {"type": "string"}, "reporterOptions": {"type": "object", "properties": {"reporterEnabled": {"type": "string"}, "mochawesomeReporterOptions": {"type": "object", "properties": {"reportDir": {"type": "string"}, "quite": {"type": "boolean"}, "overwrite": {"type": "boolean"}, "html": {"type": "boolean"}, "json": {"type": "boolean"}}, "required": ["reportDir", "quite", "overwrite", "html", "json"]}}, "required": ["reporterEnabled", "mochawesomeReporterOptions"]}, "trashAssetsBeforeRuns": {"type": "boolean"}, "video": {"type": "boolean"}, "requestTimeout": {"type": "integer"}, "responseTimeout": {"type": "integer"}, "defaultCommandTimeout": {"type": "integer"}, "chromeWebSecurity": {"type": "boolean"}, "supportFile": {"type": "string"}, "screenshotsFolder": {"type": "string"}, "numTestsKeptInMemory": {"type": "integer"}, "pageLoadTimeout": {"type": "integer"}}, "required": ["env", "reporter", "reporterOptions", "trashAssetsBeforeRuns", "video", "requestTimeout", "responseTimeout", "defaultCommandTimeout", "chromeWebSecurity", "supportFile", "screenshotsFolder", "numTestsKeptInMemory", "pageLoadTimeout"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"env" : {"Server" : "QA", "Account" : "VK8", "Version" : "v2", "RETRIES" : 1, "iflag" : "yes"}, "reporter" : "cypress-multi-reporters", "reporterOptions" : {"reporterEnabled" : "mochawesome", "mochawesomeReporterOptions" : {"reportDir" : "cypress/reports/mocha", "quite" : true, "overwrite" : false, "html" : true, "json" : true}}, "trashAssetsBeforeRuns" : true, "video" : false, "requestTimeout" : 500000, "responseTimeout" : 500000, "defaultCommandTimeout" : 100000, "chromeWebSecurity" : false, "supportFile" : "cypress/support/index.js", "screenshotsFolder" : "cypress/reports/mochareports/assets", "numTestsKeptInMemory" : 15, "pageLoadTimeout" : 60000}
json_instruct
{"type": "object", "properties": {"env": {"type": "object", "properties": {"Server": {"type": "string"}, "Account": {"type": "string"}, "Version": {"type": "string"}, "RETRIES": {"type": "integer"}, "iflag": {"type": "string"}}, "required": ["Server", "Account", "Version", "RETRIES", "iflag"]}, "reporter": {"type": "string"}, "reporterOptions": {"type": "object", "properties": {"reporterEnabled": {"type": "string"}, "mochawesomeReporterOptions": {"type": "object", "properties": {"reportDir": {"type": "string"}, "quite": {"type": "boolean"}, "overwrite": {"type": "boolean"}, "html": {"type": "boolean"}, "json": {"type": "boolean"}}, "required": ["reportDir", "quite", "overwrite", "html", "json"]}}, "required": ["reporterEnabled", "mochawesomeReporterOptions"]}, "trashAssetsBeforeRuns": {"type": "boolean"}, "video": {"type": "boolean"}, "requestTimeout": {"type": "integer"}, "responseTimeout": {"type": "integer"}, "defaultCommandTimeout": {"type": "integer"}, "chromeWebSecurity": {"type": "boolean"}, "supportFile": {"type": "string"}, "screenshotsFolder": {"type": "string"}, "numTestsKeptInMemory": {"type": "integer"}, "pageLoadTimeout": {"type": "integer"}}, "required": ["env", "reporter", "reporterOptions", "trashAssetsBeforeRuns", "video", "requestTimeout", "responseTimeout", "defaultCommandTimeout", "chromeWebSecurity", "supportFile", "screenshotsFolder", "numTestsKeptInMemory", "pageLoadTimeout"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "library": {"type": "string"}, "hooks": {"type": "array", "items": {"type": "object", "properties": {"hook": {"type": "string"}, "method": {"type": "string"}}, "required": ["hook", "method"]}}, "staticDirs": {"type": "object", "properties": {"static": {"type": "string"}}, "required": ["static"]}, "less": {"type": "array", "items": {}}, "scripts": {"type": "array", "items": {"type": "string"}}, "templates": {"type": "string"}, "languages": {"type": "string"}, "acpScripts": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "name", "description", "url", "library", "hooks", "staticDirs", "less", "scripts", "templates", "languages", "acpScripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "nodebb-plugin-custom-persona-templates", "name" : "Custom Persona Templates", "description" : "Adds custom templates to the persona theme", "url" : "https://github.com/btw6391/nodebb-plugin-custom-persona-templates", "library" : "./library.js", "hooks" : [{"hook" : "filter:teasers.get", "method" : "getTeasers"}, {"hook" : "filter:widgets.getAreas", "method" : "defineWidgetAreas"}, {"hook" : "filter:config.get", "method" : "getThemeConfig"}, {"hook" : "static:app.load", "method" : "init"}, {"hook" : "filter:admin.header.build", "method" : "addAdminNavigation"}, {"hook" : "filter:topic.build", "method" : "addUserToTopic"}], "staticDirs" : {"static" : "./static"}, "less" : [], "scripts" : ["lib/persona.js", "lib/modules/nprogress.js", "lib/modules/autohidingnavbar.min.js", "lib/modules/slideout.min.js", "lib/modules/quickreply.js", "lib/client/chats.js"], "templates" : "static/templates", "languages" : "public/language", "acpScripts" : ["lib/admin.js"]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "library": {"type": "string"}, "hooks": {"type": "array", "items": {"type": "object", "properties": {"hook": {"type": "string"}, "method": {"type": "string"}}, "required": ["hook", "method"]}}, "staticDirs": {"type": "object", "properties": {"static": {"type": "string"}}, "required": ["static"]}, "less": {"type": "array", "items": {}}, "scripts": {"type": "array", "items": {"type": "string"}}, "templates": {"type": "string"}, "languages": {"type": "string"}, "acpScripts": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "name", "description", "url", "library", "hooks", "staticDirs", "less", "scripts", "templates", "languages", "acpScripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "210281208200", "text" : "\u5b59\u5bb6\u6751\u59d4\u4f1a"}, {"id" : "210281208201", "text" : "\u5a18\u5a18\u5bab\u6751\u59d4\u4f1a"}, {"id" : "210281208203", "text" : "\u4e09\u53f0\u6751\u59d4\u4f1a"}, {"id" : "210281208204", "text" : "\u897f\u84dd\u65d7\u6751\u59d4\u4f1a"}, {"id" : "210281208206", "text" : "\u7ea2\u65d7\u6751\u59d4\u4f1a"}, {"id" : "210281208209", "text" : "\u6d77\u5c9b\u6751\u59d4\u4f1a"}, {"id" : "210281208211", "text" : "\u9752\u5c71\u6751\u59d4\u4f1a"}, {"id" : "210281208212", "text" : "\u4e1c\u84dd\u65d7\u6751\u59d4\u4f1a"}, {"id" : "210281208213", "text" : "\u5939\u6cb3\u5fc3\u6751\u59d4\u4f1a"}, {"id" : "210281208215", "text" : "\u77f3\u78ca\u6751\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}}, "required": ["name", "version", "lockfileVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "mocha-mocha", "version" : "0.0.0", "lockfileVersion" : 1}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}}, "required": ["name", "version", "lockfileVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}, "test": {"type": "string"}}, "required": ["lib", "test"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["chai", "mocha", "typescript"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "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", "types", "directories", "devDependencies", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "yandere", "version" : "1.0.0", "description" : "Javascript/Typescript library that provides browser- and Observable-friendly error wrappers, inspired by verror.", "main" : "dist/index.js", "types" : "dist/index.d.ts", "directories" : {"lib" : "lib", "test" : "test"}, "devDependencies" : {"chai" : "^4.1.2", "mocha" : "^5.2.0", "typescript" : "^3.0.1"}, "scripts" : {"build" : "tsc", "test" : "mocha --reporter spec"}, "repository" : {"type" : "git", "url" : "git+https://github.com/AlexHankins/yandere.git"}, "keywords" : ["Why", "yonder", "yanderror", "yonderror", "YError", "verror"], "author" : "Alex Hankins", "license" : "ISC", "bugs" : {"url" : "https://github.com/AlexHankins/yandere/issues"}, "homepage" : "https://github.com/AlexHankins/yandere#readme"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}, "test": {"type": "string"}}, "required": ["lib", "test"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "mocha": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["chai", "mocha", "typescript"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "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", "types", "directories", "devDependencies", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "icao": {"type": "string"}, "usaf": {"type": "string"}}, "required": ["wmo", "icao", "usaf"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "47935", "name" : {"en" : "Hamby U. S. Army Airfield"}, "country" : "JP", "region" : "ON", "identifiers" : {"wmo" : "47935", "icao" : "ROHF", "usaf" : "479350"}, "location" : {"latitude" : 26.3, "longitude" : 127.7667, "elevation" : 5}, "timezone" : "Asia/Tokyo"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "icao": {"type": "string"}, "usaf": {"type": "string"}}, "required": ["wmo", "icao", "usaf"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"province" : "\u65b0\u7586\u7ef4\u543e\u5c14\u81ea\u6cbb\u533a", "city" : "\u4e4c\u9c81\u6728\u9f50\u5e02", "area" : "\u5929\u5c71\u533a", "name" : "\u4e4c\u9c81\u6728\u9f50\u5e02\u5409\u987a\u8def\u90ae\u653f\u652f\u5c40", "code" : "830002", "address" : "\u65b0\u7586\u7ef4\u543e\u5c14\u81ea\u6cbb\u533a\u4e4c\u9c81\u6728\u9f50\u5e02\u5929\u5c71\u533a\u5409\u987a\u8def502\u53f7", "phone" : "18997917651"}, {"province" : "\u65b0\u7586\u7ef4\u543e\u5c14\u81ea\u6cbb\u533a", "city" : "\u4e4c\u9c81\u6728\u9f50\u5e02", "area" : "\u5929\u5c71\u533a", "name" : "\u4e4c\u9c81\u6728\u9f50\u5e02\u660e\u534e\u8857\u90ae\u653f\u652f\u5c40", "code" : "830002", "address" : "\u65b0\u7586\u7ef4\u543e\u5c14\u81ea\u6cbb\u533a\u4e4c\u9c81\u6728\u9f50\u5e02\u5929\u5c71\u533a\u660e\u534e\u8857235\u53f7", "phone" : "0991-8551252"}, {"province" : "\u65b0\u7586\u7ef4\u543e\u5c14\u81ea\u6cbb\u533a", "city" : "\u4e4c\u9c81\u6728\u9f50\u5e02", "area" : "\u5929\u5c71\u533a", "name" : "\u5149\u660e\u8def\u90ae\u653f\u652f\u5c40", "code" : "830002", "address" : "\u4e4c\u9c81\u6728\u9f50\u5e02\u5149\u660e\u8def191\u53f7", "phone" : "0991-8858115"}, {"province" : "\u65b0\u7586\u7ef4\u543e\u5c14\u81ea\u6cbb\u533a", "city" : "\u4e4c\u9c81\u6728\u9f50\u5e02", "area" : "\u5929\u5c71\u533a", "name" : "\u6c11\u4e3b\u8def\u90ae\u653f\u652f\u5c40", "code" : "830002", "address" : "\u4e4c\u9c81\u6728\u9f50\u5e02\u6c11\u4e3b\u8def81\u53f7", "phone" : "0991-2846938"}, {"province" : "\u65b0\u7586\u7ef4\u543e\u5c14\u81ea\u6cbb\u533a", "city" : "\u4e4c\u9c81\u6728\u9f50\u5e02", "area" : "\u5929\u5c71\u533a", "name" : "\u89e3\u653e\u5317\u8def\u90ae\u653f\u652f\u5c40", "code" : "830002", "address" : "\u4e4c\u9c81\u6728\u9f50\u5e02\u89e3\u653e\u5317\u8def251\u53f7", "phone" : "0991-2823084"}, {"province" : "\u65b0\u7586\u7ef4\u543e\u5c14\u81ea\u6cbb\u533a", "city" : "\u4e4c\u9c81\u6728\u9f50\u5e02", "area" : "\u5929\u5c71\u533a", "name" : "\u5efa\u56fd\u8def\u90ae\u653f\u652f\u5c40", "code" : "830002", "address" : "\u4e4c\u9c81\u6728\u9f50\u5e02\u5efa\u56fd\u8def9\u53f7", "phone" : "0991-2623592"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"name": {"type": "string"}, "inputPaths": {"type": "array", "items": {"type": "string"}}, "outputDir": {"type": "string"}, "args": {"type": "object", "properties": {"isLazy": {"type": "boolean"}, "operations": {"type": "array", "items": {"type": "object", "properties": {"outputPath": {"type": "string"}, "args": {"type": "object", "properties": {"height": {"type": "integer"}, "width": {"type": "integer"}, "cropFocus": {"type": "integer"}, "toFormat": {"type": "string"}, "fit": {"type": "string"}}, "required": ["height", "width", "cropFocus", "toFormat", "fit"]}}, "required": ["outputPath", "args"]}}, "pluginOptions": {"type": "object", "properties": {"base64Width": {"type": "integer"}, "forceBase64Format": {"type": "string"}, "useMozJpeg": {"type": "boolean"}, "stripMetadata": {"type": "boolean"}, "lazyImageGeneration": {"type": "boolean"}, "defaultQuality": {"type": "integer"}, "failOnError": {"type": "boolean"}, "plugins": {"type": "array", "items": {}}}, "required": ["base64Width", "forceBase64Format", "useMozJpeg", "stripMetadata", "lazyImageGeneration", "defaultQuality", "failOnError", "plugins"]}}, "required": ["isLazy", "operations", "pluginOptions"]}}, "required": ["name", "inputPaths", "outputDir", "args"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"expireTime" : 9007200895887129000, "key" : "8e7946ab7215a5d765df52cc2a9c4fff", "val" : {"name" : "IMAGE_PROCESSING", "inputPaths" : ["/home/shub/Desktop/Shubham-portfolio/content/featured/AuthApp/authh.png"], "outputDir" : "/home/shub/Desktop/Shubham-portfolio/public/static/32843e7703688d0c585ff5b497e6a42b", "args" : {"isLazy" : false, "operations" : [{"outputPath" : "bda0e/authh.avif", "args" : {"height" : 140, "width" : 175, "cropFocus" : 17, "toFormat" : "avif", "fit" : "cover"}}, {"outputPath" : "57cc3/authh.avif", "args" : {"height" : 280, "width" : 350, "cropFocus" : 17, "toFormat" : "avif", "fit" : "cover"}}, {"outputPath" : "ce9fa/authh.avif", "args" : {"height" : 1120, "width" : 1400, "cropFocus" : 17, "toFormat" : "avif", "fit" : "cover"}}], "pluginOptions" : {"base64Width" : 20, "forceBase64Format" : "", "useMozJpeg" : false, "stripMetadata" : true, "lazyImageGeneration" : true, "defaultQuality" : 50, "failOnError" : true, "plugins" : []}}}}
json_instruct
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"name": {"type": "string"}, "inputPaths": {"type": "array", "items": {"type": "string"}}, "outputDir": {"type": "string"}, "args": {"type": "object", "properties": {"isLazy": {"type": "boolean"}, "operations": {"type": "array", "items": {"type": "object", "properties": {"outputPath": {"type": "string"}, "args": {"type": "object", "properties": {"height": {"type": "integer"}, "width": {"type": "integer"}, "cropFocus": {"type": "integer"}, "toFormat": {"type": "string"}, "fit": {"type": "string"}}, "required": ["height", "width", "cropFocus", "toFormat", "fit"]}}, "required": ["outputPath", "args"]}}, "pluginOptions": {"type": "object", "properties": {"base64Width": {"type": "integer"}, "forceBase64Format": {"type": "string"}, "useMozJpeg": {"type": "boolean"}, "stripMetadata": {"type": "boolean"}, "lazyImageGeneration": {"type": "boolean"}, "defaultQuality": {"type": "integer"}, "failOnError": {"type": "boolean"}, "plugins": {"type": "array", "items": {}}}, "required": ["base64Width", "forceBase64Format", "useMozJpeg", "stripMetadata", "lazyImageGeneration", "defaultQuality", "failOnError", "plugins"]}}, "required": ["isLazy", "operations", "pluginOptions"]}}, "required": ["name", "inputPaths", "outputDir", "args"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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" : [[[129.0, 42.083333333333336], [129.0, 42.166666666666664], [129.125, 42.166666666666664], [129.125, 42.083333333333336], [129.0, 42.083333333333336]]]}, "properties" : {"code" : 632910, "url" : "http://madefor.github.io/0410/api/v1/632910.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/632910.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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "POSSIBLY INQUISITIVE AND OBSERVING MEN MAY, BY STRENGTH OF JUDGMENT, PENETRATE FARTHER, AND ON PROBABILITIES TAKEN FROM WARY OBSERVATION,", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/14956.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}}, "required": ["name", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bookshelf", "main" : "bookshelf.d.ts"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}}, "required": ["name", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "digital_cleanup", "version" : "", "description" : "Ukrainian website for digital cleaning", "keywords" : ["Digital Cleanup", "Digital Cleaning", "digital cleaning", "digital cleanup", "\u0426\u0438\u0444\u0440\u043e\u0432\u0435 \u043f\u0440\u0438\u0431\u0438\u0440\u0430\u043d\u043d\u044f", "\u0446\u0438\u0444\u0440\u043e\u0432\u0435 \u043f\u0440\u0438\u0431\u0438\u0440\u0430\u043d\u043d\u044f"], "author" : "Kozlov Ivan <ikozlov15.ik@gmail.com>"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"date": {"type": "integer"}, "states": {"type": "integer"}, "positive": {"type": "integer"}, "negative": {"type": "integer"}, "pending": {"type": "integer"}, "hospitalizedCurrently": {"type": "integer"}, "hospitalizedCumulative": {"type": "integer"}, "inIcuCurrently": {"type": "integer"}, "inIcuCumulative": {"type": "integer"}, "onVentilatorCurrently": {"type": "integer"}, "onVentilatorCumulative": {"type": "integer"}, "dateChecked": {"type": "string"}, "death": {"type": "integer"}, "hospitalized": {"type": "integer"}, "totalTestResults": {"type": "integer"}, "lastModified": {"type": "string"}, "recovered": {"type": "null"}, "total": {"type": "integer"}, "posNeg": {"type": "integer"}, "deathIncrease": {"type": "integer"}, "hospitalizedIncrease": {"type": "integer"}, "negativeIncrease": {"type": "integer"}, "positiveIncrease": {"type": "integer"}, "totalTestResultsIncrease": {"type": "integer"}, "hash": {"type": "string"}}, "required": ["date", "states", "positive", "negative", "pending", "hospitalizedCurrently", "hospitalizedCumulative", "inIcuCurrently", "inIcuCumulative", "onVentilatorCurrently", "onVentilatorCumulative", "dateChecked", "death", "hospitalized", "totalTestResults", "lastModified", "recovered", "total", "posNeg", "deathIncrease", "hospitalizedIncrease", "negativeIncrease", "positiveIncrease", "totalTestResultsIncrease", "hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"date" : 20200714, "states" : 56, "positive" : 3402862, "negative" : 15548344, "pending" : 960, "hospitalizedCurrently" : 55677, "hospitalizedCumulative" : 173609, "inIcuCurrently" : 9342, "inIcuCumulative" : 11857, "onVentilatorCurrently" : 2263, "onVentilatorCumulative" : 1154, "dateChecked" : "2020-07-14T24:00:00Z", "death" : 128720, "hospitalized" : 173609, "totalTestResults" : 45737905, "lastModified" : "2020-07-14T24:00:00Z", "recovered" : null, "total" : 0, "posNeg" : 0, "deathIncrease" : 742, "hospitalizedIncrease" : 2322, "negativeIncrease" : 259522, "positiveIncrease" : 58618, "totalTestResultsIncrease" : 835275, "hash" : "62baa5228b801286d5b26abe8e0b19d782a982e2"}
json_instruct
{"type": "object", "properties": {"date": {"type": "integer"}, "states": {"type": "integer"}, "positive": {"type": "integer"}, "negative": {"type": "integer"}, "pending": {"type": "integer"}, "hospitalizedCurrently": {"type": "integer"}, "hospitalizedCumulative": {"type": "integer"}, "inIcuCurrently": {"type": "integer"}, "inIcuCumulative": {"type": "integer"}, "onVentilatorCurrently": {"type": "integer"}, "onVentilatorCumulative": {"type": "integer"}, "dateChecked": {"type": "string"}, "death": {"type": "integer"}, "hospitalized": {"type": "integer"}, "totalTestResults": {"type": "integer"}, "lastModified": {"type": "string"}, "recovered": {"type": "null"}, "total": {"type": "integer"}, "posNeg": {"type": "integer"}, "deathIncrease": {"type": "integer"}, "hospitalizedIncrease": {"type": "integer"}, "negativeIncrease": {"type": "integer"}, "positiveIncrease": {"type": "integer"}, "totalTestResultsIncrease": {"type": "integer"}, "hash": {"type": "string"}}, "required": ["date", "states", "positive", "negative", "pending", "hospitalizedCurrently", "hospitalizedCumulative", "inIcuCurrently", "inIcuCumulative", "onVentilatorCurrently", "onVentilatorCumulative", "dateChecked", "death", "hospitalized", "totalTestResults", "lastModified", "recovered", "total", "posNeg", "deathIncrease", "hospitalizedIncrease", "negativeIncrease", "positiveIncrease", "totalTestResultsIncrease", "hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "group": {"type": "integer"}}, "required": ["name", "group"]}}, "links": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "integer"}, "target": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["source", "target", "value"]}}}, "required": ["nodes", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nodes" : [{"name" : "1", "group" : 1}, {"name" : "2", "group" : 2}, {"name" : "3", "group" : 3}, {"name" : "4", "group" : 4}, {"name" : "5", "group" : 5}], "links" : [{"source" : 0, "target" : 1, "value" : 2}, {"source" : 1, "target" : 2, "value" : 3}, {"source" : 2, "target" : 3, "value" : 2}, {"source" : 0, "target" : 2, "value" : 5}, {"source" : 0, "target" : 3, "value" : 4}, {"source" : 1, "target" : 4, "value" : 7}]}
json_instruct
{"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "group": {"type": "integer"}}, "required": ["name", "group"]}}, "links": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "integer"}, "target": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["source", "target", "value"]}}}, "required": ["nodes", "links"], "$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" : "Umangan, Aliaga, Nueva Ecija, Central Luzon (Region III), PH", "locale" : "ph.central-luzon-region-iii.nueva-ecija.aliaga.umangan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "6", "region_reference" : "3", "region_name" : "Central Luzon (Region III)", "province_id" : "55", "province_reference" : "55", "province_name" : "Nueva Ecija", "city_id" : "34", "city_reference" : "1119", "city_name" : "Aliaga", "barangay_id" : "726", "barangay_reference" : "29316", "barangay_name" : "Umangan"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[120.940292, 15.53485], [120.938751, 15.5342], [120.936836, 15.53302], [120.936317, 15.53244], [120.934952, 15.53159], [120.933456, 15.5301], [120.932991, 15.52858], [120.93261, 15.5273], [120.931351, 15.52555], [120.929527, 15.52433], [120.927742, 15.52376], [120.926788, 15.52372], [120.92556, 15.52266], [120.925133, 15.52133], [120.925507, 15.5205], [120.925659, 15.51903], [120.925369, 15.51816], [120.92511, 15.51697], [120.925133, 15.51529], [120.9245, 15.51321], [120.923828, 15.5115], [120.922798, 15.51022], [120.921707, 15.50949], [120.921448, 15.50891], [120.920937, 15.5079], [120.920158, 15.50721], [120.91951, 15.50673], [120.917831, 15.50504], [120.916611, 15.504], [120.915611, 15.50289], [120.914978, 15.50135], [120.910004, 15.50527], [120.902107, 15.51061], [120.896156, 15.51859], [120.913567, 15.53079], [120.917709, 15.54083], [120.931953, 15.53648], [120.940292, 15.53485]]]]}}
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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "1207080001", "district_id" : "1207080", "name" : "SIBARGOT"}, {"id" : "1207080002", "district_id" : "1207080", "name" : "BANDAR KUMBUL"}, {"id" : "1207080003", "district_id" : "1207080", "name" : "TANJUNG MEDAN"}, {"id" : "1207080004", "district_id" : "1207080", "name" : "JANJI"}, {"id" : "1207080005", "district_id" : "1207080", "name" : "AFDELING I RANTAUPRAPAT"}, {"id" : "1207080006", "district_id" : "1207080", "name" : "AEK BURU SELATAN"}, {"id" : "1207080007", "district_id" : "1207080", "name" : "AFDELING II RANTAUPRAPAT"}, {"id" : "1207080008", "district_id" : "1207080", "name" : "KAMPUNG BARU"}, {"id" : "1207080009", "district_id" : "1207080", "name" : "TEBING LINGGAHARA"}, {"id" : "1207080010", "district_id" : "1207080", "name" : "TEBING LINGGAHARA BARU"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"url": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["url", "sha1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"url" : "https://static.wikia.nocookie.net/griftlands_gamepedia_en/images/b/bc/Mods_Update_poster.png/revision/latest?cb=20200917201312", "sha1" : "6792adc8a11febb581b30568e5f4916ef9b80984"}
json_instruct
{"type": "object", "properties": {"url": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["url", "sha1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"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" : {"name" : "Crisp County", "name_long" : "Crisp County, GA", "fips" : "13081", "state_code_int" : 13, "state_code_postal" : "GA", "state_code_iso" : "US-GA", "county_code" : 81, "population" : 22372, "countrylevel_id" : "fips:13081", "census_data" : {"COUNTYNS" : "00351607", "AFFGEOID" : "0500000US13081", "LSAD" : "06", "ALAND" : 706189044, "AWATER" : 21457002}, "center_lat" : 31.92, "center_lon" : -83.77, "area_m2" : 727646046, "timezone" : "America/New_York"}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-83.961, 32.031], [-83.61, 32.028], [-83.612, 31.854], [-83.613, 31.804], [-83.803, 31.804], [-83.826, 31.81], [-83.845, 31.831], [-83.924, 31.848], [-83.939, 31.848], [-83.927, 31.863], [-83.934, 31.881], [-83.922, 31.91], [-83.919, 31.923], [-83.925, 31.948], [-83.95, 31.997], [-83.95, 32.015], [-83.961, 32.031]]]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"version": {"type": "string"}, "configurations": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "request": {"type": "string"}, "name": {"type": "string"}, "sourceMaps": {"type": "boolean"}}, "required": ["type", "request", "name", "sourceMaps"]}}}, "required": ["version", "configurations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "0.2.0", "configurations" : [{"type" : "electron", "request" : "launch", "name" : "Launch this", "sourceMaps" : true}, {"type" : "electron", "request" : "launch", "name" : "Launch something", "appDir" : "C:/source/hostscan", "sourceMaps" : true}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "configurations": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "request": {"type": "string"}, "name": {"type": "string"}, "sourceMaps": {"type": "boolean"}}, "required": ["type", "request", "name", "sourceMaps"]}}}, "required": ["version", "configurations"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"0-17": {"type": "integer"}, "18-49": {"type": "integer"}, "50-64": {"type": "integer"}, "65+": {"type": "integer"}, "total": {"type": "integer"}}, "required": ["0-17", "18-49", "50-64", "65+", "total"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"0-17" : 0, "18-49" : 222, "50-64" : 556, "65+" : 2929, "total" : 3708}
json_instruct
{"type": "object", "properties": {"0-17": {"type": "integer"}, "18-49": {"type": "integer"}, "50-64": {"type": "integer"}, "65+": {"type": "integer"}, "total": {"type": "integer"}}, "required": ["0-17", "18-49", "50-64", "65+", "total"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "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" : 9151, "citation_title" : "Do Mergers Lead to Monopoly in the Long Run? Results from the Dominant Firm Model", "citation_author" : ["Gautam Gowrisankaran", "Thomas J. Holmes"], "citation_publication_date" : "2002-09-01", "issue_date" : "2002-09-01", "revision_date" : "None", "topics" : ["Public Economics", "Taxation", "Environmental and Resource Economics", "Energy"], "program" : ["Industrial Organization"], "projects" : null, "working_groups" : null, "abstract" : "\n\nWill an industry with no antitrust policy converge to monopoly, competition, or somewhere in between? We analyze this question using a dynamic dominant firm model with rational agents, endogenous mergers, and constant returns to scale production. We find that perfect competition and monopoly are always steady states of this model, and that there may be other steady states with a dominant firm and a fringe co-existing. Mergers are likely only when supply is inelastic or demand is elastic, suggesting that the ability of a dominant firm to raise price, through monopolization is limited. Additionally, as the discount factor increases, it becomes harder to monopolize the industry, because the dominant firm cannot commit to not raising prices in the future.\n\n", "acknowledgement" : "\n"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1501050021", "district_id" : "1501050", "name" : "KOTO BARU HIANG"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["r-svunit"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "BUT THIS BY THE BY.", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/3899.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "metal": {"type": "string"}, "denomination": {"type": "string"}, "date": {"type": "string"}, "weight": {"type": "number"}, "diameter": {"type": "number"}, "thickness": {"type": "null"}, "quality": {"type": "string"}, "edge": {"type": "string"}, "mintage": {"type": "integer"}, "categoryId": {"type": "integer"}, "category": {"type": "string"}, "generalDescription": {"type": "string"}, "averseDescription": {"type": "string"}, "reverseDescription": {"type": "string"}, "averseImgUrl": {"type": "string"}, "reverseImgUrl": {"type": "string"}}, "required": ["id", "name", "metal", "denomination", "date", "weight", "diameter", "thickness", "quality", "edge", "mintage", "categoryId", "category", "generalDescription", "averseDescription", "reverseDescription", "averseImgUrl", "reverseImgUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 376, "name" : "Scorpion", "metal" : "gold (Au 999,9)", "denomination" : "2 hryvnias", "date" : "17 December 2007", "weight" : 1.24, "diameter" : 13.92, "thickness" : null, "quality" : "special uncirculated", "edge" : "smooth", "mintage" : 10000, "categoryId" : 5918, "category" : "Signs of the Zodiac", "generalDescription" : "The coin is dedicated to the Scorpion constellation.", "averseDescription" : "On the coin obverse of the 5 hryvnia coin in the center of the circle there is a conventionalized image of the Sun, on the left, on the right, above and underneath whereof \u2013 four lighted by it spheres symbolizing the seasons. On the left of the circle there is the Small National Emblem of Ukraine, on the right \u2013 the coin issue year: 2007, as well as the indication of the metal, its fineness \u2013 Ag 925, and the coin weight in fineness \u2013 15.55; there are circumferential legends: \u041d\u0410\u0426\u0406\u041e\u041d\u0410\u041b\u042c\u041d\u0418\u0419 \u0411\u0410\u041d\u041a \u0423\u041a\u0420\u0410\u0407\u041d\u0418 (National Bank of Ukraine) above and 5 \u0413\u0420\u0418\u0412\u0415\u041d\u042c (5 hryvnias) below, as well as the logotype of the National Bank of Ukraine Mint.", "reverseDescription" : "On the reverse of the coin of the 2 hryvnia coin a conventionalized image of Pisces with stars around it is depicted, among which \u2013 the Sign of Zodiac symbol.", "averseImgUrl" : "http://www.bank.gov.ua/control/en/currentmoney/image?g=2&s=0&id=376", "reverseImgUrl" : "http://www.bank.gov.ua/control/en/currentmoney/image?g=2&s=1&id=376"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "metal": {"type": "string"}, "denomination": {"type": "string"}, "date": {"type": "string"}, "weight": {"type": "number"}, "diameter": {"type": "number"}, "thickness": {"type": "null"}, "quality": {"type": "string"}, "edge": {"type": "string"}, "mintage": {"type": "integer"}, "categoryId": {"type": "integer"}, "category": {"type": "string"}, "generalDescription": {"type": "string"}, "averseDescription": {"type": "string"}, "reverseDescription": {"type": "string"}, "averseImgUrl": {"type": "string"}, "reverseImgUrl": {"type": "string"}}, "required": ["id", "name", "metal", "denomination", "date", "weight", "diameter", "thickness", "quality", "edge", "mintage", "categoryId", "category", "generalDescription", "averseDescription", "reverseDescription", "averseImgUrl", "reverseImgUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"review_id": {"type": "string"}, "movie_id": {"type": "string"}, "author": {"type": "string"}, "review": {"type": "string"}, "rating": {"type": "string"}, "date": {"type": "string"}}, "required": ["review_id", "movie_id", "author", "review", "rating", "date"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"review_id" : "8681767", "movie_id" : "83432", "author" : "ktsr****", "review" : "\uacfc\uac70\uc640 \ud604\ub300\ub97c \uc624\uac00\ub294 \uc544\ub984\ub2e4\uc6b4 \uc601\uc0c1\uacfc \uc74c\uc545\uc0ac\ub791\uc758 \ube5b\uacfc \uace0\ud1b5", "rating" : "9", "date" : "14.04.29"}, {"review_id" : "8566778", "movie_id" : "83432", "author" : "judy****", "review" : "\uc804\uc138\uacc4 \ucd5c\ub300 \uc601\ud654\uc0ac\uc774\ud2b8 \ub85c\ud2bc\ud1a0\ub9c8\ud1a0\ud3c9\uc810\uc774 \uace0\uc791 100\uc810\ub9cc\uc810\uc5d0 13\uc810\uc744 \uae30\ub85d\ud55c\uc810\uc774\uc774 \uc601\ud654\uac00 \uc4f0\ub808\uae30\ub77c\ub294\uac83\uc744 \uc99d\uba85\ud574\uc8fc\uace0\uc788\uace0\uc774 \uc601\ud654\ub97c \ub9cc\ub4e0 \ub9c8\ub3c8\ub098\ub294 \uac10\ub3c5\uc73c\ub85c\uc368\ud615\ud3b8\uc5c6\ub294\ub144\uc774\ub780\uac83\ub3c4 \uc99d\uba85\ud574\uc92c\ub2e4", "rating" : "1", "date" : "14.03.10"}, {"review_id" : "8545072", "movie_id" : "83432", "author" : "wjda****", "review" : "\uce90\uc2a4\ud305\ub3c4 \uc808\ubb18\ud558\uace0, \uc138\ub828\ub41c \uc5f0\ucd9c\ub3c4 \uc88b\uc558\ub2e4.", "rating" : "10", "date" : "14.02.28"}, {"review_id" : "8156402", "movie_id" : "83432", "author" : "gomg****", "review" : "\uc2dc\uc791\ubd80\ud130 \ub208\uc744 \ub5c4 \uc218 \uc5c6\uc74c !!", "rating" : "9", "date" : "13.11.21"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"review_id": {"type": "string"}, "movie_id": {"type": "string"}, "author": {"type": "string"}, "review": {"type": "string"}, "rating": {"type": "string"}, "date": {"type": "string"}}, "required": ["review_id", "movie_id", "author", "review", "rating", "date"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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-x644-frhj-mfj8", "modified" : "2022-05-01T02:05:38Z", "published" : "2022-05-01T02:05:38Z", "aliases" : ["CVE-2005-2162"], "details" : "PHP remote file inclusion vulnerability in form.inc.php3 in MyGuestbook 0.6.1 allows remote attackers to execute arbitrary PHP code via the lang parameter.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2005-2162"}, {"type" : "WEB", "url" : "http://marc.info/?l=bugtraq&m=112059876828730&w=2"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/15927"}, {"type" : "WEB", "url" : "http://securitytracker.com/id?1014387"}, {"type" : "WEB", "url" : "http://www.soulblack.com.ar/repo/papers/advisory/myguestbook_advisory.txt"}], "database_specific" : {"cwe_ids" : [], "severity" : "MODERATE", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "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": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"windwalker/renderer": {"type": "string"}, "illuminate/view": {"type": "string"}}, "required": ["windwalker/renderer", "illuminate/view"]}, "require-dev": {"type": "object", "properties": {"wp-coding-standards/wpcs": {"type": "string"}, "phpmd/phpmd": {"type": "string"}}, "required": ["wp-coding-standards/wpcs", "phpmd/phpmd"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Classy\\": {"type": "string"}}, "required": ["Classy\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "anrw/wp-scratch-theme", "description" : "Wordpress Theme Boilerplate", "license" : "GNU GPL", "authors" : [{"name" : "Andrew Tolochka", "email" : "atolochka@gmail.com"}], "require" : {"windwalker/renderer" : "2.*", "illuminate/view" : "4.*"}, "require-dev" : {"wp-coding-standards/wpcs" : "dev-master", "phpmd/phpmd" : "@stable"}, "autoload" : {"psr-4" : {"Classy\\" : "app/classes"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"windwalker/renderer": {"type": "string"}, "illuminate/view": {"type": "string"}}, "required": ["windwalker/renderer", "illuminate/view"]}, "require-dev": {"type": "object", "properties": {"wp-coding-standards/wpcs": {"type": "string"}, "phpmd/phpmd": {"type": "string"}}, "required": ["wp-coding-standards/wpcs", "phpmd/phpmd"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Classy\\": {"type": "string"}}, "required": ["Classy\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 67837, "cartId" : "bc3c713b-8191-402c-b45f-21ba0ada2c8c", "preferredProducts" : [2123, 3068, 1969, 3035], "productReviews" : [{"productId" : 3283, "reviewText" : "My dog loves to play with it.", "reviewDate" : "2018-11-23T15:28:56.84231+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#"}