input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xe8031836b241501407f3eb03070eb9329febd9f2", "tool" : "slither", "start" : 1563715149.5211987, "end" : 1563715154.1729796, "duration" : 4.651780843734741, "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": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$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"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "cobweb.finance", "symbol" : "COB", "address" : "0x9FB7FDdeCE718FE590e76c21A884c38e778a2E19", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"godlike.css": {"type": "string"}, "godlike.min.css": {"type": "string"}}, "required": ["godlike.css", "godlike.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"godlike.css" : "sha512-MfqFJvoQ1R83dxaDRVXngPhmzzdpyIGfvvTAlexEokgiCu/kdbZGdFoHOsYnRgcEgDTB7IZwULET02h0DiL2iQ==", "godlike.min.css" : "sha512-hspul3zhRubiIvADAeHO2DVpxyPVj78P0hjZU7ZXhVTpiexIDL/OwSqtedBlm1/3kFOYrD6Q8xIP27PkBVEBHQ=="} | json_instruct | {"type": "object", "properties": {"godlike.css": {"type": "string"}, "godlike.min.css": {"type": "string"}}, "required": ["godlike.css", "godlike.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"jade.js": {"type": "string"}, "jade.min.js": {"type": "string"}}, "required": ["jade.js", "jade.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jade.js" : "sha256-zMzCUqPFxFYiOwkwFHkDuRMUBcVbc6zN1Lf22/Ww3NM=", "jade.min.js" : "sha256-mV2Q6g7mk2IFvALRaDoigFKnkkQ8omNAcG3eMlKfa1w="} | json_instruct | {"type": "object", "properties": {"jade.js": {"type": "string"}, "jade.min.js": {"type": "string"}}, "required": ["jade.js", "jade.min.js"], "$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"}, "ns": {"type": "string"}, "description": {"type": "string"}, "phrases": {"type": "object", "properties": {"active": {"type": "string"}}, "required": ["active"]}, "ports": {"type": "object", "properties": {"input": {"type": "object", "properties": {"url": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "format": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "type", "format", "description"]}}, "required": ["url"]}, "output": {"type": "object", "properties": {"error": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"]}, "res": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"]}, "body": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"]}}, "required": ["error", "res", "body"]}}, "required": ["input", "output"]}, "dependencies": {"type": "object", "properties": {"npm": {"type": "object", "properties": {"request": {"type": "string"}}, "required": ["request"]}}, "required": ["npm"]}}, "required": ["name", "ns", "description", "phrases", "ports", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "request", "ns" : "http", "description" : "http request", "phrases" : {"active" : "Performing HTTP request to {{input.url}}"}, "ports" : {"input" : {"url" : {"title" : "Url Request", "type" : "string", "format" : "url", "description" : "The url to be requested."}}, "output" : {"error" : {"title" : "Error", "type" : "object"}, "res" : {"title" : "Stream", "type" : "Stream"}, "body" : {"title" : "Body", "type" : "string"}}}, "dependencies" : {"npm" : {"request" : "2.9.x"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "ns": {"type": "string"}, "description": {"type": "string"}, "phrases": {"type": "object", "properties": {"active": {"type": "string"}}, "required": ["active"]}, "ports": {"type": "object", "properties": {"input": {"type": "object", "properties": {"url": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "format": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "type", "format", "description"]}}, "required": ["url"]}, "output": {"type": "object", "properties": {"error": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"]}, "res": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"]}, "body": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"]}}, "required": ["error", "res", "body"]}}, "required": ["input", "output"]}, "dependencies": {"type": "object", "properties": {"npm": {"type": "object", "properties": {"request": {"type": "string"}}, "required": ["request"]}}, "required": ["npm"]}}, "required": ["name", "ns", "description", "phrases", "ports", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"period_id": {"type": "integer"}, "rest_mode_state": {"type": "integer"}, "score": {"type": "integer"}, "score_activity_balance": {"type": "integer"}, "score_hrv_balance": {"type": "integer"}, "score_previous_day": {"type": "integer"}, "score_previous_night": {"type": "integer"}, "score_recovery_index": {"type": "integer"}, "score_resting_hr": {"type": "integer"}, "score_sleep_balance": {"type": "integer"}, "score_temperature": {"type": "integer"}, "summary_date": {"type": "string"}}, "required": ["period_id", "rest_mode_state", "score", "score_activity_balance", "score_hrv_balance", "score_previous_day", "score_previous_night", "score_recovery_index", "score_resting_hr", "score_sleep_balance", "score_temperature", "summary_date"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"period_id" : 0, "rest_mode_state" : 0, "score" : 81, "score_activity_balance" : 68, "score_hrv_balance" : 88, "score_previous_day" : 86, "score_previous_night" : 78, "score_recovery_index" : 84, "score_resting_hr" : 74, "score_sleep_balance" : 85, "score_temperature" : 98, "summary_date" : "2021-02-28"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"period_id": {"type": "integer"}, "rest_mode_state": {"type": "integer"}, "score": {"type": "integer"}, "score_activity_balance": {"type": "integer"}, "score_hrv_balance": {"type": "integer"}, "score_previous_day": {"type": "integer"}, "score_previous_night": {"type": "integer"}, "score_recovery_index": {"type": "integer"}, "score_resting_hr": {"type": "integer"}, "score_sleep_balance": {"type": "integer"}, "score_temperature": {"type": "integer"}, "summary_date": {"type": "string"}}, "required": ["period_id", "rest_mode_state", "score", "score_activity_balance", "score_hrv_balance", "score_previous_day", "score_previous_night", "score_recovery_index", "score_resting_hr", "score_sleep_balance", "score_temperature", "summary_date"]}, "$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": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"merged" : "/Users/zhangguozhong1/Desktop/app/EDC5_ePro/node_modules/rn-fetch-blob/android/build/intermediates/res/merged/release/layout-v16/notification_template_custom_big.xml", "source" : "/Users/zhangguozhong1/.gradle/caches/transforms-1/files-1.1/core-1.0.0.aar/c5c6839bedcb73b454d19ef17377432c/res/layout-v16/notification_template_custom_big.xml"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"runBet": {"type": "object", "properties": {"next_buy_price": {"type": "number"}, "grid_sell_price": {"type": "number"}, "step": {"type": "integer"}}, "required": ["next_buy_price", "grid_sell_price", "step"]}, "config": {"type": "object", "properties": {"profit_ratio": {"type": "number"}, "double_throw_ratio": {"type": "number"}, "cointype": {"type": "string"}, "quantity": {"type": "array", "items": {"type": "number"}}}, "required": ["profit_ratio", "double_throw_ratio", "cointype", "quantity"]}}, "required": ["runBet", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"runBet" : {"next_buy_price" : 277.0558, "grid_sell_price" : 288.3642, "step" : 0}, "config" : {"profit_ratio" : 2.0, "double_throw_ratio" : 2.0, "cointype" : "LTCUSDT", "quantity" : [0.042]}} | json_instruct | {"type": "object", "properties": {"runBet": {"type": "object", "properties": {"next_buy_price": {"type": "number"}, "grid_sell_price": {"type": "number"}, "step": {"type": "integer"}}, "required": ["next_buy_price", "grid_sell_price", "step"]}, "config": {"type": "object", "properties": {"profit_ratio": {"type": "number"}, "double_throw_ratio": {"type": "number"}, "cointype": {"type": "string"}, "quantity": {"type": "array", "items": {"type": "number"}}}, "required": ["profit_ratio", "double_throw_ratio", "cointype", "quantity"]}}, "required": ["runBet", "config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "5de7c60a37ceb3257d3aaee5", "_tpl" : "5998517986f7746017232f7e", "parentId" : "5de7c60a37ceb3257d3aaee4", "slotId" : "mod_pistol_grip"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1975, 10], [1976, 6], [1978, 12], [1980, 11], [1981, 5], [1982, 7], [1983, 8], [1984, 10], [1985, 5], [1986, 10], [1987, 9], [1988, 7], [1989, 10], [1990, 14], [1991, 7], [1992, 9], [1993, 6], [1994, 13], [1995, 7], [1996, 9], [1997, 6], [1999, 10], [2000, 13], [2001, 10], [2002, 12], [2003, 9], [2004, 10], [2005, 15], [2006, 7], [2007, 14], [2009, 10], [2010, 9], [2012, 6], [2013, 7], [2014, 6]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"ThinkInText": {"type": "array", "items": {"type": "string"}}}, "required": ["ThinkInText"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ThinkInText" : ["Telepathy", "RadioVoice", "SaidBookism", "PaintingTheMedium", "TranslationConvention", "UnconventionalFormatting", "InnerMonologue", "ShmuckBait", "BoldInflation", "SpeechBubble", "ThoughtBubble", "ThoughtCaption", "RainbowSpeak", "BuffySpeak", "FridgeBrilliance", "ComicBooks", "AltText", "FootnoteFever"]} | json_instruct | {"type": "object", "properties": {"ThinkInText": {"type": "array", "items": {"type": "string"}}}, "required": ["ThinkInText"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"data_files": {"type": "array", "items": {"type": "string"}}, "toth": {"type": "boolean"}, "error_intent": {"type": "string"}}, "required": ["data_files", "toth", "error_intent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data_files" : ["init.py", "main.txt", "main_ext.txt", "base.def"], "toth" : true, "error_intent" : "F~NONE"} | json_instruct | {"type": "object", "properties": {"data_files": {"type": "array", "items": {"type": "string"}}, "toth": {"type": "boolean"}, "error_intent": {"type": "string"}}, "required": ["data_files", "toth", "error_intent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Preset n1": {"type": "object", "properties": {"ValidateNoAnimation": {"type": "boolean"}, "ValidateShapeDefaultNames": {"type": "boolean"}}, "required": ["ValidateNoAnimation", "ValidateShapeDefaultNames"]}, "Preset n2": {"type": "object", "properties": {"ValidateNoAnimation": {"type": "boolean"}}, "required": ["ValidateNoAnimation"]}}, "required": ["Preset n1", "Preset n2"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Preset n1" : {"ValidateNoAnimation" : false, "ValidateShapeDefaultNames" : false}, "Preset n2" : {"ValidateNoAnimation" : false}} | json_instruct | {"type": "object", "properties": {"Preset n1": {"type": "object", "properties": {"ValidateNoAnimation": {"type": "boolean"}, "ValidateShapeDefaultNames": {"type": "boolean"}}, "required": ["ValidateNoAnimation", "ValidateShapeDefaultNames"]}, "Preset n2": {"type": "object", "properties": {"ValidateNoAnimation": {"type": "boolean"}}, "required": ["ValidateNoAnimation"]}}, "required": ["Preset n1", "Preset n2"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"electrolinux/phpquery": {"type": "string"}}, "required": ["electrolinux/phpquery"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Rawbinn\\Crawl\\": {"type": "string"}}, "required": ["Rawbinn\\Crawl\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "license", "authors", "require", "autoload", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "rawbinn/phpquery-example", "description" : "Data crawling using phpQuery", "license" : "MIT", "authors" : [{"name" : "Rawbinn Shrestha", "email" : "[email protected]"}], "require" : {"electrolinux/phpquery" : "^0.9.6"}, "autoload" : {"psr-4" : {"Rawbinn\\Crawl\\" : "src"}}, "minimum-stability" : "dev"} | 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": {"electrolinux/phpquery": {"type": "string"}}, "required": ["electrolinux/phpquery"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Rawbinn\\Crawl\\": {"type": "string"}}, "required": ["Rawbinn\\Crawl\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}}, "required": ["name", "description", "license", "authors", "require", "autoload", "minimum-stability"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"706554f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}}, "required": ["706554f-a"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"706554f-a" : {"width" : 399, "thumb_url" : "http://oldnyc-assets.nypl.org/thumb/706554f-a.jpg", "image_url" : "http://oldnyc-assets.nypl.org/600px/706554f-a.jpg", "title" : "", "date" : "", "text" : "Sackett Street, at the N.W. corner of Hicks Street, showing Sackett Street side of 528 Hicks Street.\nAugust 5, 1934.\nP. L. Sperr.\n", "folder" : "Sackett Street & Hicks Street, Brooklyn, NY", "height" : 600, "original_title" : "Brooklyn: Sackett Street - Hicks Street", "years" : [""]}} | json_instruct | {"type": "object", "properties": {"706554f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}}, "required": ["706554f-a"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["Dep Mandiyu (C)", "0", "0", "Huracan", "Torneo Clausura 1995 - Fecha 1"], ["Huracan", "3", "1", "Dep Mandiyu (C)", "Torneo Apertura 1994 - Fecha 1"], ["Dep Mandiyu (C)", "2", "3", "Huracan", "Torneo Clausura 1994 - Fecha 15"], ["Huracan", "3", "1", "Dep Mandiyu (C)", "Torneo Apertura 1993 - Fecha 15"], ["Huracan", "2", "1", "Dep Mandiyu (C)", "Torneo Clausura 1993 - Fecha 13"], ["Dep Mandiyu (C)", "0", "1", "Huracan", "Torneo Apertura 1992 - Fecha 13"], ["Dep Mandiyu (C)", "0", "0", "Huracan", "Torneo Clausura 1992 - Fecha 8"], ["Huracan", "3", "2", "Dep Mandiyu (C)", "Torneo Apertura 1991 - Fecha 8"], ["Huracan", "0", "2", "Dep Mandiyu (C)", "Torneo Clausura 1991 - Fecha 1"], ["Dep Mandiyu (C)", "2", "2", "Huracan", "Campeonato 1990/91 - Fecha 1"]] | 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": {"setup_script_description": {"type": "string"}, "setupTestPage": {"type": "string"}, "applies_to": {"type": "array", "items": {"type": "string"}}, "mode": {"type": "string"}, "task": {"type": "string"}, "specific_user_instruction": {"type": "string"}, "output_assertions": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["setup_script_description", "setupTestPage", "applies_to", "mode", "task", "specific_user_instruction", "output_assertions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"setup_script_description" : "Move focus to the link just before the meunbar", "setupTestPage" : "focusonfirstlink", "applies_to" : ["jaws", "nvda"], "mode" : "reading", "task" : "navigate to menubar", "specific_user_instruction" : "Navigate to the 'Text Formatting' menubar", "output_assertions" : [["1", "The role 'menubar' is conveyed"], ["1", "The menubar name 'Text Formatting' is conveyed"], ["1", "Number of items in menubar is conveyed"]]} | json_instruct | {"type": "object", "properties": {"setup_script_description": {"type": "string"}, "setupTestPage": {"type": "string"}, "applies_to": {"type": "array", "items": {"type": "string"}}, "mode": {"type": "string"}, "task": {"type": "string"}, "specific_user_instruction": {"type": "string"}, "output_assertions": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["setup_script_description", "setupTestPage", "applies_to", "mode", "task", "specific_user_instruction", "output_assertions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : "INT101", "lang" : "en", "description" : "\nLabor force participation rate (population aged 15 years\nand older)", "name" : "Labour force participation rate", "type" : "variable"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "latest_version": {"type": "string"}, "last_updated": {"type": "string"}, "vulnerabilities": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "published_date": {"type": "null"}, "references": {"type": "object", "properties": {"url": {"type": "array", "items": {"type": "string"}}, "osvdb": {"type": "null"}, "secunia": {"type": "array", "items": {"type": "string"}}, "cve": {"type": "array", "items": {"type": "string"}}, "exploitdb": {"type": "null"}}, "required": ["url", "osvdb", "secunia", "cve", "exploitdb"]}, "vuln_type": {"type": "string"}, "fixed_in": {"type": "null"}, "criticity": {"type": "number"}}, "required": ["id", "title", "created_at", "updated_at", "published_date", "references", "vuln_type", "fixed_in", "criticity"]}}}, "required": ["slug", "name", "latest_version", "last_updated", "vulnerabilities"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"slug" : "wordpress-gallery", "name" : "wordpress-gallery", "latest_version" : "1.4", "last_updated" : "2018-03-27T18:57:07.112Z", "vulnerabilities" : [{"id" : "6727", "title" : "Gallery - \"load\" Remote File Inclusion ", "created_at" : "2014-08-01T10:58:57Z", "updated_at" : "2015-05-15T13:48:03Z", "published_date" : null, "references" : {"url" : ["http://www.securityfocus.com/bid/57650/"], "osvdb" : null, "secunia" : ["51347"], "cve" : ["2012-4919"], "exploitdb" : null}, "vuln_type" : "RFI", "fixed_in" : null, "criticity" : 0.0}]} | json_instruct | {"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "latest_version": {"type": "string"}, "last_updated": {"type": "string"}, "vulnerabilities": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "published_date": {"type": "null"}, "references": {"type": "object", "properties": {"url": {"type": "array", "items": {"type": "string"}}, "osvdb": {"type": "null"}, "secunia": {"type": "array", "items": {"type": "string"}}, "cve": {"type": "array", "items": {"type": "string"}}, "exploitdb": {"type": "null"}}, "required": ["url", "osvdb", "secunia", "cve", "exploitdb"]}, "vuln_type": {"type": "string"}, "fixed_in": {"type": "null"}, "criticity": {"type": "number"}}, "required": ["id", "title", "created_at", "updated_at", "published_date", "references", "vuln_type", "fixed_in", "criticity"]}}}, "required": ["slug", "name", "latest_version", "last_updated", "vulnerabilities"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vendor" : "liberica", "filename" : "bellsoft-jre11.0.9+12-linux-amd64.rpm", "release_type" : "ga", "version" : "11.0.9+12", "java_version" : "11.0.9+12", "jvm_impl" : "hotspot", "os" : "linux", "architecture" : "x86_64", "file_type" : "rpm", "image_type" : "jre", "features" : [], "url" : "https://github.com/bell-sw/Liberica/releases/download/11.0.9+12/bellsoft-jre11.0.9+12-linux-amd64.rpm", "md5" : "735baa4bdd9aa9ab225cfe67a666976b", "md5_file" : "bellsoft-jre11.0.9+12-linux-amd64.rpm.md5", "sha1" : "4ccde872a24d85e895da165b92663dbb04c66180", "sha1_file" : "bellsoft-jre11.0.9+12-linux-amd64.rpm.sha1", "sha256" : "8903ef9383a6650e859966d5a859651ba71688b2130071225e6fe4f16a105a93", "sha256_file" : "bellsoft-jre11.0.9+12-linux-amd64.rpm.sha256", "sha512" : "40ae0be60b16d63e28f37de43a1260640561b76678e7fd615b93326adcd44b60367df7b08e142da668c827a4c52c55bec7fa2fdebbcbde4acfcbfe07b7734363", "sha512_file" : "bellsoft-jre11.0.9+12-linux-amd64.rpm.sha512", "size" : 34906088} | json_instruct | {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Vaudesincourt", "dpt" : "Marne", "inscrits" : 100, "abs" : 19, "votants" : 81, "blancs" : 16, "nuls" : 1, "exp" : 64, "res" : [{"panneau" : "1", "voix" : 38}, {"panneau" : "2", "voix" : 26}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}, "authors": {"type": "object", "properties": {"Tyler Bunnell": {"type": "string"}, "Mat Ryer": {"type": "string"}}, "required": ["Tyler Bunnell", "Mat Ryer"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "dependencies": {"type": "object", "properties": {"JSONModel": {"type": "array", "items": {}}}, "required": ["JSONModel"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}, "osx": {"type": "string"}}, "required": ["ios", "osx"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "public_header_files": {"type": "string"}, "osx": {"type": "object", "properties": {"frameworks": {"type": "string"}}, "required": ["frameworks"]}, "ios": {"type": "object", "properties": {"frameworks": {"type": "string"}}, "required": ["frameworks"]}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "source", "dependencies", "platforms", "source_files", "public_header_files", "osx", "ios", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Stretchr", "version" : "0.2.0", "summary" : "The Cocoa SDK for the Stretchr platform.", "homepage" : "http://stretchr.com", "license" : {"type" : "Custom", "text" : "\tCopyright (c) 2014 Stretchr, Inc\n\n\tPlease consider promoting this project if you find it useful.\n\n\tPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\n\tThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n\tTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"}, "authors" : {"Tyler Bunnell" : "[email protected]", "Mat Ryer" : "[email protected]"}, "source" : {"git" : "https://github.com/stretchr/sdk-cocoa.git", "tag" : "0.2.0"}, "dependencies" : {"JSONModel" : []}, "platforms" : {"ios" : "5.1", "osx" : "10.8"}, "source_files" : ["Stretchr", "ST/**/*.{h,m}"], "public_header_files" : "ST/**/*.h", "osx" : {"frameworks" : "Cocoa"}, "ios" : {"frameworks" : "Foundation"}, "requires_arc" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "text": {"type": "string"}}, "required": ["type", "text"]}, "authors": {"type": "object", "properties": {"Tyler Bunnell": {"type": "string"}, "Mat Ryer": {"type": "string"}}, "required": ["Tyler Bunnell", "Mat Ryer"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "dependencies": {"type": "object", "properties": {"JSONModel": {"type": "array", "items": {}}}, "required": ["JSONModel"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}, "osx": {"type": "string"}}, "required": ["ios", "osx"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "public_header_files": {"type": "string"}, "osx": {"type": "object", "properties": {"frameworks": {"type": "string"}}, "required": ["frameworks"]}, "ios": {"type": "object", "properties": {"frameworks": {"type": "string"}}, "required": ["frameworks"]}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "source", "dependencies", "platforms", "source_files", "public_header_files", "osx", "ios", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ConnectionStrings": {"type": "object", "properties": {"TransactionsImporterDb": {"type": "string"}}, "required": ["TransactionsImporterDb"]}}, "required": ["ConnectionStrings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ConnectionStrings" : {"TransactionsImporterDb" : "Server=db;Database=TransactionsImporterDb;User=SA;Password=Your_password123;"}} | json_instruct | {"type": "object", "properties": {"ConnectionStrings": {"type": "object", "properties": {"TransactionsImporterDb": {"type": "string"}}, "required": ["TransactionsImporterDb"]}}, "required": ["ConnectionStrings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["RhinoStyle", "Turntable", "TweenTime", "ab-frontend", "angular-gsapify-router", "angular-scroll-magic", "angularCubicColorPicker", "animachine", "blucify-scroller", "cluster-painter", "cosmos-webpack-boilerplate", "cubicColorPicker", "docs-now", "feedback.js", "frontend-npm-goodies", "gatsby-asdf", "gsap-lite-promise", "gsap-promise", "gzap", "immersejs", "jam3-lesson-tweening", "jquery-slashes-and-circles", "lhs-solidify", "litr0n", "looped-events", "marionette-animated", "marionette-animator-jsplayer", "neocore", "phaser-list-view", "pics-to-pics", "pyrsmk-horizon", "qality", "react-addons-gsap-transition-group", "react-spark-scroll-gsap", "resonate-grid", "rhinostyle", "rise-continuous-scroll", "sindri-libs", "smoothify", "spooky-sprite", "spritesheet-animator", "three_boilerpate", "tweene", "video-box", "vixonic-weather-360-simple", "vueture-hamburger", "yd-canvas", "yd-post-canvas", "yoso-icons"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"@id": {"type": "string"}, "@type": {"type": "array", "items": {"type": "string"}}, "http://id.loc.gov/ontologies/bibframe/note": {"type": "array", "items": {"type": "object", "properties": {"@id": {"type": "string"}}, "required": ["@id"]}}, "http://id.loc.gov/ontologies/bibframe/source": {"type": "array", "items": {"type": "object", "properties": {"@id": {"type": "string"}}, "required": ["@id"]}}, "http://www.w3.org/1999/02/22-rdf-syntax-ns#value": {"type": "array", "items": {"type": "object", "properties": {"@language": {"type": "string"}, "@value": {"type": "string"}}, "required": ["@language", "@value"]}}}, "required": ["@id", "@type", "http://id.loc.gov/ontologies/bibframe/note", "http://id.loc.gov/ontologies/bibframe/source", "http://www.w3.org/1999/02/22-rdf-syntax-ns#value"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"@id" : "https://api.sinopia.io/resource/8ce4758d-8bff-44a6-9894-04ea9bd5047a", "@type" : ["http://id.loc.gov/ontologies/bibframe/Identifier"], "http://id.loc.gov/ontologies/bibframe/note" : [{"@id" : "https://api.sinopia.io/resource/37960a39-862b-4b5e-bdab-a7dec86938a3"}], "http://id.loc.gov/ontologies/bibframe/source" : [{"@id" : "https://api.sinopia.io/resource/abea123f-5267-4299-acc8-d08f90fb5f89"}], "http://www.w3.org/1999/02/22-rdf-syntax-ns#value" : [{"@language" : "eng", "@value" : "Chen, Meng (Paleontologist). Investigating the functional morphology, locomotor diversification, and paleoecology of Mesozoic mammals. Text. English"}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"@id": {"type": "string"}, "@type": {"type": "array", "items": {"type": "string"}}, "http://id.loc.gov/ontologies/bibframe/note": {"type": "array", "items": {"type": "object", "properties": {"@id": {"type": "string"}}, "required": ["@id"]}}, "http://id.loc.gov/ontologies/bibframe/source": {"type": "array", "items": {"type": "object", "properties": {"@id": {"type": "string"}}, "required": ["@id"]}}, "http://www.w3.org/1999/02/22-rdf-syntax-ns#value": {"type": "array", "items": {"type": "object", "properties": {"@language": {"type": "string"}, "@value": {"type": "string"}}, "required": ["@language", "@value"]}}}, "required": ["@id", "@type", "http://id.loc.gov/ontologies/bibframe/note", "http://id.loc.gov/ontologies/bibframe/source", "http://www.w3.org/1999/02/22-rdf-syntax-ns#value"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"phpunit/php-token-stream": {"type": "string"}}, "required": ["phpunit/php-token-stream"]}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["classmap"]}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}, "optimize-autoloader": {"type": "boolean"}}, "required": ["sort-packages", "optimize-autoloader"]}}, "required": ["name", "description", "license", "keywords", "authors", "require", "autoload", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "wildwolf/phpunit7-php8-helper", "description" : "A helper for PHPUnit 7 to generate code coverage under PHP 8", "license" : "MIT", "keywords" : ["phpunit", "phpunit7", "helper", "php8", "phpunit-code-coverage", "phpunit code coverage"], "authors" : [{"name" : "Volodymyr Kolesnykov", "email" : "[email protected]"}], "require" : {"phpunit/php-token-stream" : "^3"}, "autoload" : {"classmap" : ["src/"]}, "config" : {"sort-packages" : true, "optimize-autoloader" : true}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"phpunit/php-token-stream": {"type": "string"}}, "required": ["phpunit/php-token-stream"]}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["classmap"]}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}, "optimize-autoloader": {"type": "boolean"}}, "required": ["sort-packages", "optimize-autoloader"]}}, "required": ["name", "description", "license", "keywords", "authors", "require", "autoload", "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"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "main", "authors", "description", "moduleType", "keywords", "license", "homepage", "private", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "steemapi", "main" : "docs/index.html", "authors" : ["Feruz <[email protected]>"], "description" : "SteemAPI UI", "moduleType" : ["globals"], "keywords" : ["Steem", "Swagger", "eSteem", "Steemjs", "API"], "license" : ["Apache-2.0", "Copyright 2017 eSteem", "./LICENSE"], "homepage" : "http://esteem.ws", "private" : true, "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "main", "authors", "description", "moduleType", "keywords", "license", "homepage", "private", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-90.742971, 41.477217], [-90.740325, 41.481577], [-90.741615, 41.486231], [-90.739858, 41.494413], [-90.740169, 41.498812], [-90.739103, 41.501935], [-90.739085, 41.508938], [-90.727025, 41.50888], [-90.726512, 41.552708], [-90.707082, 41.552694], [-90.706735, 41.58186], [-90.726118, 41.581863], [-90.726067, 41.589149], [-90.728465, 41.589327], [-90.728392, 41.596435], [-90.68714, 41.596389], [-90.68731, 41.581909], [-90.676968, 41.581895], [-90.679572, 41.568272], [-90.678786, 41.54546], [-90.687867, 41.545454], [-90.687922, 41.538178], [-90.679254, 41.537627], [-90.676514, 41.534541], [-90.674884, 41.528113], [-90.675262, 41.516386], [-90.674595, 41.509536], [-90.676755, 41.509063], [-90.673594, 41.507164], [-90.66892, 41.50086], [-90.668939, 41.460632], [-90.676439, 41.460832], [-90.690951, 41.456643], [-90.701159, 41.454743], [-90.723325, 41.452261], [-90.723437, 41.462037], [-90.727601, 41.468681], [-90.734508, 41.474202], [-90.738251, 41.476015], [-90.742132, 41.476249], [-90.742971, 41.477217]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 25827}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"towns" : [{"name" : "Askeran (xankandi)", "url" : "askeran-xankandi"}]} | json_instruct | {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"status": {"type": "string"}, "code": {"type": "integer"}, "message": {"type": "string"}}, "required": ["status", "code", "message"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : "success", "code" : 200, "message" : "{\"response\":{}}"} | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "code": {"type": "integer"}, "message": {"type": "string"}}, "required": ["status", "code", "message"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"@symfony/webpack-encore": {"type": "string"}, "bootbox": {"type": "string"}, "bootstrap-sass": {"type": "string"}, "jquery": {"type": "string"}, "less": {"type": "string"}, "less-loader": {"type": "string"}, "node-sass": {"type": "string"}, "sass-loader": {"type": "string"}, "web3": {"type": "string"}, "webpack-notifier": {"type": "string"}}, "required": ["@symfony/webpack-encore", "bootbox", "bootstrap-sass", "jquery", "less", "less-loader", "node-sass", "sass-loader", "web3", "webpack-notifier"]}, "dependencies": {"type": "object", "properties": {"bootstrap-datetimepicker": {"type": "string"}}, "required": ["bootstrap-datetimepicker"]}}, "required": ["devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"devDependencies" : {"@symfony/webpack-encore" : "^0.17.1", "bootbox" : "^4.4.0", "bootstrap-sass" : "^3.3.7", "jquery" : "^3.2.1", "less" : "^2.7.3", "less-loader" : "^4.0.5", "node-sass" : "^4.7.2", "sass-loader" : "^6.0.6", "web3" : "^1.0.0-beta.30", "webpack-notifier" : "^1.5.0"}, "dependencies" : {"bootstrap-datetimepicker" : "^0.0.7"}} | json_instruct | {"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"@symfony/webpack-encore": {"type": "string"}, "bootbox": {"type": "string"}, "bootstrap-sass": {"type": "string"}, "jquery": {"type": "string"}, "less": {"type": "string"}, "less-loader": {"type": "string"}, "node-sass": {"type": "string"}, "sass-loader": {"type": "string"}, "web3": {"type": "string"}, "webpack-notifier": {"type": "string"}}, "required": ["@symfony/webpack-encore", "bootbox", "bootstrap-sass", "jquery", "less", "less-loader", "node-sass", "sass-loader", "web3", "webpack-notifier"]}, "dependencies": {"type": "object", "properties": {"bootstrap-datetimepicker": {"type": "string"}}, "required": ["bootstrap-datetimepicker"]}}, "required": ["devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "Aimpoint ni\u015fangah i\u00e7in standart y\u00fckseltici", "ShortName" : "AMSS", "Description" : "Aimpoint Comp serisi ni\u015fangahlar i\u00e7in yuvay\u0131 y\u00fckseltir."} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "children", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"uuid" : "4e3f1c87-bce2-4a4a-88b9-30a1ed6b96ec", "children" : ["8881d9df-db2d-4f7a-a607-a8e356651b2d"], "befores" : [{"name" : "check_ui", "status" : "passed", "start" : 1635258280047, "stop" : 1635258280047}], "start" : 1635258280047, "stop" : 1635258282326} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "children", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid 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" : "MANISHA", "frequency" : 1172, "males" : "0.0 %", "females" : "100.0 %"}] | 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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [138787.14375593534, 140579.34723070136, 145358.55649674404, 147150.75997151004] | json_instruct | {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following 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" : 404415925, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "3bdf98befce70b8f398bc2a2c12fdb90", "wof:id" : 404415925, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.3004409342578, 49.97756091905586, 1.34230705675581, 50.00554493661387], "geometry" : {"coordinates" : [[[1.31992097173542, 49.97756091905586], [1.30558567201255, 49.97963640347118], [1.30679259004295, 49.9894280350917], [1.3004409342578, 49.9943532559268], [1.32044672150285, 50.00554493661387], [1.3394105867803, 49.99980214698409], [1.34230705675581, 49.99474740633217], [1.31992097173542, 49.97756091905586]]], "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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "patch": {"type": "string"}, "build:debug": {"type": "string"}, "build:release": {"type": "string"}, "prepublishOnly": {"type": "string"}, "publish:next": {"type": "string"}}, "required": ["clean", "patch", "build:debug", "build:release", "prepublishOnly", "publish:next"]}, "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"}, "dependencies": {"type": "object", "properties": {"bindings": {"type": "string"}, "cmake-js": {"type": "string"}, "node-addon-api": {"type": "string"}}, "required": ["bindings", "cmake-js", "node-addon-api"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "os": {"type": "array", "items": {"type": "string"}}, "cpu": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "typings", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "engines", "os", "cpu"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "libnut", "version" : "2.1.6", "description" : "libnut is an N-API module for desktop automation with node", "main" : "index.js", "typings" : "index.d.ts", "scripts" : {"clean" : "cmake-js clean", "patch" : "node ./patch-packagename.js", "build:debug" : "cmake-js rebuild --debug", "build:release" : "cmake-js rebuild --CDCMAKE_OSX_ARCHITECTURES=\"arm64;x86_64\"", "prepublishOnly" : "npm run build:release", "publish:next" : "npm publish --tag next"}, "repository" : {"type" : "git", "url" : "https://github.com/nut-tree/libnut.git"}, "keywords" : ["GUI", "Automation", "mouse", "keyboard", "screenshot", "image", "desktop", "screen", "recognition", "autohotkey"], "author" : "Simon Hofmann <[email protected]>", "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/nut-tree/libnut/issues"}, "homepage" : "https://github.com/nut-tree/libnut", "dependencies" : {"bindings" : "1.5.0", "cmake-js" : "6.1.0", "node-addon-api" : "3.0.0"}, "engines" : {"node" : ">=10.15.3"}, "os" : ["darwin", "linux", "win32"], "cpu" : ["x64", "ia32", "arm64"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "patch": {"type": "string"}, "build:debug": {"type": "string"}, "build:release": {"type": "string"}, "prepublishOnly": {"type": "string"}, "publish:next": {"type": "string"}}, "required": ["clean", "patch", "build:debug", "build:release", "prepublishOnly", "publish:next"]}, "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"}, "dependencies": {"type": "object", "properties": {"bindings": {"type": "string"}, "cmake-js": {"type": "string"}, "node-addon-api": {"type": "string"}}, "required": ["bindings", "cmake-js", "node-addon-api"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "os": {"type": "array", "items": {"type": "string"}}, "cpu": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "typings", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "engines", "os", "cpu"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " Writing the contrapositive statement from a conditional statement\n\nWhen alternate interior\\nangles are equal, they are on parallel lines\n\n\n", "url" : "https://www.youtube.com/watch?v=oNKcPHzLIso"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "5e3c0b837dfe975b6f2b0a60", "_tpl" : "58a5c12e86f7745d585a2b9e", "parentId" : "5e3c0b837dfe975b6f2b0a5b", "slotId" : "mod_mount_001"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"fluentui-react.js": {"type": "string"}, "fluentui-react.min.js": {"type": "string"}, "fluentui-react.umd.js": {"type": "string"}, "fluentui-react.umd.min.js": {"type": "string"}}, "required": ["fluentui-react.js", "fluentui-react.min.js", "fluentui-react.umd.js", "fluentui-react.umd.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"fluentui-react.js" : "sha512-rynUOZMX4GCVd+8lpKNPXxhOQkg2K3Pp71/Z8BUCT4DV/Yy3nb6HODYa84xqQCdlhho8QIxoa8RFmAja1k0X6A==", "fluentui-react.min.js" : "sha512-mn2WWxxipKo5+yRXWsm+j/7o3H6IdkYyXV0hzuTYpXJG7NRENWi+M8wFEJHtd9M7bc0CcPGTTeXRp3FTScA9yA==", "fluentui-react.umd.js" : "sha512-3m6epWQ7P3JbHKYmz+OBxIru7CADSIJWJ5Zj+pAF1Oe+mqgRrL4EgxN+nmwEtvwr4O4/bgf6KpOqgd4nDfIh/A==", "fluentui-react.umd.min.js" : "sha512-ojT0AiNmV3ECVU4FYxX6jb2oXfbV1EM3xzOFmO8hngYHKEc0C58Fn6eA/CzRn8pgZiu+E/Xq7zP1Ce3xm0XM6Q=="} | json_instruct | {"type": "object", "properties": {"fluentui-react.js": {"type": "string"}, "fluentui-react.min.js": {"type": "string"}, "fluentui-react.umd.js": {"type": "string"}, "fluentui-react.umd.min.js": {"type": "string"}}, "required": ["fluentui-react.js", "fluentui-react.min.js", "fluentui-react.umd.js", "fluentui-react.umd.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "null"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "null"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localities" : ["Jacksonville, NC", "Cp Lejeunemcb, NC", "Lejeune, NC", "Cp Lejeune Mcb, NC", "Camp Lejeune, NC"], "state" : "NC", "postal_code" : "28542", "locality" : "Camp Lejeune, NC", "lat" : null, "region" : {"fips" : "37", "abbr" : "NC", "name" : "North Carolina"}, "city" : "Camp Lejeune", "type" : "POBOX", "lng" : null, "counties" : [{"fips" : "133", "name" : "Onslow County"}]} | json_instruct | {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "null"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "null"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"bonzo.js": {"type": "string"}, "bonzo.min.js": {"type": "string"}}, "required": ["bonzo.js", "bonzo.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"bonzo.js" : "sha512-aJU+65BKIoUldm469AUufHNyRAVQ0IDMynQSTg4P1B+zhV1fH4sY6oQSDlbv9JBFHY2FIEiNYu6ntCvPMwfatg==", "bonzo.min.js" : "sha512-jyZIijia//SEg/vTTK31Xl0Z/0It0bzhGQ3rfp3PknE9U9EWFJNce589F7UVG/woESlW0wxHuvZQiqa06/CBmw=="} | json_instruct | {"type": "object", "properties": {"bonzo.js": {"type": "string"}, "bonzo.min.js": {"type": "string"}}, "required": ["bonzo.js", "bonzo.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "twain-cloud-web", "version" : "1.0.0", "description" : "TWAIN Cloud Web Application", "main" : "index.js", "dependencies" : {}, "devDependencies" : {}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["twain", "cloud"], "author" : "TWAIN Working Group", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"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" : 87589, "cartId" : "e90f9377-2e0b-47d3-8b78-bd8546f0d615", "preferredProducts" : [3482, 4702, 3796, 1351, 300, 3514, 1944, 33, 3564, 1110], "productReviews" : [{"productId" : 4529, "reviewText" : "This Usability works very well. It harmonically improves my tennis by a lot.", "reviewDate" : "2020-02-05T05:49:43.7883043+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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {}, "required": []}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : 200, "data" : {"totalSubs" : 445, "subsInEachSource" : {"feedly" : 157, "inoreader" : 284, "feedsPub" : 4}, "failedSources" : {}}, "lastModified" : 1619773089815} | json_instruct | {"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "inoreader", "feedsPub"]}, "failedSources": {"type": "object", "properties": {}, "required": []}}, "required": ["totalSubs", "subsInEachSource", "failedSources"]}, "lastModified": {"type": "integer"}}, "required": ["status", "data", "lastModified"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "7c06a720d9e27fafc4ff", "c" : {"app" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@chai-stuff/not-length-of": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "@chai-stuff/same-props": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["@chai-stuff/not-length-of", "@chai-stuff/same-props"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "chai-stuff", "version" : "0.3.3", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"@chai-stuff/not-length-of" : {"version" : "0.3.3", "resolved" : "https://registry.npmjs.org/@chai-stuff/not-length-of/-/not-length-of-0.3.3.tgz", "integrity" : "sha512-fuR08HKmE+y8VAZJ7nrE4s5EE5nbtTGlwCrg/bjPNK4a2GJVDkJa4eZnvx/lCrIZ0TPj1NOcXvQK7evo03Ovhw=="}, "@chai-stuff/same-props" : {"version" : "0.3.3", "resolved" : "https://registry.npmjs.org/@chai-stuff/same-props/-/same-props-0.3.3.tgz", "integrity" : "sha512-MfBRhwtcxrRn8PN1/fwBSJGNSiljHbr3Zbcj7+hAYLM2iiVNl+bvPDKtYQGEPDxq3HqHpIStJKzDbEIRUv3Z4A=="}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@chai-stuff/not-length-of": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}, "@chai-stuff/same-props": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["@chai-stuff/not-length-of", "@chai-stuff/same-props"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"capabilities": {"type": "array", "items": {"type": "object", "properties": {"browserName": {"type": "string"}, "udid": {"type": "string"}, "deviceName": {"type": "string"}, "version": {"type": "string"}, "maxInstances": {"type": "integer"}, "platformName": {"type": "string"}, "resetKeyboard": {"type": "boolean"}}, "required": ["browserName", "udid", "deviceName", "version", "maxInstances", "platformName", "resetKeyboard"]}}, "configuration": {"type": "object", "properties": {"cleanUpCycle": {"type": "integer"}, "timeout": {"type": "integer"}, "hub": {"type": "string"}, "proxy": {"type": "string"}, "url": {"type": "string"}, "remoteHost": {"type": "string"}, "host": {"type": "string"}, "port": {"type": "integer"}, "maxSession": {"type": "integer"}, "register": {"type": "boolean"}, "registerCycle": {"type": "integer"}, "hubPort": {"type": "integer"}, "hubHost": {"type": "string"}, "role": {"type": "string"}}, "required": ["cleanUpCycle", "timeout", "hub", "proxy", "url", "remoteHost", "host", "port", "maxSession", "register", "registerCycle", "hubPort", "hubHost", "role"]}}, "required": ["capabilities", "configuration"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"capabilities" : [{"browserName" : "", "udid" : "LE67A06210310748", "deviceName" : "le_x62", "version" : "6.0.1", "maxInstances" : 5, "platformName" : "ANDROID", "resetKeyboard" : true}], "configuration" : {"cleanUpCycle" : 2000, "timeout" : 30000, "hub" : "http://10.0.200.59/grid/register/", "proxy" : "org.openqa.grid.selenium.proxy.DefaultRemoteProxy", "url" : "http://127.0.0.1:4723/wd/hub", "remoteHost" : "http://127.0.0.1:4723", "host" : "127.0.0.1", "port" : 4723, "maxSession" : 5, "register" : true, "registerCycle" : 5000, "hubPort" : 5566, "hubHost" : "10.0.200.59", "role" : "node"}} | json_instruct | {"type": "object", "properties": {"capabilities": {"type": "array", "items": {"type": "object", "properties": {"browserName": {"type": "string"}, "udid": {"type": "string"}, "deviceName": {"type": "string"}, "version": {"type": "string"}, "maxInstances": {"type": "integer"}, "platformName": {"type": "string"}, "resetKeyboard": {"type": "boolean"}}, "required": ["browserName", "udid", "deviceName", "version", "maxInstances", "platformName", "resetKeyboard"]}}, "configuration": {"type": "object", "properties": {"cleanUpCycle": {"type": "integer"}, "timeout": {"type": "integer"}, "hub": {"type": "string"}, "proxy": {"type": "string"}, "url": {"type": "string"}, "remoteHost": {"type": "string"}, "host": {"type": "string"}, "port": {"type": "integer"}, "maxSession": {"type": "integer"}, "register": {"type": "boolean"}, "registerCycle": {"type": "integer"}, "hubPort": {"type": "integer"}, "hubHost": {"type": "string"}, "role": {"type": "string"}}, "required": ["cleanUpCycle", "timeout", "hub", "proxy", "url", "remoteHost", "host", "port", "maxSession", "register", "registerCycle", "hubPort", "hubHost", "role"]}}, "required": ["capabilities", "configuration"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 421190215, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "354ab5ffcb7a25d487230020d7f916b2", "wof:id" : 421190215, "wof:repo" : "whosonfirst-data-admin-ve"}, "bbox" : [-72.31907, 7.82853, -72.31907, 7.82853], "geometry" : {"coordinates" : [-72.31907, 7.82853], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_afe0hip9", "name" : "JSuchnSuch"}, "date" : {"day" : 1613952000, "full" : 1614020487, "month" : 1612137600, "week" : 1613865600}, "id" : "t3_lpwpv8", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 70279, "fullUrl" : "https://preview.redd.it/vkwyohw1u2j61.jpg?auto=webp&s=b38262a5d598cf15d0bab1d34cb5df3dab7757e6", "hash" : "6880a4687e", "height" : 479, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAMABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQMG/8QAIxAAAgIBAwMFAAAAAAAAAAAAAQIDBBEABSETMXEGElFh0f/EABUBAQEAAAAAAAAAAAAAAAAAAAID/8QAGhEBAAIDAQAAAAAAAAAAAAAAAQACERJBUf/aAAwDAQACEQMRAD8Azm30Lfp3bIGpzz14z7uRIwPPcnHBJ+NVqXJCjGW3KQqkIvUbA8DOlrFBUMsHXmZBgjJB7Dx96KrbXDNZjDPKAz4OCPzRN9Wt3vPJKgZGf//Z", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/FQ_sdItZLrjsFZP5apGB8ScRXpqm3-l_Znq6BKyB6PU.jpg", "url" : "https://preview.redd.it/vkwyohw1u2j61.jpg?width=640&crop=smart&auto=webp&s=2d58758645109d39fac465070826bb0ae804ab79", "width" : 640}, "score" : {"comments" : 7, "downs" : 0, "isCurated" : false, "ratio" : 0.84, "ups" : 8, "value" : 8}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : [], "title" : "This is my first map for my homebrew World, and first virtual map. I drew out the world on paper first, and it took so much longer than this. Hope everyone likes the look of it. I used Inkarnate.", "url" : "https://www.reddit.com/r/dndmaps/comments/lpwpv8/this_is_my_first_map_for_my_homebrew_world_and/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$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": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "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"}, "dependencies": {"type": "object", "properties": {"discord.js": {"type": "string"}, "quick.eco": {"type": "string"}}, "required": ["discord.js", "quick.eco"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ecobot", "version" : "1.0.0", "description" : "Simple economy bot for discord.", "main" : "index.js", "scripts" : {"test" : "node index.js", "start" : "node index.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Snowflake107/ecobot.git"}, "keywords" : ["eco", "ecobot", "quick.db-economy", "quick.eco"], "author" : "Snowflake7", "license" : "MIT", "bugs" : {"url" : "https://github.com/Snowflake107/ecobot/issues"}, "homepage" : "https://github.com/Snowflake107/ecobot#readme", "dependencies" : {"discord.js" : "^11.5.1", "quick.eco" : "^2.0.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "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"}, "dependencies": {"type": "object", "properties": {"discord.js": {"type": "string"}, "quick.eco": {"type": "string"}}, "required": ["discord.js", "quick.eco"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"f" : "\ufff9\ufffavillage leader\ufffb\u982d\u76ee\uff0c\u9109\u7d33"}, {"f" : "\ufff9\ufffasomeone who is rich and has prestige\ufffb\u5bcc\u88d5\u4eba\u5bb6\uff0c\u8ca1\u4e3b"}, {"f" : "\ufff9\ufffabiblical term for Judges\ufffb\u8056\u7d93\u4e0a\u5be9\u5224\u5b98\u4e4b\u5b57\u773c"}]}], "t" : "kakitaan"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}}, "required": ["f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "number"}, "_tpl": {"type": "string"}}, "required": ["count", "_tpl"]}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[{"count" : 768.56, "_tpl" : "5449016a4bdc2d6f028b456f"}]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "number"}, "_tpl": {"type": "string"}}, "required": ["count", "_tpl"]}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.99": {"type": "integer"}, "0.97": {"type": "integer"}, "0.06": {"type": "integer"}, "0.98": {"type": "integer"}, "1.0": {"type": "integer"}, "0.92": {"type": "integer"}, "0.82": {"type": "integer"}, "0.65": {"type": "integer"}, "0.91": {"type": "integer"}, "0.81": {"type": "integer"}, "0.85": {"type": "integer"}, "0.96": {"type": "integer"}}, "required": ["0.99", "0.97", "0.06", "0.98", "1.0", "0.92", "0.82", "0.65", "0.91", "0.81", "0.85", "0.96"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hour positive count" : 20, "hour neutral count" : 3, "hour negative count" : 1, "hour distri" : {"0.99" : 5, "0.97" : 2, "0.06" : 1, "0.98" : 3, "1.0" : 6, "0.92" : 1, "0.82" : 1, "0.65" : 1, "0.91" : 1, "0.81" : 1, "0.85" : 1, "0.96" : 1}} | json_instruct | {"type": "object", "properties": {"hour positive count": {"type": "integer"}, "hour neutral count": {"type": "integer"}, "hour negative count": {"type": "integer"}, "hour distri": {"type": "object", "properties": {"0.99": {"type": "integer"}, "0.97": {"type": "integer"}, "0.06": {"type": "integer"}, "0.98": {"type": "integer"}, "1.0": {"type": "integer"}, "0.92": {"type": "integer"}, "0.82": {"type": "integer"}, "0.65": {"type": "integer"}, "0.91": {"type": "integer"}, "0.81": {"type": "integer"}, "0.85": {"type": "integer"}, "0.96": {"type": "integer"}}, "required": ["0.99", "0.97", "0.06", "0.98", "1.0", "0.92", "0.82", "0.65", "0.91", "0.81", "0.85", "0.96"]}}, "required": ["hour positive count", "hour neutral count", "hour negative count", "hour distri"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"key": {"type": "string"}, "suffix": {"type": "string"}, "positions": {"type": "array", "items": {"type": "object", "properties": {"frets": {"type": "string"}, "fingers": {"type": "string"}, "barres": {"type": "string"}, "capo": {"type": "string"}}, "required": ["frets", "fingers", "barres", "capo"]}}}, "required": ["key", "suffix", "positions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"key" : "A#", "suffix" : "augmaj7/B", "positions" : [{"frets" : "7987aa", "fingers" : "132144", "barres" : "7", "capo" : "true"}, {"frets" : "758x75", "fingers" : "214031", "barres" : "5", "capo" : "true"}, {"frets" : "jlkjmm", "fingers" : "132144", "barres" : "19", "capo" : "true"}, {"frets" : "jhkxjh", "fingers" : "214031", "barres" : "17", "capo" : "true"}]} | json_instruct | {"type": "object", "properties": {"key": {"type": "string"}, "suffix": {"type": "string"}, "positions": {"type": "array", "items": {"type": "object", "properties": {"frets": {"type": "string"}, "fingers": {"type": "string"}, "barres": {"type": "string"}, "capo": {"type": "string"}}, "required": ["frets", "fingers", "barres", "capo"]}}}, "required": ["key", "suffix", "positions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"frontmatter": {"type": "object", "properties": {"name": {"type": "string"}, "route": {"type": "string"}}, "required": ["name", "route"]}, "entry": {"type": "object", "properties": {"id": {"type": "string"}, "filepath": {"type": "string"}, "fullpath": {"type": "string"}, "route": {"type": "string"}, "slug": {"type": "string"}, "name": {"type": "string"}, "menu": {"type": "string"}, "headings": {"type": "array", "items": {"type": "object", "properties": {"slug": {"type": "string"}, "depth": {"type": "integer"}, "value": {"type": "string"}}, "required": ["slug", "depth", "value"]}}}, "required": ["id", "filepath", "fullpath", "route", "slug", "name", "menu", "headings"]}}, "required": ["frontmatter", "entry"]}}, "required": ["pageContext"]}}, "required": ["componentChunkName", "path", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"componentChunkName" : "component---src-fields-styleguide-mdx", "path" : "/", "result" : {"pageContext" : {"frontmatter" : {"name" : "Home", "route" : "/"}, "entry" : {"id" : "d7e065b874e1d4c80c6c8ceb5fd01964", "filepath" : "src/fields/styleguide.mdx", "fullpath" : "/Users/scotttolinski/Sites/fresh-forms/src/fields/styleguide.mdx", "route" : "/", "slug" : "src-fields-styleguide", "name" : "Home", "menu" : "", "headings" : [{"slug" : "form", "depth" : 1, "value" : "Form"}, {"slug" : "basic-form", "depth" : 2, "value" : "Basic form"}, {"slug" : "slightly-more-advanced-form", "depth" : 2, "value" : "Slightly more advanced form"}]}}}} | json_instruct | {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"frontmatter": {"type": "object", "properties": {"name": {"type": "string"}, "route": {"type": "string"}}, "required": ["name", "route"]}, "entry": {"type": "object", "properties": {"id": {"type": "string"}, "filepath": {"type": "string"}, "fullpath": {"type": "string"}, "route": {"type": "string"}, "slug": {"type": "string"}, "name": {"type": "string"}, "menu": {"type": "string"}, "headings": {"type": "array", "items": {"type": "object", "properties": {"slug": {"type": "string"}, "depth": {"type": "integer"}, "value": {"type": "string"}}, "required": ["slug", "depth", "value"]}}}, "required": ["id", "filepath", "fullpath", "route", "slug", "name", "menu", "headings"]}}, "required": ["frontmatter", "entry"]}}, "required": ["pageContext"]}}, "required": ["componentChunkName", "path", "result"], "$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" : [[[141.75, 31.25], [141.75, 31.333333333333332], [141.875, 31.333333333333332], [141.875, 31.25], [141.75, 31.25]]]}, "properties" : {"code" : 464176, "url" : "http://madefor.github.io/0410/api/v1/464176.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/464176.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Administrator": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "password": {"type": "string"}}, "required": ["name", "email", "password"]}}, "required": ["Administrator"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Administrator" : {"name" : "Administrator", "email" : "[email protected]", "password" : "Test1234!"}} | json_instruct | {"type": "object", "properties": {"Administrator": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "password": {"type": "string"}}, "required": ["name", "email", "password"]}}, "required": ["Administrator"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200894083741000, "key" : "6d441116568348345deaf6f01a719b50{}", "val" : "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='400'%20height='336'%20viewBox='0%200%20400%20336'%20preserveAspectRatio='none'%3e%3cpath%20d='M113%20146l1%2026h16v-12c1-14%200-15%2011%201l7%2011h16v-52h-17v12c0%2014%200%2014-6%205a120%20120%200%2000-7-10l-3-4c-2-3-2-3-10-3h-8v26m55-26a1392%201392%200%200016%2047l2%205h20l1-3a926%20926%200%200017-49h-9l-9%201-3%207-4%2015c-3%2010-3%2010-6%201a1635%201635%200%2000-5-19l-1-5h-19m60%2026l1%2026h16v-12c0-13%201-15%203-11%207%2017%2011%2018%2017%206%206-10%206-10%206%204v13h17v-52h-17l-2%204-11%2017-7-10-6-11h-17v26m-23%2049c0%209%200%2010-3%209-1-1-3%200-8%203l-6%203v8l1%207%206%203%206%204%206-4%206-3v-34l-4-2-4-2v8m-78%2012l-6%203v9l1%209%204-2c4-2%204-2%204-7%200-4%200-5%203-6s5%202%205%207c0%203%200%204%203%206%205%203%205%203%205-7s0-9-7-13c-6-4-5-4-12%201m100%200l-6%203v14l5%204c7%204%208%204%2012%201l3-2-6-4c-6-4-8-7-4-9%203-2%206%200%207%203%200%203%200%203%205%200s4-6-3-10l-6-4-7%204'%20fill='%23d3d3d3'%20fill-rule='evenodd'/%3e%3c/svg%3e"} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"tasks": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "label": {"type": "string"}, "command": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}, "options": {"type": "object", "properties": {"cwd": {"type": "string"}}, "required": ["cwd"]}, "problemMatcher": {"type": "array", "items": {"type": "string"}}, "group": {"type": "object", "properties": {"kind": {"type": "string"}, "isDefault": {"type": "boolean"}}, "required": ["kind", "isDefault"]}, "detail": {"type": "string"}}, "required": ["type", "label", "command", "args", "options", "problemMatcher", "group", "detail"]}}, "version": {"type": "string"}}, "required": ["tasks", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tasks" : [{"type" : "cppbuild", "label" : "C/C++: xtensa-esp32-elf-g++ build active file", "command" : "/home/sal/.arduino15/packages/esp32/tools/xtensa-esp32-elf-gcc/gcc8_4_0-esp-2021r2/bin/xtensa-esp32-elf-g++", "args" : ["-fdiagnostics-color=always", "-g", "${file}", "-o", "${fileDirname}/${fileBasenameNoExtension}", "-mlongcalls", "-Wno-frame-address", "-ffunction-sections", "-fdata-sections", "-Wno-error=unused-function", "-Wno-error=unused-variable", "-Wno-error=deprecated-declarations", "-Wno-unused-parameter", "-Wno-sign-compare", "-freorder-blocks", "-Wwrite-strings", "-fstack-protector", "-fstrict-volatile-bitfields", "-Wno-error=unused-but-set-variable", "-fno-jump-tables", "-fno-tree-switch-conversion", "-std=gnu++11", "-fexceptions", "-fno-rtti"], "options" : {"cwd" : "${fileDirname}"}, "problemMatcher" : ["$gcc"], "group" : {"kind" : "build", "isDefault" : true}, "detail" : "Task generated by Debugger."}], "version" : "2.0.0"} | json_instruct | {"type": "object", "properties": {"tasks": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "label": {"type": "string"}, "command": {"type": "string"}, "args": {"type": "array", "items": {"type": "string"}}, "options": {"type": "object", "properties": {"cwd": {"type": "string"}}, "required": ["cwd"]}, "problemMatcher": {"type": "array", "items": {"type": "string"}}, "group": {"type": "object", "properties": {"kind": {"type": "string"}, "isDefault": {"type": "boolean"}}, "required": ["kind", "isDefault"]}, "detail": {"type": "string"}}, "required": ["type", "label", "command", "args", "options", "problemMatcher", "group", "detail"]}}, "version": {"type": "string"}}, "required": ["tasks", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404387859, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "47ac4be192487954abdeaef171d0afbc", "wof:id" : 404387859, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.67917, 43.06333, 1.67917, 43.06333], "geometry" : {"coordinates" : [1.67917, 43.06333], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"c": {"type": "object", "properties": {"vinh long": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "t\ufffdn b\ufffdnh": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "binh minh": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "ap phu hoa": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "my dinh": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "thi tran": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "tr\ufffd \ufffdn": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "tam b\ufffdnh": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}}, "required": ["vinh long", "t\ufffdn b\ufffdnh", "binh minh", "ap phu hoa", "my dinh", "thi tran", "tr\ufffd \ufffdn", "tam b\ufffdnh"]}, "l": {"type": "array", "items": {}}}, "required": ["c", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"c" : {"vinh long" : {"z" : {}, "l" : ["10.2500", "105.9667"]}, "t\ufffdn b\ufffdnh" : {"z" : {}, "l" : ["10.1989", "105.9410"]}, "binh minh" : {"z" : {}, "l" : ["10.0098", "105.8492"]}, "ap phu hoa" : {"z" : {}, "l" : ["10.1360", "105.8863"]}, "my dinh" : {"z" : {}, "l" : ["10.0060", "105.9687"]}, "thi tran" : {"z" : {}, "l" : ["10.0528", "105.9945"]}, "tr\ufffd \ufffdn" : {"z" : {}, "l" : ["9.9608", "105.9275"]}, "tam b\ufffdnh" : {"z" : {}, "l" : ["10.0482", "106.0003"]}}, "l" : []} | json_instruct | {"type": "object", "properties": {"c": {"type": "object", "properties": {"vinh long": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "t\ufffdn b\ufffdnh": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "binh minh": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "ap phu hoa": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "my dinh": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "thi tran": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "tr\ufffd \ufffdn": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "tam b\ufffdnh": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}}, "required": ["vinh long", "t\ufffdn b\ufffdnh", "binh minh", "ap phu hoa", "my dinh", "thi tran", "tr\ufffd \ufffdn", "tam b\ufffdnh"]}, "l": {"type": "array", "items": {}}}, "required": ["c", "l"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"title": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "item.label.Tags": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "item.label.Archiv": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "item.label.About": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "item.label.FAQ": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}}, "required": ["title", "item.label.Tags", "item.label.Archiv", "item.label.About", "item.label.FAQ"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : {"message" : "argumentation.online", "description" : "The title in the navbar"}, "item.label.Tags" : {"message" : "Tags", "description" : "Navbar item with label Tags"}, "item.label.Archiv" : {"message" : "Archiv", "description" : "Navbar item with label Archiv"}, "item.label.About" : {"message" : "\u00dcber uns", "description" : "Navbar item with label About"}, "item.label.FAQ" : {"message" : "FAQ", "description" : "Navbar item with label FAQ"}} | json_instruct | {"type": "object", "properties": {"title": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "item.label.Tags": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "item.label.Archiv": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "item.label.About": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}, "item.label.FAQ": {"type": "object", "properties": {"message": {"type": "string"}, "description": {"type": "string"}}, "required": ["message", "description"]}}, "required": ["title", "item.label.Tags", "item.label.Archiv", "item.label.About", "item.label.FAQ"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 421181907, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "82e23982d8dbf508bff335f3db8119ec", "wof:id" : 421181907, "wof:repo" : "whosonfirst-data-admin-ve"}, "bbox" : [-70.2642625, 8.9435785, -70.2642625, 8.9435785], "geometry" : {"coordinates" : [-70.2642625, 8.9435785], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"J-coupling": {"type": "array", "items": {"type": "object", "properties": {"ID2": {"type": "integer"}, "ID1": {"type": "integer"}, "value": {"type": "number"}}, "required": ["ID2", "ID1", "value"]}}, "chemical shift": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "number"}, "ID": {"type": "integer"}}, "required": ["value", "ID"]}}}, "required": ["J-coupling", "chemical shift"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"J-coupling" : [{"ID2" : 14, "ID1" : 13, "value" : 8.592131}, {"ID2" : 17, "ID1" : 13, "value" : 1.520307}, {"ID2" : 16, "ID1" : 15, "value" : 3.415283}], "chemical shift" : [{"value" : 7.7444, "ID" : 13}, {"value" : 7.52297, "ID" : 14}, {"value" : 6.6686, "ID" : 15}, {"value" : 7.43444, "ID" : 16}, {"value" : 8.23121, "ID" : 17}]} | json_instruct | {"type": "object", "properties": {"J-coupling": {"type": "array", "items": {"type": "object", "properties": {"ID2": {"type": "integer"}, "ID1": {"type": "integer"}, "value": {"type": "number"}}, "required": ["ID2", "ID1", "value"]}}, "chemical shift": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "number"}, "ID": {"type": "integer"}}, "required": ["value", "ID"]}}}, "required": ["J-coupling", "chemical shift"], "$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"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "jade": {"type": "string"}, "mongoskin": {"type": "string"}, "marked": {"type": "string"}, "nodemailer": {"type": "string"}}, "required": ["express", "jade", "mongoskin", "marked", "nodemailer"]}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "version", "author", "description", "private", "main", "dependencies", "contributors", "scripts", "engines", "repository", "keywords", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "latinode", "version" : "0.2.5", "author" : "Justin Ma", "description" : "A Dance Training Management System.", "private" : true, "main" : "./app.js", "dependencies" : {"express" : ">= 3.4.6", "jade" : ">= 0.35.0", "mongoskin" : ">= 0.6.1", "marked" : ">= 0.2.10", "nodemailer" : ">= 0.5.14"}, "contributors" : [{"name" : "Justin Ma", "email" : "hustcer(at)gmail.com"}], "scripts" : {"start" : "node app.js"}, "engines" : {"node" : ">= 0.10.0"}, "repository" : {"type" : "git", "url" : "https://github.com/hustcer/latinode"}, "keywords" : ["mongodb", "nodejs", "latin", "dance"], "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "jade": {"type": "string"}, "mongoskin": {"type": "string"}, "marked": {"type": "string"}, "nodemailer": {"type": "string"}}, "required": ["express", "jade", "mongoskin", "marked", "nodemailer"]}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "version", "author", "description", "private", "main", "dependencies", "contributors", "scripts", "engines", "repository", "keywords", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"description": {"type": "string"}, "author": {"type": "string"}, "bt:publisher": {"type": "string"}, "bt:libs": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}}, "required": ["url", "name"]}}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "type": {"type": "string"}}, "required": ["url", "type"]}}, "site": {"type": "string"}, "bt:update_url": {"type": "string"}, "version": {"type": "string"}, "bt:description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "type": {"type": "string"}}, "required": ["url", "type"]}}, "bt:release_date": {"type": "string"}, "name": {"type": "string"}, "bt:package": {"type": "boolean"}}, "required": ["description", "author", "bt:publisher", "bt:libs", "repositories", "site", "bt:update_url", "version", "bt:description", "keywords", "licenses", "bt:release_date", "name", "bt:package"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "BitTorrent Apps Widget Library", "author" : "Bryan Kaplan <[email protected]>", "bt:publisher" : "BitTorrent Inc.", "bt:libs" : [{"url" : "http://staging.apps.bittorrent.com/pkgs/apps-sdk.pkg", "name" : "apps-sdk"}, {"url" : "http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.js", "name" : "jquery-ui"}], "repositories" : [{"url" : "git://github.com/bittorrent/widgets.git", "type" : "git"}], "site" : "http://btapps-sdk.bittorrent.com", "bt:update_url" : "http://staging.apps.bittorrent.com/pkgs/widgets.pkg", "version" : "0.1", "bt:description" : "BitTorrent Apps Widget Library\r\rCreate your own apps using the Apps for BitTorrent SDK.\rhttp://btapps-sdk.bittorrent.com/", "keywords" : ["widget", "library"], "licenses" : [{"url" : "http://www.opensource.org/licenses/bsd-license.php", "type" : "New BSD License"}], "bt:release_date" : "08/25/2010", "name" : "widgets", "bt:package" : true} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "author": {"type": "string"}, "bt:publisher": {"type": "string"}, "bt:libs": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}}, "required": ["url", "name"]}}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "type": {"type": "string"}}, "required": ["url", "type"]}}, "site": {"type": "string"}, "bt:update_url": {"type": "string"}, "version": {"type": "string"}, "bt:description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "type": {"type": "string"}}, "required": ["url", "type"]}}, "bt:release_date": {"type": "string"}, "name": {"type": "string"}, "bt:package": {"type": "boolean"}}, "required": ["description", "author", "bt:publisher", "bt:libs", "repositories", "site", "bt:update_url", "version", "bt:description", "keywords", "licenses", "bt:release_date", "name", "bt:package"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"manufacturer" : "Dell", "market_name" : "", "codename" : "Dell_Grappa", "model" : "Dell Aero"}, {"manufacturer" : "Dell", "market_name" : "", "codename" : "Dell_Grappa", "model" : "Mini_3iG"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "User-Agent": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Connection", "User-Agent"]}, "response-headers": {"type": "object", "properties": {"Cache-Control": {"type": "string"}, "Content-Encoding": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "Expires": {"type": "string"}, "SPIisLatency": {"type": "string"}, "SPRequestDuration": {"type": "string"}, "SPRequestGuid": {"type": "string"}, "Set-Cookie": {"type": "string"}, "Strict-Transport-Security": {"type": "string"}, "Transfer-Encoding": {"type": "string"}, "Vary": {"type": "string"}, "X-CDN": {"type": "string"}, "X-Content-Type-Options": {"type": "string"}, "X-FRAME-OPTIONS": {"type": "string"}, "X-Iinfo": {"type": "string"}, "X-MS-InvokeApp": {"type": "string"}, "X-SharePointHealthScore": {"type": "string"}, "request-id": {"type": "string"}}, "required": ["Cache-Control", "Content-Encoding", "Content-Type", "Date", "Expires", "SPIisLatency", "SPRequestDuration", "SPRequestGuid", "Set-Cookie", "Strict-Transport-Security", "Transfer-Encoding", "Vary", "X-CDN", "X-Content-Type-Options", "X-FRAME-OPTIONS", "X-Iinfo", "X-MS-InvokeApp", "X-SharePointHealthScore", "request-id"]}, "ssl-verify": {"type": "boolean"}, "status": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "request-headers", "response-headers", "ssl-verify", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"elapsed" : "1.147", "endpoint-url" : "https://www.leeds.gov.uk/planning/community-infrastructure-levy/infrastructure-funding-statement", "entry-date" : "2021-11-06T00:24:26.429091", "request-headers" : {"Accept" : "*/*", "Accept-Encoding" : "gzip, deflate", "Connection" : "keep-alive", "User-Agent" : "Digital Land"}, "response-headers" : {"Cache-Control" : "private", "Content-Encoding" : "gzip", "Content-Type" : "text/html; charset=utf-8", "Date" : "Sat, 06 Nov 2021 00:27:08 GMT", "Expires" : "Sat, 06 Nov 2021 00:30:08 GMT", "SPIisLatency" : "1", "SPRequestDuration" : "518", "SPRequestGuid" : "124d00a0-6eac-70f0-20fc-a95cd7f7ea6a", "Set-Cookie" : "visid_incap_2048550=WTxWujFGSz6ED5hihHU3YNvLhWEAAAAAQUIPAAAAAADIhjHeqhZGqYxCWD976DWm; expires=Sat, 05 Nov 2022 09:04:56 GMT; HttpOnly; path=/; Domain=.leeds.gov.uk, incap_ses_890_2048550=0fYrAuQAf0lIsOFTvepZDNzLhWEAAAAATZGDZIIQq4EyyQGmltdH6Q==; path=/; Domain=.leeds.gov.uk", "Strict-Transport-Security" : "max-age=15552000; includeSubDomains; preload", "Transfer-Encoding" : "chunked", "Vary" : "*", "X-CDN" : "Imperva", "X-Content-Type-Options" : "nosniff", "X-FRAME-OPTIONS" : "SAMEORIGIN", "X-Iinfo" : "14-136559822-136559827 NNNN CT(105 201 0) RT(1636158427094 17) q(0 0 3 3) r(9 9) U12", "X-MS-InvokeApp" : "1; RequireReadOnly", "X-SharePointHealthScore" : "0", "request-id" : "124d00a0-6eac-70f0-20fc-a95cd7f7ea6a"}, "ssl-verify" : true, "status" : "200"} | json_instruct | {"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "User-Agent": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Connection", "User-Agent"]}, "response-headers": {"type": "object", "properties": {"Cache-Control": {"type": "string"}, "Content-Encoding": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "Expires": {"type": "string"}, "SPIisLatency": {"type": "string"}, "SPRequestDuration": {"type": "string"}, "SPRequestGuid": {"type": "string"}, "Set-Cookie": {"type": "string"}, "Strict-Transport-Security": {"type": "string"}, "Transfer-Encoding": {"type": "string"}, "Vary": {"type": "string"}, "X-CDN": {"type": "string"}, "X-Content-Type-Options": {"type": "string"}, "X-FRAME-OPTIONS": {"type": "string"}, "X-Iinfo": {"type": "string"}, "X-MS-InvokeApp": {"type": "string"}, "X-SharePointHealthScore": {"type": "string"}, "request-id": {"type": "string"}}, "required": ["Cache-Control", "Content-Encoding", "Content-Type", "Date", "Expires", "SPIisLatency", "SPRequestDuration", "SPRequestGuid", "Set-Cookie", "Strict-Transport-Security", "Transfer-Encoding", "Vary", "X-CDN", "X-Content-Type-Options", "X-FRAME-OPTIONS", "X-Iinfo", "X-MS-InvokeApp", "X-SharePointHealthScore", "request-id"]}, "ssl-verify": {"type": "boolean"}, "status": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "request-headers", "response-headers", "ssl-verify", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-route": {"type": "string"}, "almond": {"type": "string"}, "requirejs": {"type": "string"}, "angular-translate": {"type": "string"}, "angular-translate-loader-static-files": {"type": "string"}}, "required": ["angular", "angular-route", "almond", "requirejs", "angular-translate", "angular-translate-loader-static-files"]}, "devDependencies": {"type": "object", "properties": {"angular-mocks": {"type": "string"}, "angular-translate-handler-log": {"type": "string"}}, "required": ["angular-mocks", "angular-translate-handler-log"]}}, "required": ["name", "homepage", "main", "version", "ignore", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "angular-template-project", "homepage" : "https://github.com/marcorinck/ngStart", "main" : "src/main/css/project.css", "version" : "0.2.1", "ignore" : [".jshintrc", "**/*.txt"], "dependencies" : {"angular" : "1.3.x", "angular-route" : "1.3.x", "almond" : "0.2.9", "requirejs" : "2.1.x", "angular-translate" : "2.4.x", "angular-translate-loader-static-files" : "2.4.x"}, "devDependencies" : {"angular-mocks" : "1.3.x", "angular-translate-handler-log" : "2.4.x"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-route": {"type": "string"}, "almond": {"type": "string"}, "requirejs": {"type": "string"}, "angular-translate": {"type": "string"}, "angular-translate-loader-static-files": {"type": "string"}}, "required": ["angular", "angular-route", "almond", "requirejs", "angular-translate", "angular-translate-loader-static-files"]}, "devDependencies": {"type": "object", "properties": {"angular-mocks": {"type": "string"}, "angular-translate-handler-log": {"type": "string"}}, "required": ["angular-mocks", "angular-translate-handler-log"]}}, "required": ["name", "homepage", "main", "version", "ignore", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"globalDependencies": {"type": "object", "properties": {"classnames": {"type": "string"}, "codemirror": {"type": "string"}, "marked": {"type": "string"}, "q": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["classnames", "codemirror", "marked", "q", "react", "react-dom"]}}, "required": ["globalDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"globalDependencies" : {"classnames" : "registry:dt/classnames#0.0.0+20160316155526", "codemirror" : "registry:dt/codemirror#0.0.0+20160619021621", "marked" : "registry:dt/marked#0.0.0+20160325085301", "q" : "registry:dt/q#0.0.0+20160613154756", "react" : "registry:dt/react#0.14.0+20160829191040", "react-dom" : "registry:dt/react-dom#0.14.0+20160412154040"}} | json_instruct | {"type": "object", "properties": {"globalDependencies": {"type": "object", "properties": {"classnames": {"type": "string"}, "codemirror": {"type": "string"}, "marked": {"type": "string"}, "q": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["classnames", "codemirror", "marked", "q", "react", "react-dom"]}}, "required": ["globalDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"track" : "cpp", "exercise" : "space-age", "id" : "6bbb7f8c151849d280d1c512c12bc7c9", "url" : "https://exercism.org/tracks/cpp/exercises/space-age", "handle" : "captfricasse", "is_requester" : true, "auto_approve" : false} | json_instruct | {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Version": {"type": "string"}, "Names": {"type": "object", "properties": {"ab": {"type": "string"}, "ace": {"type": "string"}, "ach": {"type": "string"}, "anp": {"type": "string"}, "ch": {"type": "string"}, "chn": {"type": "string"}, "cho": {"type": "string"}, "chp": {"type": "string"}, "chy": {"type": "string"}, "cu": {"type": "string"}, "de_AT": {"type": "string"}, "doi": {"type": "string"}, "fr_CA": {"type": "string"}, "or": {"type": "string"}, "rup": {"type": "string"}, "zbl": {"type": "string"}}, "required": ["ab", "ace", "ach", "anp", "ch", "chn", "cho", "chp", "chy", "cu", "de_AT", "doi", "fr_CA", "or", "rup", "zbl"]}}, "required": ["Version", "Names"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Version" : "2.1.8.19", "Names" : {"ab" : "\u0986\u09ac\u0996\u09be\u099c\u09bf\u09af\u09bc\u09be\u09a8", "ace" : "\u0985\u09cd\u09af\u09be\u099a\u09be\u0987\u09a8\u09bf\u099c", "ach" : "\u0986\u0995\u09cb\u09b2\u09bf", "anp" : "\u0986\u0999\u09cd\u0997\u09bf\u0995\u09be", "ch" : "\u099a\u09be\u09ae\u09cb\u09b0\u09cb", "chn" : "\u099a\u09bf\u09a8\u09c1\u0995 \u099c\u09be\u09b0\u09cd\u0997\u09a8", "cho" : "\u099a\u0995\u099f\u09cb\u0993", "chp" : "\u099a\u09bf\u09aa\u09c7\u0993\u09af\u09bc\u09be\u0987\u09af\u09bc\u09be\u09a8", "chy" : "\u099a\u09c7\u09af\u09bc\u09c7\u09a8\u09bf", "cu" : "\u099a\u09be\u09b0\u09cd\u099a \u09b8\u09cd\u09b2\u09be\u09ad\u09bf\u0995", "de_AT" : "\u0985\u09b8\u09cd\u099f\u09cd\u09b0\u09bf\u09af\u09bc\u09be\u09a8 \u099c\u09be\u09b0\u09ae\u09be\u09a8", "doi" : "\u09a1\u09cb\u0997\u09b0\u09bf", "fr_CA" : "\u0995\u09cd\u09af\u09be\u09a8\u09be\u09a1\u09bf\u09af\u09bc\u09be\u09a8 \u09ab\u09b0\u09be\u09b8\u09c0", "or" : "\u0989\u09a1\u09bc\u09bf\u09af\u09bc\u09be", "rup" : "\u0986\u09b0\u09ae\u09c7\u09a8\u09bf\u09af\u09bc\u09be\u09a8", "zbl" : "\u09ac\u09cd\u09b2\u09bf\u09b8\u09b8\u09bf\u09ae\u09cd\u09ac\u09b2\u09b8"}} | json_instruct | {"type": "object", "properties": {"Version": {"type": "string"}, "Names": {"type": "object", "properties": {"ab": {"type": "string"}, "ace": {"type": "string"}, "ach": {"type": "string"}, "anp": {"type": "string"}, "ch": {"type": "string"}, "chn": {"type": "string"}, "cho": {"type": "string"}, "chp": {"type": "string"}, "chy": {"type": "string"}, "cu": {"type": "string"}, "de_AT": {"type": "string"}, "doi": {"type": "string"}, "fr_CA": {"type": "string"}, "or": {"type": "string"}, "rup": {"type": "string"}, "zbl": {"type": "string"}}, "required": ["ab", "ace", "ach", "anp", "ch", "chn", "cho", "chp", "chy", "cu", "de_AT", "doi", "fr_CA", "or", "rup", "zbl"]}}, "required": ["Version", "Names"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"jquery.dirtyforms.js": {"type": "string"}, "jquery.dirtyforms.min.js": {"type": "string"}}, "required": ["jquery.dirtyforms.js", "jquery.dirtyforms.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jquery.dirtyforms.js" : "sha512-/XPK/wjV0+FiE9PNkHnPqTQ8JW1Nbo6aJn8zGFZw93FP1OF7rDYknzXGoJ9Q5R6iOZj9RLpIo82qS4/ElYLi8Q==", "jquery.dirtyforms.min.js" : "sha512-Xj6ODiyINEbVwMjdcgKOxeZ5Sp+nUIe2h9/P5trMkjQUJcLr7ytK9kKeYeV2i9ADjyu9onjfSdCDpd8jLFiI8g=="} | json_instruct | {"type": "object", "properties": {"jquery.dirtyforms.js": {"type": "string"}, "jquery.dirtyforms.min.js": {"type": "string"}}, "required": ["jquery.dirtyforms.js", "jquery.dirtyforms.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"abdomen": {"type": "object", "properties": {"accuracy": {"type": "number"}, "roc_auc": {"type": "number"}, "recall": {"type": "number"}, "precision": {"type": "number"}, "f1_score": {"type": "number"}, "negative_recall": {"type": "number"}, "negative_precision": {"type": "number"}, "negative_f1_score": {"type": "number"}}, "required": ["accuracy", "roc_auc", "recall", "precision", "f1_score", "negative_recall", "negative_precision", "negative_f1_score"]}}, "required": ["abdomen"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"abdomen" : {"accuracy" : 0.67, "roc_auc" : 0.7412390827950601, "recall" : 0.6627565982404692, "precision" : 0.6026666666666667, "f1_score" : 0.6312849162011173, "negative_recall" : 0.6753812636165577, "negative_precision" : 0.7294117647058823, "negative_f1_score" : 0.7013574660633484}} | json_instruct | {"type": "object", "properties": {"abdomen": {"type": "object", "properties": {"accuracy": {"type": "number"}, "roc_auc": {"type": "number"}, "recall": {"type": "number"}, "precision": {"type": "number"}, "f1_score": {"type": "number"}, "negative_recall": {"type": "number"}, "negative_precision": {"type": "number"}, "negative_f1_score": {"type": "number"}}, "required": ["accuracy", "roc_auc", "recall", "precision", "f1_score", "negative_recall", "negative_precision", "negative_f1_score"]}}, "required": ["abdomen"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gulp-concat": {"type": "string"}, "gulp-util": {"type": "string"}, "gulp": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-jade": {"type": "string"}, "gulp-livereload": {"type": "string"}, "tiny-lr": {"type": "string"}, "express": {"type": "string"}, "marked": {"type": "string"}, "gulp-compass": {"type": "string"}, "browserify": {"type": "string"}, "gulp-browserify": {"type": "string"}, "gulp-plumber": {"type": "string"}, "coffeeify": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-minify-css": {"type": "string"}, "gulp-load-plugins": {"type": "string"}}, "required": ["gulp-concat", "gulp-util", "gulp", "gulp-uglify", "gulp-sass", "gulp-jade", "gulp-livereload", "tiny-lr", "express", "marked", "gulp-compass", "browserify", "gulp-browserify", "gulp-plumber", "coffeeify", "gulp-rename", "gulp-minify-css", "gulp-load-plugins"]}}, "required": ["name", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "neptun629", "version" : "1.0.0", "dependencies" : {"gulp-concat" : "~2.1.7", "gulp-util" : "~2.2.12", "gulp" : "^3.5.0", "gulp-uglify" : "~0.1.0", "gulp-sass" : "~0.4.1", "gulp-jade" : "~0.3.0", "gulp-livereload" : "~0.2.0", "tiny-lr" : "0.0.5", "express" : "~3.4.8", "marked" : "~0.3.0", "gulp-compass" : "~1.1.8", "browserify" : "^3.41.0", "gulp-browserify" : "^0.5.0", "gulp-plumber" : "^0.6.2", "coffeeify" : "^0.6.0", "gulp-rename" : "^1.2.0", "gulp-minify-css" : "^0.3.1", "gulp-load-plugins" : "^0.5.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gulp-concat": {"type": "string"}, "gulp-util": {"type": "string"}, "gulp": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-jade": {"type": "string"}, "gulp-livereload": {"type": "string"}, "tiny-lr": {"type": "string"}, "express": {"type": "string"}, "marked": {"type": "string"}, "gulp-compass": {"type": "string"}, "browserify": {"type": "string"}, "gulp-browserify": {"type": "string"}, "gulp-plumber": {"type": "string"}, "coffeeify": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-minify-css": {"type": "string"}, "gulp-load-plugins": {"type": "string"}}, "required": ["gulp-concat", "gulp-util", "gulp", "gulp-uglify", "gulp-sass", "gulp-jade", "gulp-livereload", "tiny-lr", "express", "marked", "gulp-compass", "browserify", "gulp-browserify", "gulp-plumber", "coffeeify", "gulp-rename", "gulp-minify-css", "gulp-load-plugins"]}}, "required": ["name", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : ["Preheat oven to 400 degrees F (200 degrees C).", "Whisk cornstarch and water together in a small bowl until dissolved. Combine soy sauce, sugar, mirin, ginger, garlic, and red pepper flakes together in a saucepan over medium heat until the mixture starts to simmer. Slowly whisk in cornstarch mixture. Bring to a boil; reduce heat to medium-low, and simmer until thickened, stirring often, about 10 minutes.", "Pat chicken dry with paper towels; arrange in a baking dish. Pour sauce over chicken breasts, coating all sides.", "Bake chicken breasts in the preheated oven until no longer pink in the center and the juices run clear, 25 to 30 minutes. An instant-read thermometer inserted into the center should read at least 165 degrees F (75 degrees C)."], "ingredients" : ["2 tablespoons cornstarch", "2 tablespoons water", "1 cup low-sodium soy sauce", "1/2 cup white sugar", "1/4 cup mirin (Japanese sweet wine)", "4 teaspoons grated fresh ginger", "3 cloves garlic, minced", "1/4 teaspoon red pepper flakes", "4 skinless, boneless chicken breast halves"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Oven Baked Chicken Teriyaki", "url" : "http://allrecipes.com/recipe/228872/oven-baked-chicken-teriyaki/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"redis": {"type": "string"}}, "required": ["redis"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"redis" : "^2.8.0"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"redis": {"type": "string"}}, "required": ["redis"]}}, "required": ["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"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1225020006", "district_id" : "1225020", "name" : "LOLOWAU"} | 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 an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 141792, "info" : {"name" : "Mastodon - Columns redesign", "description" : "Full width columns and notifications on the rightest column", "additionalInfo" : "Add your instance to the domain list in the css to enable this style on your instance", "format" : "uso", "category" : "mamot", "createdAt" : "2017-04-26T12:23:41.000Z", "updatedAt" : "2017-04-26T12:23:41.000Z", "license" : "CC-BY-SA-4.0", "author" : {"id" : 418459, "name" : "luxcem"}}, "stats" : {"installs" : {"total" : 63, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "141792_after.jpeg", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "/**\r\n Add your instance to the domain list\r\n**/\r\n\r\n@-moz-document domain(\"mastodon.social\"),\r\ndomain(\"mastodon.xyz\"),\r\ndomain(\"mamot.fr\") {\r\n .column {\r\n min-width: 300px;\r\n width: 35%;\r\n }\r\n .column:nth-last-child(2) {\r\n order: 1;\r\n }\r\n .drawer,\r\n .column:nth-last-child(2) {\r\n min-width: 250px;\r\n width: 15%;\r\n }\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"image_path": {"type": "string"}, "roi": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "image_size": {"type": "array", "items": {"type": "integer"}}, "label": {"type": "string"}}, "required": ["image_path", "roi", "image_size", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"image_path" : "C:\\Users\\HP\\Desktop\\Projects\\Python\\imgs\\tree.jpg", "roi" : [[300, 100, 400, 200], [100, 200, 200, 300], [200, 100, 300, 200], [100, 100, 200, 200], [300, 200, 400, 300], [200, 200, 300, 300]], "image_size" : [340, 546], "label" : "tree"} | json_instruct | {"type": "object", "properties": {"image_path": {"type": "string"}, "roi": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "image_size": {"type": "array", "items": {"type": "integer"}}, "label": {"type": "string"}}, "required": ["image_path", "roi", "image_size", "label"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : "6303070009", "district_id" : "6303070", "name" : "SUNGAI ASAM"} | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"transactionDate": {"type": "string"}, "produceNumber": {"type": "string"}, "produceName": {"type": "string"}, "marketNumber": {"type": "string"}, "marketName": {"type": "string"}, "topPrice": {"type": "string"}, "middlePrice": {"type": "string"}, "lowPrice": {"type": "string"}, "averagePrice": {"type": "string"}, "transactionAmount": {"type": "string"}, "number": {"type": "string"}, "main_category": {"type": "string"}, "sub_category": {"type": "string"}}, "required": ["transactionDate", "produceNumber", "produceName", "marketNumber", "marketName", "topPrice", "middlePrice", "lowPrice", "averagePrice", "transactionAmount", "number", "main_category", "sub_category"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"transactionDate" : "105.03.09", "produceNumber" : "LC1", "produceName" : "\u5305\u5fc3\u767d\u83dc-\u5305\u767d", "marketNumber" : "512", "marketName" : "\u6c38\u9756\u9109", "topPrice" : "25", "middlePrice" : "14", "lowPrice" : "10", "averagePrice" : "14", "transactionAmount" : "9510", "number" : "LC1", "main_category" : "vegetable", "sub_category" : "leaf"}, {"transactionDate" : "105.03.09", "produceNumber" : "FB1", "produceName" : "\u82b1\u6930\u83dc-\u9752\u6897", "marketNumber" : "512", "marketName" : "\u6c38\u9756\u9109", "topPrice" : "25", "middlePrice" : "21", "lowPrice" : "15", "averagePrice" : "21.2", "transactionAmount" : "21843", "number" : "FB1", "main_category" : "vegetable", "sub_category" : "flower_fruit"}, {"transactionDate" : "105.03.09", "produceNumber" : "LA1", "produceName" : "\u7518\u85cd-\u521d\u79cb", "marketNumber" : "512", "marketName" : "\u6c38\u9756\u9109", "topPrice" : "33", "middlePrice" : "22.5", "lowPrice" : "20", "averagePrice" : "22.4", "transactionAmount" : "5952", "number" : "LA1", "main_category" : "vegetable", "sub_category" : "leaf"}, {"transactionDate" : "105.03.09", "produceNumber" : "FC2", "produceName" : "\u80e1\u74dc-\u6539\u826f\u7a2e", "marketNumber" : "512", "marketName" : "\u6c38\u9756\u9109", "topPrice" : "50", "middlePrice" : "24", "lowPrice" : "20", "averagePrice" : "24.1", "transactionAmount" : "560", "number" : "FC2", "main_category" : "vegetable", "sub_category" : "flower_fruit"}, {"transactionDate" : "105.03.09", "produceNumber" : "SS1", "produceName" : "\u5927\u5fc3\u83dc-\u5e36\u8449", "marketNumber" : "512", "marketName" : "\u6c38\u9756\u9109", "topPrice" : "37", "middlePrice" : "25.5", "lowPrice" : "15", "averagePrice" : "25.5", "transactionAmount" : "12157", "number" : "SS1", "main_category" : "vegetable", "sub_category" : "root"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"transactionDate": {"type": "string"}, "produceNumber": {"type": "string"}, "produceName": {"type": "string"}, "marketNumber": {"type": "string"}, "marketName": {"type": "string"}, "topPrice": {"type": "string"}, "middlePrice": {"type": "string"}, "lowPrice": {"type": "string"}, "averagePrice": {"type": "string"}, "transactionAmount": {"type": "string"}, "number": {"type": "string"}, "main_category": {"type": "string"}, "sub_category": {"type": "string"}}, "required": ["transactionDate", "produceNumber", "produceName", "marketNumber", "marketName", "topPrice", "middlePrice", "lowPrice", "averagePrice", "transactionAmount", "number", "main_category", "sub_category"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"age=0": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=1": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=2": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=3": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=4": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=5": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=6": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=7": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["age=0", "age=1", "age=2", "age=3", "age=4", "age=5", "age=6", "age=7"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"age=0" : {"model" : "dmn_flax:block/flax0"}, "age=1" : {"model" : "dmn_flax:block/flax0"}, "age=2" : {"model" : "dmn_flax:block/flax2"}, "age=3" : {"model" : "dmn_flax:block/flax2"}, "age=4" : {"model" : "dmn_flax:block/flax4"}, "age=5" : {"model" : "dmn_flax:block/flax4"}, "age=6" : {"model" : "dmn_flax:block/flax6"}, "age=7" : {"model" : "dmn_flax:block/flax7"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"age=0": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=1": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=2": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=3": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=4": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=5": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=6": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}, "age=7": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": ["age=0", "age=1", "age=2", "age=3", "age=4", "age=5", "age=6", "age=7"]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["361126108200", "\u6e2f\u53e3\u6751\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["361126108201", "\u4e0a\u574a\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["361126108202", "\u4e1c\u6e90\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["361126108203", "\u5c0f\u5e97\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["361126108208", "\u933e\u5c71\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["361126108209", "\u4e0a\u5751\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["361126108210", "\u4ed9\u53f0\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["361126108211", "\u56ed\u7af9\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "Cradle", "definitions" : ["Hold gently and protectively.", "Be the place of origin of.", "Place (a telephone receiver) in its cradle."], "parts-of-speech" : "Verb"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "priority": {"type": "integer"}}, "required": ["url", "priority"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"url" : "http://doesNotExist.boldtech.co", "priority" : 1}, {"url" : "http://boldtech.co", "priority" : 7}, {"url" : "http://offline.boldtech.co", "priority" : 2}, {"url" : "http://google.com", "priority" : 4}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "priority": {"type": "integer"}}, "required": ["url", "priority"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:watch": {"type": "string"}, "test:coverage": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["test", "test:watch", "test:coverage", "prepublish"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "devDependencies": {"type": "object", "properties": {"ava": {"type": "string"}, "babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-plugin-add-module-exports": {"type": "string"}, "babel-preset-es2015-node4": {"type": "string"}, "babel-preset-stage-3": {"type": "string"}, "babel-register": {"type": "string"}, "nyc": {"type": "string"}}, "required": ["ava", "babel-cli", "babel-core", "babel-plugin-add-module-exports", "babel-preset-es2015-node4", "babel-preset-stage-3", "babel-register", "nyc"]}, "ava": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "source": {"type": "array", "items": {"type": "string"}}, "tap": {"type": "boolean"}, "require": {"type": "array", "items": {"type": "string"}}, "babel": {"type": "string"}}, "required": ["files", "source", "tap", "require", "babel"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "tags", "author", "license", "bugs", "devDependencies", "ava"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "babel-plugin-remove-module-hot", "version" : "2.0.0", "description" : "Remove `module.hot` conditions", "main" : "index.js", "scripts" : {"test" : "$(npm bin)/ava", "test:watch" : "$(npm bin)/ava --watch", "test:coverage" : "$(npm bin)/nyc npm test", "prepublish" : "$(npm bin)/babel -o index.js src/index.js"}, "repository" : {"type" : "git", "url" : "https://github.com/demiazz/babel-plugin-remove-module-hot"}, "keywords" : ["babel", "babel-plugin"], "tags" : ["babel", "babel-plugin"], "author" : "Alexey Plutalov <[email protected]>", "license" : "MIT", "bugs" : {"url" : "https://github.com/demiazz/babel-plugin-remove-module-hot/issues"}, "devDependencies" : {"ava" : "^0.14.0", "babel-cli" : "^6.8.0", "babel-core" : "^6.8.0", "babel-plugin-add-module-exports" : "^0.2.1", "babel-preset-es2015-node4" : "^2.1.0", "babel-preset-stage-3" : "^6.5.0", "babel-register" : "^6.8.0", "nyc" : "^6.4.4"}, "ava" : {"files" : ["test/index.js"], "source" : ["src/**/*.js"], "tap" : true, "require" : ["babel-register"], "babel" : "inherit"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:watch": {"type": "string"}, "test:coverage": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["test", "test:watch", "test:coverage", "prepublish"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "devDependencies": {"type": "object", "properties": {"ava": {"type": "string"}, "babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-plugin-add-module-exports": {"type": "string"}, "babel-preset-es2015-node4": {"type": "string"}, "babel-preset-stage-3": {"type": "string"}, "babel-register": {"type": "string"}, "nyc": {"type": "string"}}, "required": ["ava", "babel-cli", "babel-core", "babel-plugin-add-module-exports", "babel-preset-es2015-node4", "babel-preset-stage-3", "babel-register", "nyc"]}, "ava": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "source": {"type": "array", "items": {"type": "string"}}, "tap": {"type": "boolean"}, "require": {"type": "array", "items": {"type": "string"}}, "babel": {"type": "string"}}, "required": ["files", "source", "tap", "require", "babel"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "tags", "author", "license", "bugs", "devDependencies", "ava"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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.59352887, "width" : 0.062119246, "ymin" : 0.6673178, "height" : 0.07764906}, "relativeKeypoints" : [{"y" : 0.67229193, "x" : 0.6231654}, {"y" : 0.73349535, "x" : 0.6290234}, {"y" : 0.7333828, "x" : 0.62060297}, {"y" : 0.7300232, "x" : 0.61355567}, {"y" : 0.7246798, "x" : 0.6076356}, {"y" : 0.6804159, "x" : 0.63375145}, {"y" : 0.7100753, "x" : 0.6380116}], "format" : "RELATIVE_BOUNDING_BOX"}, "score" : [0.99346113], "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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-clean-css": {"type": "string"}, "gulp-uglify": {"type": "string"}}, "required": ["gulp", "gulp-rename", "gulp-clean-css", "gulp-uglify"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "author", "version", "description", "dependencies", "license", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Parallaxer", "author" : "BOOMER74", "version" : "1.0.0", "description" : "Simple parallax scroll plugin for jQuery", "dependencies" : {"gulp" : "3.9.*", "gulp-rename" : "1.2.*", "gulp-clean-css" : "2.0.*", "gulp-uglify" : "1.5.*"}, "license" : "MIT", "repository" : {"type" : "git", "url" : "BOOMER74/Paralaxer"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-clean-css": {"type": "string"}, "gulp-uglify": {"type": "string"}}, "required": ["gulp", "gulp-rename", "gulp-clean-css", "gulp-uglify"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "author", "version", "description", "dependencies", "license", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Ounans", "dpt" : "Jura", "inscrits" : 246, "abs" : 53, "votants" : 193, "blancs" : 14, "nuls" : 2, "exp" : 177, "res" : [{"panneau" : "1", "voix" : 95}, {"panneau" : "2", "voix" : 82}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "conquest:block/red_diamond_slate_shingles"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$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" : "specialnetherite:block/nether_crystal_block"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"hide-items": {"type": "array", "items": {"type": "object", "properties": {"UnitTypeDesc": {"type": "string"}, "Header": {"type": "object", "properties": {"He": {"type": "string"}, "En": {"type": "string"}}, "required": ["He", "En"]}}, "required": ["UnitTypeDesc", "Header"]}}}, "required": ["hide-items"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hide-items" : [{"UnitTypeDesc" : "Personality", "Header" : {"He" : "\u05e8\u05d9\u05d9\u05df, \u05d0\u05e8\u05de\u05d0\u05df", "En" : "Rein, Armand"}}, {"UnitTypeDesc" : "Personality", "Header" : {"He" : "\u05dc\u05e1\u05dc\u05d0\u05d5, \u05d5\u05d5\u05dc\u05e3", "En" : "Leslau, Wolf"}}]} | json_instruct | {"type": "object", "properties": {"hide-items": {"type": "array", "items": {"type": "object", "properties": {"UnitTypeDesc": {"type": "string"}, "Header": {"type": "object", "properties": {"He": {"type": "string"}, "En": {"type": "string"}}, "required": ["He", "En"]}}, "required": ["UnitTypeDesc", "Header"]}}}, "required": ["hide-items"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"variables": {"type": "object", "properties": {"aws_access_key": {"type": "string"}, "aws_secret_key": {"type": "string"}, "aws_region": {"type": "string"}, "subnet_id": {"type": "string"}, "source_ami": {"type": "string"}, "ami_users": {"type": "string"}, "ssh_username": {"type": "string"}}, "required": ["aws_access_key", "aws_secret_key", "aws_region", "subnet_id", "source_ami", "ami_users", "ssh_username"]}, "builders": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "ami_users": {"type": "string"}, "access_key": {"type": "string"}, "secret_key": {"type": "string"}, "region": {"type": "string"}, "instance_type": {"type": "string"}, "subnet_id": {"type": "string"}, "source_ami": {"type": "string"}, "ssh_username": {"type": "string"}, "ami_name": {"type": "string"}, "ami_description": {"type": "string"}, "launch_block_device_mappings": {"type": "array", "items": {"type": "object", "properties": {"device_name": {"type": "string"}, "volume_size": {"type": "integer"}, "volume_type": {"type": "string"}, "delete_on_termination": {"type": "boolean"}}, "required": ["device_name", "volume_size", "volume_type", "delete_on_termination"]}}}, "required": ["type", "ami_users", "access_key", "secret_key", "region", "instance_type", "subnet_id", "source_ami", "ssh_username", "ami_name", "ami_description", "launch_block_device_mappings"]}}, "provisioners": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "environment_vars": {"type": "array", "items": {"type": "string"}}, "script": {"type": "string"}}, "required": ["type", "environment_vars", "script"]}}}, "required": ["variables", "builders", "provisioners"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variables" : {"aws_access_key" : "", "aws_secret_key" : "", "aws_region" : "", "subnet_id" : "", "source_ami" : "", "ami_users" : "", "ssh_username" : "ubuntu"}, "builders" : [{"type" : "amazon-ebs", "ami_users" : "{{user `ami_users`}}", "access_key" : "{{user `aws_access_key`}}", "secret_key" : "{{user `aws_secret_key`}}", "region" : "{{user `aws_region`}}", "instance_type" : "t2.micro", "subnet_id" : "{{user `subnet_id`}}", "source_ami" : "{{user `source_ami`}}", "ssh_username" : "{{user `ssh_username`}}", "ami_name" : "csye6225_ami_goel.sar-{{timestamp}}", "ami_description" : "Ubuntu AMI for CSYE 6225 - Spring 2020", "launch_block_device_mappings" : [{"device_name" : "/dev/sda1", "volume_size" : 8, "volume_type" : "gp2", "delete_on_termination" : true}]}], "provisioners" : [{"type" : "shell", "environment_vars" : ["AWSREGION={{user `aws_region`}}"], "script" : "custom-installation.sh"}]} | json_instruct | {"type": "object", "properties": {"variables": {"type": "object", "properties": {"aws_access_key": {"type": "string"}, "aws_secret_key": {"type": "string"}, "aws_region": {"type": "string"}, "subnet_id": {"type": "string"}, "source_ami": {"type": "string"}, "ami_users": {"type": "string"}, "ssh_username": {"type": "string"}}, "required": ["aws_access_key", "aws_secret_key", "aws_region", "subnet_id", "source_ami", "ami_users", "ssh_username"]}, "builders": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "ami_users": {"type": "string"}, "access_key": {"type": "string"}, "secret_key": {"type": "string"}, "region": {"type": "string"}, "instance_type": {"type": "string"}, "subnet_id": {"type": "string"}, "source_ami": {"type": "string"}, "ssh_username": {"type": "string"}, "ami_name": {"type": "string"}, "ami_description": {"type": "string"}, "launch_block_device_mappings": {"type": "array", "items": {"type": "object", "properties": {"device_name": {"type": "string"}, "volume_size": {"type": "integer"}, "volume_type": {"type": "string"}, "delete_on_termination": {"type": "boolean"}}, "required": ["device_name", "volume_size", "volume_type", "delete_on_termination"]}}}, "required": ["type", "ami_users", "access_key", "secret_key", "region", "instance_type", "subnet_id", "source_ami", "ssh_username", "ami_name", "ami_description", "launch_block_device_mappings"]}}, "provisioners": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "environment_vars": {"type": "array", "items": {"type": "string"}}, "script": {"type": "string"}}, "required": ["type", "environment_vars", "script"]}}}, "required": ["variables", "builders", "provisioners"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"\u2019e\u1e6f\u00b7\u2018\u0103\u00b7qa\u00b7r\u0101h": {"type": "object", "properties": {"dan.7.8|13": {"type": "array", "items": {"type": "string"}}}, "required": ["dan.7.8|13"]}}, "required": ["\u2019e\u1e6f\u00b7\u2018\u0103\u00b7qa\u00b7r\u0101h"]}, "meanings": {"type": "object", "properties": {"pluck": {"type": "integer"}}, "required": ["pluck"]}, "meaningsCount": {"type": "integer"}, "occurences": {"type": "integer"}}, "required": ["pos", "translits", "meanings", "meaningsCount", "occurences"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pos" : "v", "translits" : {"\u2019e\u1e6f\u00b7\u2018\u0103\u00b7qa\u00b7r\u0101h" : {"dan.7.8|13" : ["first", "were plucked out by the roots\u2013", "of"]}}, "meanings" : {"pluck" : 1}, "meaningsCount" : 1, "occurences" : 1} | json_instruct | {"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"\u2019e\u1e6f\u00b7\u2018\u0103\u00b7qa\u00b7r\u0101h": {"type": "object", "properties": {"dan.7.8|13": {"type": "array", "items": {"type": "string"}}}, "required": ["dan.7.8|13"]}}, "required": ["\u2019e\u1e6f\u00b7\u2018\u0103\u00b7qa\u00b7r\u0101h"]}, "meanings": {"type": "object", "properties": {"pluck": {"type": "integer"}}, "required": ["pluck"]}, "meaningsCount": {"type": "integer"}, "occurences": {"type": "integer"}}, "required": ["pos", "translits", "meanings", "meaningsCount", "occurences"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationGroupId" : 2600605, "stations" : ["2600605"]} | json_instruct | {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$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": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"package" : "lorma", "downloads" : 3900, "count" : 3551}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"digest": {"type": "string"}, "digestAlgorithm": {"type": "string"}, "properties": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "name": {"type": "string"}, "value": {"type": "string"}}, "required": ["source", "name", "value"]}}, "constructs": {"type": "array", "items": {"type": "object", "properties": {"lang": {"type": "string"}, "type": {"type": "string"}, "qname": {"type": "string"}}, "required": ["lang", "type", "qname"]}}, "libraryId": {"type": "object", "properties": {"group": {"type": "string"}, "artifact": {"type": "string"}, "version": {"type": "string"}}, "required": ["group", "artifact", "version"]}, "wellknownDigest": {"type": "boolean"}}, "required": ["digest", "digestAlgorithm", "properties", "constructs", "libraryId", "wellknownDigest"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"digest" : "sha1", "digestAlgorithm" : "SHA1", "properties" : [{"source" : "JAVA_MANIFEST", "name" : "entry", "value" : "value"}], "constructs" : [{"lang" : "JAVA", "type" : "CLAS", "qname" : "org.lib.Foo"}, {"lang" : "JAVA", "type" : "CONS", "qname" : "org.lib.Foo()"}, {"lang" : "JAVA", "type" : "METH", "qname" : "org.lib.Foo.bar()"}], "libraryId" : {"group" : "org.lib", "artifact" : "foo", "version" : "1.0.0"}, "wellknownDigest" : true} | json_instruct | {"type": "object", "properties": {"digest": {"type": "string"}, "digestAlgorithm": {"type": "string"}, "properties": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "name": {"type": "string"}, "value": {"type": "string"}}, "required": ["source", "name", "value"]}}, "constructs": {"type": "array", "items": {"type": "object", "properties": {"lang": {"type": "string"}, "type": {"type": "string"}, "qname": {"type": "string"}}, "required": ["lang", "type", "qname"]}}, "libraryId": {"type": "object", "properties": {"group": {"type": "string"}, "artifact": {"type": "string"}, "version": {"type": "string"}}, "required": ["group", "artifact", "version"]}, "wellknownDigest": {"type": "boolean"}}, "required": ["digest", "digestAlgorithm", "properties", "constructs", "libraryId", "wellknownDigest"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Design research as explanation: perceptions in the field.", "fields" : ["design research", "special case", "natural science", "design science", "philosophy of science"], "abstract" : "We report results from interviews with HCI design researchers on their perceptions of how their research relates to the more traditional scientific goal of providing explanations. Theories of explanation are prominent in the physical and natural sciences, psychology, the social sciences, and engineering. Little work though has so-far addressed the special case of how results from reflective design of interactive systems can help provide explanations. We found conceptions of explanation in design research to be broader and more inclusive than those commonly found in the philosophy of science. We synthesized concepts from the interviews into a framework which may help researchers understand how their contributions relate to both classical and emergent conceptions of explanation.", "citation" : "Citations (8)", "departments" : ["Pennsylvania State University", "Pennsylvania State University", "Pennsylvania State University", "Pennsylvania State University", "Pennsylvania State University"], "authors" : ["Steven R. Haynes.....http://dblp.org/pers/hd/h/Haynes:Steven_R=", "John M. Carroll.....http://dblp.org/pers/hd/c/Carroll:John_M=", "Thomas George Kannampallil.....http://dblp.org/pers/hd/k/Kannampallil:Thomas_George", "Lu Xiao.....http://dblp.org/pers/hd/x/Xiao_0002:Lu", "Paula M. Bach.....http://dblp.org/pers/hd/b/Bach:Paula_M="], "conf" : "chi", "year" : "2009", "pages" : 10} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.