input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"templmd5": {"type": "string"}, "number": {"type": "string"}, "title": {"type": "string"}, "BACKCOLOR": {"type": "string"}, "FRONTCOLOR": {"type": "string"}, "filemd5": {"type": "string"}}, "required": ["templmd5", "number", "title", "BACKCOLOR", "FRONTCOLOR", "filemd5"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"templmd5" : "523d4615240572e66d3c9373d01f37cd", "number" : "1963", "title" : "URGENTE cercasi maker, fabber e/o aziende #Sicilia per realizzazione di dispositivi medici", "BACKCOLOR" : "black", "FRONTCOLOR" : "white", "filemd5" : "54972eb1005d06cf7e93bd9e56f68d13"} | json_instruct | {"type": "object", "properties": {"templmd5": {"type": "string"}, "number": {"type": "string"}, "title": {"type": "string"}, "BACKCOLOR": {"type": "string"}, "FRONTCOLOR": {"type": "string"}, "filemd5": {"type": "string"}}, "required": ["templmd5", "number", "title", "BACKCOLOR", "FRONTCOLOR", "filemd5"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"top": {"type": "string"}, "bottom": {"type": "string"}}, "required": ["top", "bottom"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "minecraft:block/door_bottom_rh", "textures" : {"top" : "tdd:block/sculk_brick_door_top", "bottom" : "tdd:block/sculk_brick_door_bottom"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"top": {"type": "string"}, "bottom": {"type": "string"}}, "required": ["top", "bottom"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includePath": {"type": "array", "items": {"type": "string"}}, "forcedInclude": {"type": "array", "items": {}}, "defines": {"type": "array", "items": {"type": "string"}}, "intelliSenseMode": {"type": "string"}, "compilerPath": {"type": "string"}, "cStandard": {"type": "string"}, "cppStandard": {"type": "string"}}, "required": ["name", "includePath", "forcedInclude", "defines", "intelliSenseMode", "compilerPath", "cStandard", "cppStandard"]}}, "version": {"type": "integer"}}, "required": ["configurations", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"configurations" : [{"name" : "Win32", "includePath" : ["C:\\Users\\wimidev\\AppData\\Local\\Arduino15\\packages\\esp8266\\tools\\**", "E:\\user\\doc\\Arduino\\libraries\\**", "J:\\program\\Arduino\\libraries\\**", "C:\\Users\\wimidev\\AppData\\Local\\Arduino15\\packages\\esp8266\\hardware\\esp8266\\2.6.3\\**"], "forcedInclude" : [], "defines" : ["USBCON"], "intelliSenseMode" : "msvc-x64", "compilerPath" : "J:/program/vs2019_community/VC/Tools/MSVC/14.27.29110/bin/Hostx64/x64/cl.exe", "cStandard" : "c17", "cppStandard" : "c++17"}], "version" : 4} | json_instruct | {"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includePath": {"type": "array", "items": {"type": "string"}}, "forcedInclude": {"type": "array", "items": {}}, "defines": {"type": "array", "items": {"type": "string"}}, "intelliSenseMode": {"type": "string"}, "compilerPath": {"type": "string"}, "cStandard": {"type": "string"}, "cppStandard": {"type": "string"}}, "required": ["name", "includePath", "forcedInclude", "defines", "intelliSenseMode", "compilerPath", "cStandard", "cppStandard"]}}, "version": {"type": "integer"}}, "required": ["configurations", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"isPrimitive": {"type": "boolean"}, "value": {"type": "number"}}, "required": ["isPrimitive", "value"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"isPrimitive" : true, "value" : 5e-324}, {"isPrimitive" : true, "value" : 1.7976931348623157e+308}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"isPrimitive": {"type": "boolean"}, "value": {"type": "number"}}, "required": ["isPrimitive", "value"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"network/speedtest": {"type": "object", "properties": {"title": {"type": "string"}, "view": {"type": "string"}, "index": {"type": "integer"}}, "required": ["title", "view", "index"]}}, "required": ["network/speedtest"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"network/speedtest" : {"title" : "Speedtest", "view" : "vuci-app-speedtest", "index" : 1254}} | json_instruct | {"type": "object", "properties": {"network/speedtest": {"type": "object", "properties": {"title": {"type": "string"}, "view": {"type": "string"}, "index": {"type": "integer"}}, "required": ["title", "view", "index"]}}, "required": ["network/speedtest"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"metric": {"type": "object", "properties": {"name": {"type": "string"}, "kind": {"type": "string"}, "set": {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"]}}, "required": ["name", "kind", "set"]}}, "required": ["metric"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"metric" : {"name" : "y", "kind" : "incremental", "set" : {"values" : [")]<\u0098k\\m;\ufd1f,:\ub159\u8c5c\u2020\u6758:*\u0082\u9af3Jf\u201e\u0097,&;\u00a4;kq\t\u00a0\u202d\t\ud88e\udeba\u204d\uf895\t\f!3\u009a\u008f\u2038\u0081\udbbf\udfff\u00a0\u0019A,\u3000$#\ufffd\u200a Z\t!\udbf6\udf6a`\u000e\u2065j\u20214L\u0084i]4\udb83\udca5V\u009b\n\u0013\u0096{\u009fh]\u008f(O|(~\udb21\udcef\u00074&\u9380\udb32\udcb7^w'6$\fs/&\u070f\u00a7\u00aa2}#\u008f\ubd92\u0095\n=}\u0097\u433a\u0095\u0002", "+$u\u0085{\uc8b1\u2b86\u0084o\u008f\n-\u001a\udb32\udea29\u007f\u00845\u0003'", "Y8\u0090J\ud907\udf6b\ud9ef\udd90\u009eMd\u200d0\u00920 \u0085\u928ea\u88e0\u0019l&\u2ebe>\ud834\udd73\u0014\u0097\u00a5G.:_\u000b\n\u009a6\u0084_]q\u0015\n$\u00a9\udb94\udfa9\uda30\udebd(@\u001e\u2040`\u0015]\u0017\ucf4b\uf3f6\u0601\u00a0\r\u0089\u30eb\u061c\ub605\uffff\u0017\u00a1n\u001c,b1\u009d&\u009e%\"\u000fb.;^\u00a01\u205a^\ub4d4=\ud88a\udf50(\u0014\u9f7a\u180e\u00a3\udb80\udc00\u0086\u009f\ufff6 k\u93d1`\u009f\u008fII", "\u1f22R\u00a7I_\u00a0\u2016H\u0cb0\u0092\u0089\u008f_\u4cd5\u0015\ud9f6\udfeb\u30ee!/R\u0082\u0096\u0605}"]}}} | json_instruct | {"type": "object", "properties": {"metric": {"type": "object", "properties": {"name": {"type": "string"}, "kind": {"type": "string"}, "set": {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"]}}, "required": ["name", "kind", "set"]}}, "required": ["metric"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"c": {"type": "string"}}, "required": ["c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"c" : "@import!secrets.json#xxx"} | json_instruct | {"type": "object", "properties": {"c": {"type": "string"}}, "required": ["c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"239860": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["239860"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"239860" : {"success" : false}} | json_instruct | {"type": "object", "properties": {"239860": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["239860"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"carlpan": {"type": "string"}}, "required": ["carlpan"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "YTPAccessoryInputView", "version" : "1.1.1", "summary" : "A category that adds accessory input view to custom input tool bar.", "description" : "YTPAccessoryInputView is a simple library for iOS. If you ever wanted to add extra functionalities to your \nchat or comment page with your custom input tool bar, for example, adding a scroll view with custom stickers or \nsending photos or location info. This library can easily allow toggle between keyboard and the accessory input view. \nWith this library, you no longer need to rely on UIAlertController to create action sheet for extra functionalities.", "homepage" : "https://github.com/carlpan/YTPAccessoryInputView", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"carlpan" : "[email protected]"}, "source" : {"git" : "https://github.com/carlpan/YTPAccessoryInputView.git", "tag" : "1.1.1"}, "platforms" : {"ios" : "10.0"}, "source_files" : "YTPAccessoryInputView/Classes/**/*"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"carlpan": {"type": "string"}}, "required": ["carlpan"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id_6860": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_6860"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_6860" : {"publicdate" : "2012-08-30 01:30:23", "title" : "The Alhambra: A Series of Tales and Sketches of the Moors and Spaniards"}} | json_instruct | {"type": "object", "properties": {"id_6860": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_6860"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authors" : [{"author" : "Tessei Kuruma"}, {"author" : "Tohru Tanigawa"}, {"author" : "Yasue Uchida"}, {"author" : "Ogawa Tetsuya"}, {"author" : "Hiromi Ueda"}], "doi" : "10.1155/2017/4793786", "publication_date" : "2017-07-19", "id" : "EN113951", "url" : "https://pubmed.ncbi.nlm.nih.gov/28717526", "source" : "Case reports in otolaryngology", "source_url" : "", "licence" : "CC BY", "language" : "en", "type" : "pubmed", "description" : "", "text" : "We report herein a case involving a large, aggressive cholesterol granuloma of the middle ear that eroded the middle cranial fossa. A 64-year-old woman presented with pain in the left ear and hearing loss. Cholesterol granuloma was finally diagnosed from diffusion-weighted imaging, and cortical mastoidectomy was performed with canal wall down tympanoplasty type III. Recovery was uneventful recovery and the patient well at the 3-year follow-up."} | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"commandString": {"type": "string"}, "queryStart": {"type": "string"}, "queryEnd": {"type": "string"}, "iteration": {"type": "integer"}, "startTime": {"type": "string"}, "currentTimeString": {"type": "string"}, "endTime": {"type": "string"}, "result": {"type": "object", "properties": {"params": {"type": "string"}, "lastAssestValue": {"type": "number"}, "profit": {"type": "integer"}, "assetCapital": {"type": "integer"}, "endBalance": {"type": "integer"}, "buyHold": {"type": "integer"}, "vsBuyHold": {"type": "null"}, "wins": {"type": "integer"}, "losses": {"type": "integer"}, "errorRate": {"type": "null"}, "days": {"type": "integer"}, "period_length": {"type": "string"}, "min_periods": {"type": "integer"}, "markdown_buy_pct": {"type": "number"}, "markup_sell_pct": {"type": "number"}, "order_type": {"type": "string"}, "wlRatio": {"type": "string"}, "roi": {"type": "integer"}, "selector": {"type": "string"}, "strategy": {"type": "string"}, "frequency": {"type": "integer"}}, "required": ["params", "lastAssestValue", "profit", "assetCapital", "endBalance", "buyHold", "vsBuyHold", "wins", "losses", "errorRate", "days", "period_length", "min_periods", "markdown_buy_pct", "markup_sell_pct", "order_type", "wlRatio", "roi", "selector", "strategy", "frequency"]}}, "required": ["commandString", "queryStart", "queryEnd", "iteration", "startTime", "currentTimeString", "endTime", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"commandString" : "zenbot.bat sim binanceus.BTC-USD --period_length=119m --markdown_buy_pct=-0.2555772220116106 --markup_sell_pct=0.22493296367785742 --order_type=maker --profit_stop_enable_pct=0 --profit_stop_pct=4 --alpha=0.05 --backtester_generation=65 --strategy=ehlers_trend --days=5 --currency_capital=450 --noStataSave=false --generateLaunch --runGenerations=1 --filename=none", "queryStart" : "2020-09-27T16:17:44.000Z", "queryEnd" : "2020-10-02T23:20:39.867Z", "iteration" : 65, "startTime" : "2020-10-02T23:20:39.897Z", "currentTimeString" : "2020-10-02 19:14:59 ", "endTime" : "2020-10-02T23:20:49.797Z", "result" : {"params" : "module.exports = {\"alpha\":0.05,\"avg_slippage_pct\":0.045,\"backtester_generation\":65,\"buy_stop_pct\":0,\"markdown_buy_pct\":-0.2555772220116106,\"markup_sell_pct\":0.22493296367785742,\"max_buy_loss_pct\":0,\"max_sell_loss_pct\":0,\"max_slippage_pct\":5,\"min_periods\":1,\"noStataSave\":\"false\",\"order_poll_time\":5000,\"order_type\":\"maker\",\"period\":\"119m\",\"period_length\":\"119m\",\"price_source\":\"HAohlc4\",\"profit_stop_enable_pct\":0,\"profit_stop_pct\":4,\"quarentine_time\":10,\"rsi_periods\":14,\"runGenerations\":1,\"selector\":\"binanceus.BTC-USD\",\"sell_stop_pct\":0,\"show_options\":true,\"strategy\":\"ehlers_trend\",\"symmetrical\":false,\"start\":\"202009262000\"}", "lastAssestValue" : 10567.39, "profit" : 0, "assetCapital" : 0, "endBalance" : 0, "buyHold" : 0, "vsBuyHold" : null, "wins" : 0, "losses" : 0, "errorRate" : null, "days" : 5, "period_length" : "119m", "min_periods" : 1, "markdown_buy_pct" : -0.2555772220116106, "markup_sell_pct" : 0.22493296367785742, "order_type" : "maker", "wlRatio" : "Infinity", "roi" : -100, "selector" : "binanceus.BTC-USD", "strategy" : "ehlers_trend", "frequency" : 0}} | json_instruct | {"type": "object", "properties": {"commandString": {"type": "string"}, "queryStart": {"type": "string"}, "queryEnd": {"type": "string"}, "iteration": {"type": "integer"}, "startTime": {"type": "string"}, "currentTimeString": {"type": "string"}, "endTime": {"type": "string"}, "result": {"type": "object", "properties": {"params": {"type": "string"}, "lastAssestValue": {"type": "number"}, "profit": {"type": "integer"}, "assetCapital": {"type": "integer"}, "endBalance": {"type": "integer"}, "buyHold": {"type": "integer"}, "vsBuyHold": {"type": "null"}, "wins": {"type": "integer"}, "losses": {"type": "integer"}, "errorRate": {"type": "null"}, "days": {"type": "integer"}, "period_length": {"type": "string"}, "min_periods": {"type": "integer"}, "markdown_buy_pct": {"type": "number"}, "markup_sell_pct": {"type": "number"}, "order_type": {"type": "string"}, "wlRatio": {"type": "string"}, "roi": {"type": "integer"}, "selector": {"type": "string"}, "strategy": {"type": "string"}, "frequency": {"type": "integer"}}, "required": ["params", "lastAssestValue", "profit", "assetCapital", "endBalance", "buyHold", "vsBuyHold", "wins", "losses", "errorRate", "days", "period_length", "min_periods", "markdown_buy_pct", "markup_sell_pct", "order_type", "wlRatio", "roi", "selector", "strategy", "frequency"]}}, "required": ["commandString", "queryStart", "queryEnd", "iteration", "startTime", "currentTimeString", "endTime", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["set"]}}, "front": {"type": "object", "properties": {"title": {"type": "string"}, "imageUrl": {"type": "string"}, "type": {"type": "string"}, "subType": {"type": "string"}, "uniqueness": {"type": "string"}, "destiny": {"type": "string"}, "power": {"type": "string"}, "ability": {"type": "string"}, "deploy": {"type": "string"}, "forfeit": {"type": "string"}, "gametext": {"type": "string"}, "lore": {"type": "string"}}, "required": ["title", "imageUrl", "type", "subType", "uniqueness", "destiny", "power", "ability", "deploy", "forfeit", "gametext", "lore"]}, "pulledBy": {"type": "array", "items": {"type": "string"}}, "legacy": {"type": "boolean"}}, "required": ["id", "gempId", "side", "rarity", "set", "printings", "front", "pulledBy", "legacy"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 962, "gempId" : "6_13", "side" : "Light", "rarity" : "C", "set" : "6", "printings" : [{"set" : "6"}], "front" : {"title" : "\u2022\u2022\u2022Florn Lamproid", "imageUrl" : "https://res.starwarsccg.org/cards/JabbasPalace-Light/large/flornlamproid.gif", "type" : "Character", "subType" : "Alien", "uniqueness" : "***", "destiny" : "3", "power" : "1", "ability" : "2", "deploy" : "3", "forfeit" : "2", "gametext" : "May deploy as a 'react' to any jungle or forest site. Power and forfeit +2 while Dice Ibegon at Audience Chamber. Poison stinger cumulatively adds 1 to attrition against opponent in battles at same site.", "lore" : "Aggressive, serpent-like colonizers. Found on many jungle and forest planets. Have poison stinger that they use when defending themselves."}, "pulledBy" : ["Arleil Schous", "Nar Shaddaa Wind Chimes", "Nar Shaddaa Wind Chimes & Out Of Somewhere"], "legacy" : false}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["set"]}}, "front": {"type": "object", "properties": {"title": {"type": "string"}, "imageUrl": {"type": "string"}, "type": {"type": "string"}, "subType": {"type": "string"}, "uniqueness": {"type": "string"}, "destiny": {"type": "string"}, "power": {"type": "string"}, "ability": {"type": "string"}, "deploy": {"type": "string"}, "forfeit": {"type": "string"}, "gametext": {"type": "string"}, "lore": {"type": "string"}}, "required": ["title", "imageUrl", "type", "subType", "uniqueness", "destiny", "power", "ability", "deploy", "forfeit", "gametext", "lore"]}, "pulledBy": {"type": "array", "items": {"type": "string"}}, "legacy": {"type": "boolean"}}, "required": ["id", "gempId", "side", "rarity", "set", "printings", "front", "pulledBy", "legacy"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"speedysmurfy": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["speedysmurfy"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"speedysmurfy" : {"title" : "SpeedySmurfy", "channel_id" : 98798204, "link" : "http://twitch.tv/speedysmurfy", "desc" : null, "plans" : {"$4.99" : "133206", "$9.99" : "133211", "$24.99" : "133212"}, "id" : "speedysmurfy", "first_seen" : "2017-07-01 22:10:10", "badge" : null, "badge_starting" : null, "badge_3m" : null, "badge_6m" : null, "badge_12m" : null, "badge_24m" : null, "badges" : null, "bits_badges" : null, "cheermote1" : null, "cheermote100" : null, "cheermote1000" : null, "cheermote5000" : null, "cheermote10000" : null, "set" : 133206, "emotes" : [{"code" : "speedy3Happy", "image_id" : 237679, "set" : 133206}]}}} | json_instruct | {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"speedysmurfy": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["speedysmurfy"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "DANI\u00cbLA", "frequency" : 194, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"20764": {"type": "string"}, "10853": {"type": "string"}, "10855": {"type": "string"}, "10856": {"type": "string"}}, "required": ["20764", "10853", "10855", "10856"]}, "timeto": {"type": "object", "properties": {"20764": {"type": "number"}, "10853": {"type": "number"}, "10855": {"type": "number"}, "10856": {"type": "number"}}, "required": ["20764", "10853", "10855", "10856"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 10854, "title" : ["[River's Rest, Spring Rest]"], "description" : ["All about, leaves and small twigs litter the forest floor, but at the forest's edge, in this clearing, brush marks in the soft dirt show the care that someone takes here. A pool of clear water dominates the area and feeds a small stream which meanders southward beside a small path. At the edge of the clearing, two large stone pillars mark a pathway west. Moonlight filters through the trees and seems to invite the weary to rest here in peace.", "All about, leaves and small twigs litter the forest floor, but at the forest's edge, in this clearing, brush marks in the soft dirt show the care that someone takes here. A pool of clear water dominates the area and feeds a small stream which meanders southward beside a small path. At the edge of the clearing, two large stone pillars mark a pathway west. Warm sunlight filters through the trees and seems to invite the weary to rest here in peace."], "paths" : ["Obvious paths: east, south"], "location" : "the town of River's Rest", "wayto" : {"20764" : "go pier", "10853" : "east", "10855" : "go pillars", "10856" : "south"}, "timeto" : {"20764" : 0.2, "10853" : 0.2, "10855" : 0.2, "10856" : 0.2}, "image" : "rr-rivers_rest-1266350289.png", "image_coords" : [129, 514, 165, 550], "tags" : ["some sovyn clove", "some acantha leaf", "some calamia fruit", "withered black mushroom", "handful of oats", "some angelica root", "wild chokecherry", "some motherwort", "heath aster", "ironfern root", "murdroot", "pepperthorn root", "stalk of chicory", "some bur-clover root", "some wingstem root", "sprig of thanot", "some mistweed", "sprig of alyssum", "small daisy", "some murkweed", "yellow primrose", "stalk of goldenrod", "small rose"]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"20764": {"type": "string"}, "10853": {"type": "string"}, "10855": {"type": "string"}, "10856": {"type": "string"}}, "required": ["20764", "10853", "10855", "10856"]}, "timeto": {"type": "object", "properties": {"20764": {"type": "number"}, "10853": {"type": "number"}, "10855": {"type": "number"}, "10856": {"type": "number"}}, "required": ["20764", "10853", "10855", "10856"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"edges" : [[10, 27], [11, 27], [10, 27], [2, 27], [27, 7], [2, 27], [24, 27], [27, 20], [6, 27], [2, 6], [3, 27], [4, 19], [6, 21], [27, 12], [27, 12], [23, 18], [1, 27], [4, 15], [27, 7], [12, 27], [24, 27], [22, 27], [3, 27], [27, 5], [0, 11], [27, 20], [26, 14], [6, 27], [27, 20], [3, 27], [12, 27], [27, 24], [17, 13], [27, 7], [11, 27], [5, 27], [5, 27], [27, 12], [25, 28], [27, 16], [20, 27], [12, 27], [9, 13], [27, 12], [8, 4], [10, 27], [27, 2], [27, 10]], "features" : {"0" : "1", "1" : "1", "2" : "4", "3" : "3", "4" : "3", "5" : "3", "6" : "4", "7" : "3", "8" : "1", "9" : "1", "10" : "4", "11" : "3", "12" : "7", "13" : "2", "14" : "1", "15" : "1", "16" : "1", "17" : "1", "18" : "1", "19" : "1", "20" : "4", "21" : "1", "22" : "1", "23" : "1", "24" : "3", "25" : "1", "26" : "1", "27" : "37", "28" : "1"}} | json_instruct | {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "import React from 'react';\nimport createSvgIcon from './utils/createSvgIcon';\nexport default createSvgIcon(React.createElement(\"path\", {\n d: \"M2 15.5v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20v-2H2z\"\n}), 'Dehaze');", "map" : null, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "mean": {"type": "number"}, "median": {"type": "string"}, "stdev": {"type": "string"}, "min": {"type": "string"}, "max": {"type": "number"}, "num": {"type": "integer"}, "source": {"type": "string"}, "mercury": {"type": "integer"}, "images": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "name", "mean", "median", "stdev", "min", "max", "num", "source", "mercury", "images"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "Lobster-Northern-American", "name" : "Lobster (Northern American)", "mean" : 0.107, "median" : "0.086", "stdev" : "0.076", "min" : "ND", "max" : 0.23, "num" : 9, "source" : "FDA 2005-2007", "mercury" : 1, "images" : ["img/fish/Lobster-Northern-American.jpg"]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "mean": {"type": "number"}, "median": {"type": "string"}, "stdev": {"type": "string"}, "min": {"type": "string"}, "max": {"type": "number"}, "num": {"type": "integer"}, "source": {"type": "string"}, "mercury": {"type": "integer"}, "images": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "name", "mean", "median", "stdev", "min", "max", "num", "source", "mercury", "images"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"no_of_atoms": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}, "maximum_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "atom_2": {"type": "integer"}}, "required": ["diameter", "atom_1", "atom_2"]}, "pore_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom": {"type": "integer"}}, "required": ["diameter", "atom"]}, "pore_volume": {"type": "number"}, "pore_diameter_opt": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}}, "required": ["diameter", "atom_1", "centre_of_mass"]}, "pore_volume_opt": {"type": "number"}, "windows": {"type": "object", "properties": {"diameters": {"type": "array", "items": {"type": "number"}}, "centre_of_mass": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["diameters", "centre_of_mass"]}}, "required": ["no_of_atoms", "centre_of_mass", "maximum_diameter", "pore_diameter", "pore_volume", "pore_diameter_opt", "pore_volume_opt", "windows"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"no_of_atoms" : 260, "centre_of_mass" : [-0.02847482557054868, -0.020407924740439946, 32.39686789413434], "maximum_diameter" : {"diameter" : 29.01141692121384, "atom_1" : 5, "atom_2" : 257}, "pore_diameter" : {"diameter" : 1.300887293562997, "atom" : 135}, "pore_volume" : 1.1527035681523965, "pore_diameter_opt" : {"diameter" : 1.3625092001413894, "atom_1" : 135, "centre_of_mass" : [-0.001454309818126501, 0.0004141877580645515, 32.383626766623635]}, "pore_volume_opt" : 1.3243932319622431, "windows" : {"diameters" : [0.6935816652557238, 0.6946298816731145, 0.6914902239838034], "centre_of_mass" : [[0.843801289785694, -1.0313068657660114, 33.00588119933931], [-1.1935993218709922, -0.19046955906364782, 33.017348932962676], [0.4796200000809829, 1.285474291148899, 33.01132765792608]]}} | json_instruct | {"type": "object", "properties": {"no_of_atoms": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}, "maximum_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "atom_2": {"type": "integer"}}, "required": ["diameter", "atom_1", "atom_2"]}, "pore_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom": {"type": "integer"}}, "required": ["diameter", "atom"]}, "pore_volume": {"type": "number"}, "pore_diameter_opt": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}}, "required": ["diameter", "atom_1", "centre_of_mass"]}, "pore_volume_opt": {"type": "number"}, "windows": {"type": "object", "properties": {"diameters": {"type": "array", "items": {"type": "number"}}, "centre_of_mass": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["diameters", "centre_of_mass"]}}, "required": ["no_of_atoms", "centre_of_mass", "maximum_diameter", "pore_diameter", "pore_volume", "pore_diameter_opt", "pore_volume_opt", "windows"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}}}, "required": ["type", "children"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"type" : "paragraph", "children" : [{"text" : "This list is "}, {"text" : "default", "Bold" : true}, {"text" : " list"}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}}}, "required": ["type", "children"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/vscode": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}, "vscode-languageserver": {"type": "string"}, "vscode-languageserver-textdocument": {"type": "string"}, "vscode-uri": {"type": "string"}}, "required": ["@types/node", "@types/vscode", "ts-node", "typescript", "vscode-languageserver", "vscode-languageserver-textdocument", "vscode-uri"]}}, "required": ["name", "author", "license", "engines", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "datacollection-server", "author" : "YangWei", "license" : "MIT", "engines" : {"node" : "*"}, "dependencies" : {"@types/node" : "^16.6.2", "@types/vscode" : "^1.61.0", "ts-node" : "^10.2.1", "typescript" : "^4.3.5", "vscode-languageserver" : "^7.0.0", "vscode-languageserver-textdocument" : "^1.0.1", "vscode-uri" : "^3.0.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/vscode": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}, "vscode-languageserver": {"type": "string"}, "vscode-languageserver-textdocument": {"type": "string"}, "vscode-uri": {"type": "string"}}, "required": ["@types/node", "@types/vscode", "ts-node", "typescript", "vscode-languageserver", "vscode-languageserver-textdocument", "vscode-uri"]}}, "required": ["name", "author", "license", "engines", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"ClassName": {"type": "string"}, "Size": {"type": "integer"}, "Grade": {"type": "integer"}, "Type": {"type": "string"}, "Classification": {"type": "string"}, "Name": {"type": "string"}, "Description": {"type": "string"}, "Manufacturer": {"type": "object", "properties": {"Code": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Code", "Name"]}, "Cooler": {"type": "object", "properties": {"Rate": {"type": "number"}}, "required": ["Rate"]}, "Durability": {"type": "object", "properties": {"Health": {"type": "number"}, "Lifetime": {"type": "number"}}, "required": ["Health", "Lifetime"]}, "PowerConnection": {"type": "object", "properties": {"PowerBase": {"type": "number"}, "PowerDraw": {"type": "number"}}, "required": ["PowerBase", "PowerDraw"]}, "HeatConnection": {"type": "object", "properties": {"ThermalEnergyBase": {"type": "number"}, "ThermalEnergyDraw": {"type": "number"}, "CoolingRate": {"type": "number"}}, "required": ["ThermalEnergyBase", "ThermalEnergyDraw", "CoolingRate"]}}, "required": ["ClassName", "Size", "Grade", "Type", "Classification", "Name", "Description", "Manufacturer", "Cooler", "Durability", "PowerConnection", "HeatConnection"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ClassName" : "COOL_JUST_S01_EcoFlow_SCItem", "Size" : 1, "Grade" : 2, "Type" : "Cooler.UNDEFINED", "Classification" : "Ship.Cooler", "Name" : "Eco-Flow", "Description" : "Item Type: Cooler\nManufacturer: Juno Starwerk\nSize: 1\nGrade: B\nClass: Industrial\n\nA standard for centuries, Juno Starwerk\u2019s industrial Eco-Flow cooler is a favorite of haulers for being easy to maintain even when carrying the heaviest cargo loads.", "Manufacturer" : {"Code" : "JUST", "Name" : "Juno Starwerk"}, "Cooler" : {"Rate" : 420000.0}, "Durability" : {"Health" : 1400.0, "Lifetime" : 56.0}, "PowerConnection" : {"PowerBase" : 8.0, "PowerDraw" : 12.0}, "HeatConnection" : {"ThermalEnergyBase" : 10.0, "ThermalEnergyDraw" : 20.0, "CoolingRate" : 1.0}} | json_instruct | {"type": "object", "properties": {"ClassName": {"type": "string"}, "Size": {"type": "integer"}, "Grade": {"type": "integer"}, "Type": {"type": "string"}, "Classification": {"type": "string"}, "Name": {"type": "string"}, "Description": {"type": "string"}, "Manufacturer": {"type": "object", "properties": {"Code": {"type": "string"}, "Name": {"type": "string"}}, "required": ["Code", "Name"]}, "Cooler": {"type": "object", "properties": {"Rate": {"type": "number"}}, "required": ["Rate"]}, "Durability": {"type": "object", "properties": {"Health": {"type": "number"}, "Lifetime": {"type": "number"}}, "required": ["Health", "Lifetime"]}, "PowerConnection": {"type": "object", "properties": {"PowerBase": {"type": "number"}, "PowerDraw": {"type": "number"}}, "required": ["PowerBase", "PowerDraw"]}, "HeatConnection": {"type": "object", "properties": {"ThermalEnergyBase": {"type": "number"}, "ThermalEnergyDraw": {"type": "number"}, "CoolingRate": {"type": "number"}}, "required": ["ThermalEnergyBase", "ThermalEnergyDraw", "CoolingRate"]}}, "required": ["ClassName", "Size", "Grade", "Type", "Classification", "Name", "Description", "Manufacturer", "Cooler", "Durability", "PowerConnection", "HeatConnection"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01002553": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01002553"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Topology", "objects" : {"E01002553" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00012676", "LAD11CD" : "E09000017"}, "arcs" : [[0, 1, 2, 3, 4]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00012678", "LAD11CD" : "E09000017"}, "arcs" : [[5, -5, 6]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00012686", "LAD11CD" : "E09000017"}, "arcs" : [[-1, -6, 7, 8, 9]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00012689", "LAD11CD" : "E09000017"}, "arcs" : [[-3, 10]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00012694", "LAD11CD" : "E09000017"}, "arcs" : [[-9, 11]]}]}}, "arcs" : [[[4420, 6568], [-465, -778], [787, -79], [-446, -696], [933, -452], [-934, -696]], [[4295, 3867], [-596, -29]], [[3699, 3838], [-406, 1735], [-1363, -82], [170, 494], [1261, 220], [-1149, 554]], [[2212, 6759], [-387, 1147]], [[1825, 7906], [850, 63], [541, -628], [739, 23], [465, -796]], [[7842, 5621], [-788, -317], [-857, 298], [-312, 699], [-1465, 267]], [[1825, 7906], [-153, 25], [-149, 462], [1665, 267], [-120, 1245], [1286, 94], [447, -1565], [875, -218], [710, 463], [1456, -3058]], [[7842, 5621], [397, -842], [1035, -2015]], [[9274, 2764], [-802, -617], [-666, 276], [281, 501], [-895, 1036], [-1554, -313]], [[5638, 3647], [-1343, 220]], [[3699, 3838], [-3691, 539], [-8, 1139], [20, 561], [89, 399], [2103, 283]], [[9274, 2764], [725, -1415], [-3434, -93], [70, -535], [-1525, -721], [-842, 476], [839, 283], [-357, 695], [1329, 959], [-441, 1234]]], "transform" : {"scale" : [7.270570928361836e-07, 7.588156754090973e-07], "translate" : [-0.467366111631475, 51.514379879227086]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01002553": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01002553"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1205050002", "district_id" : "1205050", "name" : "RURA JULU DOLOK"} | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Schule an der Bergmannsgl\u00fcckstra\u00dfe St\u00e4dt. F\u00f6rderschule FSP Emot.u.soz.Entw. der Primarstufe und Sekundarstufe I.", "id" : "NRW-190512", "address" : "Bergmannsgl\u00fcckstra\u00dfe 75, 45896 Gelsenkirchen", "school_type" : "F\u00f6rderschule", "fax" : "0209 9474852", "phone" : "0209 9474836", "website" : " http://www.schule-bergmannsglueckstrasse.de", "email" : " [email protected] ", "state" : "NRW", "programs" : {"programs" : []}, "full_time_school" : false, "lon" : 7.04202, "lat" : 51.603158} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "sourceName": {"type": "string"}, "sourcePath": {"type": "string"}, "targetInstanceVariable": {"type": "string"}}, "required": ["id", "sourceName", "sourcePath", "targetInstanceVariable"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "b73755b8-5f5b-4bde-ad53-9a2c54bc3fa5", "sourceName" : "foedselsEllerDNummer", "sourcePath" : "/folkeregisterperson/forholdTilSametingetsValgmanntall/", "targetInstanceVariable" : "/InstanceVariable/8448921a-14d5-4d36-aae3-aab58ab8d3e2"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "sourceName": {"type": "string"}, "sourcePath": {"type": "string"}, "targetInstanceVariable": {"type": "string"}}, "required": ["id", "sourceName", "sourcePath", "targetInstanceVariable"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"clients_without_service": {"type": "string"}, "outages": {"type": "string"}, "created_at": {"type": "string"}}, "required": ["clients_without_service", "outages", "created_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"clients_without_service" : "4bc7633f1bf299e11e9f563bf2657ca0", "outages" : "48d7be0c2e7c45fbfa30685991029282", "created_at" : "2022-01-08T06:19:41.446530"} | json_instruct | {"type": "object", "properties": {"clients_without_service": {"type": "string"}, "outages": {"type": "string"}, "created_at": {"type": "string"}}, "required": ["clients_without_service", "outages", "created_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "dev-start": {"type": "string"}}, "required": ["start", "build", "test", "dev-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": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "forever": {"type": "string"}}, "required": ["body-parser", "express", "forever"]}, "devDependencies": {"type": "object", "properties": {"babel-preset-es2015": {"type": "string"}, "babelify": {"type": "string"}, "browserify": {"type": "string"}, "chai": {"type": "string"}, "mocha": {"type": "string"}, "nodemon": {"type": "string"}, "standard": {"type": "string"}, "supertest": {"type": "string"}, "watchify": {"type": "string"}}, "required": ["babel-preset-es2015", "babelify", "browserify", "chai", "mocha", "nodemon", "standard", "supertest", "watchify"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "starter-project", "version" : "1.0.0", "description" : "A boilerplate starter project.", "main" : "server.js", "scripts" : {"start" : "forever server.js", "build" : "browserify -o ", "test" : "standard", "dev-start" : "nodemon server.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/jsstrn/starter-project.git"}, "keywords" : ["boilerplate", "starter", "template"], "author" : "Jesstern Rays <[email protected]> (jsstrn.github.io)", "license" : "MIT", "bugs" : {"url" : "https://github.com/jsstrn/starter-project/issues"}, "homepage" : "https://github.com/jsstrn/starter-project#readme", "dependencies" : {"body-parser" : "^1.14.2", "express" : "^4.13.3", "forever" : "^0.15.1"}, "devDependencies" : {"babel-preset-es2015" : "^6.3.13", "babelify" : "^7.2.0", "browserify" : "^12.0.1", "chai" : "^3.4.1", "mocha" : "^2.3.4", "nodemon" : "^1.8.1", "standard" : "^5.4.1", "supertest" : "^1.1.0", "watchify" : "^3.6.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "dev-start": {"type": "string"}}, "required": ["start", "build", "test", "dev-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": {"body-parser": {"type": "string"}, "express": {"type": "string"}, "forever": {"type": "string"}}, "required": ["body-parser", "express", "forever"]}, "devDependencies": {"type": "object", "properties": {"babel-preset-es2015": {"type": "string"}, "babelify": {"type": "string"}, "browserify": {"type": "string"}, "chai": {"type": "string"}, "mocha": {"type": "string"}, "nodemon": {"type": "string"}, "standard": {"type": "string"}, "supertest": {"type": "string"}, "watchify": {"type": "string"}}, "required": ["babel-preset-es2015", "babelify", "browserify", "chai", "mocha", "nodemon", "standard", "supertest", "watchify"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"textCitation" : "[See xorbi12d on Metamath](http://us.metamath.org/mpegif/xorbi12d.html)"}], "names" : ["xorbi12d"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_wph", "#T_wi", "#T_wps", "#T_wb", "#T_wch", "#T_wph", "#T_wi", "#T_wth", "#T_wb", "#T_wta", "#T_wph", "#T_wi", "#T_wps", "#T_wxo", "#T_wth", "#T_wb", "#T_wch", "#T_wxo", "#T_wta"], "metaLanguage" : "METAMATH", "remarks" : " Equality property for XOR. (Contributed by Mario Carneiro, 4-Sep-2016.) \n\n---\n\n Deduction joining two equivalences to form equivalence of exclusive-or. (Contributed by Jim Kingdon, 7-Oct-2018.) ", "statement" : "xor12d.1 $e |- ( ph -> ( ps <-> ch ) ) $.\nxor12d.2 $e |- ( ph -> ( th <-> ta ) ) $.\nxorbi12d $p |- ( ph -> ( ( ps \\/_ th ) <-> ( ch \\/_ ta ) ) ) $."} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-connect": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-sass": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "sass": {"type": "string"}}, "required": ["grunt", "grunt-contrib-connect", "grunt-contrib-jshint", "grunt-contrib-sass", "grunt-contrib-watch", "sass"]}}, "required": ["name", "version", "description", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jai.im", "version" : "0.1.0", "description" : "Jai Pandya's personal portfolio website", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/jaipandya/jaipandya.github.com"}, "keywords" : ["Jai", "Pandya", "Personal", "Website"], "author" : "Jai Pandya", "license" : "CC-by-SA", "bugs" : {"url" : "https://github.com/jaipandya/jaipandya.github.com/issues"}, "homepage" : "https://github.com/jaipandya/jaipandya.github.com", "devDependencies" : {"grunt" : "^0.4.5", "grunt-contrib-connect" : "^0.8.0", "grunt-contrib-jshint" : "^0.10.0", "grunt-contrib-sass" : "^0.8.1", "grunt-contrib-watch" : "^0.6.1", "sass" : "^0.5.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-connect": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-contrib-sass": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "sass": {"type": "string"}}, "required": ["grunt", "grunt-contrib-connect", "grunt-contrib-jshint", "grunt-contrib-sass", "grunt-contrib-watch", "sass"]}}, "required": ["name", "version", "description", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "county": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "town", "county", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d54ef501-50b2-49f6-8fa6-b7a3adc311dc", "name" : "Richard Wakefield CE Primary Academy", "code" : "2", "address" : {"addressLine1" : "Burton Street", "addressLine2" : "Tutbury", "town" : "Burton on Trent", "county" : "Staffordshire", "postcode" : "DE13 9NR"}, "organisation" : {"id" : "174b60fe-3dac-47c0-a65a-5691b6dda11c", "code" : "24V", "name" : "The John Taylor SCITT"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "town": {"type": "string"}, "county": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "town", "county", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "socket.io": {"type": "string"}, "node-uuid": {"type": "string"}}, "required": ["express", "socket.io", "node-uuid"]}}, "required": ["name", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "LiesAndDeceit", "version" : "0.0.1", "dependencies" : {"express" : "latest", "socket.io" : "latest", "node-uuid" : "latest"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "socket.io": {"type": "string"}, "node-uuid": {"type": "string"}}, "required": ["express", "socket.io", "node-uuid"]}}, "required": ["name", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"subreddit" : "adops", "author" : "AdOpsJunky", "count" : 30} | json_instruct | {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToProcessedPerformance": {"type": "object", "properties": {"program": {"type": "integer"}, "b1afdb6f-4ee0-4a29-8ea9-a3c4eb6ca6d7": {"type": "integer"}}, "required": ["program", "b1afdb6f-4ee0-4a29-8ea9-a3c4eb6ca6d7"]}}, "required": ["configuration", "regionsToProcessedPerformance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"configuration" : ["DECRYPT", "VERIFY"], "regionsToProcessedPerformance" : {"program" : 1215711, "b1afdb6f-4ee0-4a29-8ea9-a3c4eb6ca6d7" : 1125495}} | json_instruct | {"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToProcessedPerformance": {"type": "object", "properties": {"program": {"type": "integer"}, "b1afdb6f-4ee0-4a29-8ea9-a3c4eb6ca6d7": {"type": "integer"}}, "required": ["program", "b1afdb6f-4ee0-4a29-8ea9-a3c4eb6ca6d7"]}}, "required": ["configuration", "regionsToProcessedPerformance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"publish": {"type": "string"}}, "required": ["publish"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "lerna": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "lerna", "typescript"]}}, "required": ["name", "version", "description", "private", "scripts", "keywords", "author", "license", "repository", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "rhinofit-unofficial", "version" : "1.0.0", "description" : "", "private" : true, "scripts" : {"publish" : "lerna run tsc && lerna publish"}, "keywords" : [], "author" : "", "license" : "MIT", "repository" : {"url" : "[email protected]:lanekatris/rhinofit-unofficial.git"}, "devDependencies" : {"@types/node" : "^14.14.34", "lerna" : "^3.22.1", "typescript" : "^4.2.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"publish": {"type": "string"}}, "required": ["publish"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "lerna": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "lerna", "typescript"]}}, "required": ["name", "version", "description", "private", "scripts", "keywords", "author", "license", "repository", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["341522123200", "\u6234\u5e97\u6751\u59d4\u4f1a", "220", "0"], ["341522123201", "\u8001\u697c\u6751\u59d4\u4f1a", "220", "0"], ["341522123202", "\u502a\u5e99\u6751\u59d4\u4f1a", "220", "0"], ["341522123203", "\u738b\u8001\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["341522123204", "\u9f99\u5934\u6751\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["341522123205", "\u8303\u6865\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["341522123206", "\u4e07\u524d\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["341522123207", "\u5218\u5e99\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["341522123208", "\u987a\u548c\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["341522123209", "\u53cc\u5143\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["341522123210", "\u9f99\u5468\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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bson": {"type": "string"}, "co": {"type": "string"}, "co-monk": {"type": "string"}, "mongoose": {"type": "string"}, "monk": {"type": "string"}}, "required": ["bson", "co", "co-monk", "mongoose", "monk"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mongodb-largest-documents", "version" : "1.0.5", "description" : "A simple Node.js script that finds the top X largest documents in a given MongoDB collection.", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/eladnava/mongodb-largest-documents.git"}, "author" : "Elad Nava", "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/eladnava/mongodb-largest-documents/issues"}, "homepage" : "https://github.com/eladnava/mongodb-largest-documents#readme", "dependencies" : {"bson" : "^0.4.23", "co" : "^4.6.0", "co-monk" : "^1.0.0", "mongoose" : "^4.4.15", "monk" : "^1.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bson": {"type": "string"}, "co": {"type": "string"}, "co-monk": {"type": "string"}, "mongoose": {"type": "string"}, "monk": {"type": "string"}}, "required": ["bson", "co", "co-monk", "mongoose", "monk"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"apiVersion": {"type": "string"}, "swaggerVersion": {"type": "string"}, "basePath": {"type": "string"}, "resourcePath": {"type": "string"}, "apis": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "description": {"type": "string"}, "operations": {"type": "array", "items": {"type": "object", "properties": {"httpMethod": {"type": "string"}, "nickname": {"type": "string"}, "responseClass": {"type": "string"}}, "required": ["httpMethod", "nickname", "responseClass"]}}}, "required": ["path", "description", "operations"]}}}, "required": ["apiVersion", "swaggerVersion", "basePath", "resourcePath", "apis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"apiVersion" : "0", "swaggerVersion" : "1.1", "basePath" : "http://localhost:8080", "resourcePath" : "/primitives/longs", "apis" : [{"path" : "/primitives/longs", "description" : "", "operations" : [{"httpMethod" : "GET", "nickname" : "get", "responseClass" : "long"}, {"httpMethod" : "POST", "nickname" : "create", "responseClass" : "Response", "parameters" : [{"paramType" : "body", "name" : "value", "dataType" : "long"}]}]}]} | json_instruct | {"type": "object", "properties": {"apiVersion": {"type": "string"}, "swaggerVersion": {"type": "string"}, "basePath": {"type": "string"}, "resourcePath": {"type": "string"}, "apis": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "description": {"type": "string"}, "operations": {"type": "array", "items": {"type": "object", "properties": {"httpMethod": {"type": "string"}, "nickname": {"type": "string"}, "responseClass": {"type": "string"}}, "required": ["httpMethod", "nickname", "responseClass"]}}}, "required": ["path", "description", "operations"]}}}, "required": ["apiVersion", "swaggerVersion", "basePath", "resourcePath", "apis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "CARMELA", "frequency" : 2478, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 2008, "sex" : "F", "n" : 5, "prop" : 2.4e-06}, {"year" : 2009, "sex" : "F", "n" : 10, "prop" : 4.94e-06}, {"year" : 2010, "sex" : "F", "n" : 8, "prop" : 4.09e-06}, {"year" : 2011, "sex" : "F", "n" : 10, "prop" : 5.17e-06}, {"year" : 2012, "sex" : "F", "n" : 9, "prop" : 4.65e-06}, {"year" : 2014, "sex" : "F", "n" : 8, "prop" : 4.1e-06}, {"year" : 2017, "sex" : "F", "n" : 5, "prop" : 2.67e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "dynamic": {"type": "boolean"}, "resolved": {"type": "string"}, "parent": {"type": "string"}}, "required": ["name", "dynamic", "resolved", "parent"]}}, "generated": {"type": "object", "properties": {"html": {"type": "string"}}, "required": ["html"]}, "sourceMaps": {"type": "null"}, "error": {"type": "null"}, "hash": {"type": "string"}, "cacheData": {"type": "object", "properties": {}, "required": []}}, "required": ["id", "dependencies", "generated", "sourceMaps", "error", "hash", "cacheData"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "index.html", "dependencies" : [{"name" : "./src/01-basicusage.js", "dynamic" : true, "resolved" : "/Users/yanghao/Code/lagoufed-e-task/part3/fed-e-task-03-01/code/virtual-dom/src/01-basicusage.js", "parent" : "/Users/yanghao/Code/lagoufed-e-task/part3/fed-e-task-03-01/code/virtual-dom/index.html"}], "generated" : {"html" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n <meta charset=\"UTF-8\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n <title>Snabbdom-demo</title>\n</head>\n<body>\n <div id=\"app\"></div>\n <script src=\"/040ad7f678a761d05504bf4c8fdafd7a.js\"></script>\n</body>\n</html>"}, "sourceMaps" : null, "error" : null, "hash" : "f2f26ff87bbd7166dbc9c6492733fc06", "cacheData" : {}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "dynamic": {"type": "boolean"}, "resolved": {"type": "string"}, "parent": {"type": "string"}}, "required": ["name", "dynamic", "resolved", "parent"]}}, "generated": {"type": "object", "properties": {"html": {"type": "string"}}, "required": ["html"]}, "sourceMaps": {"type": "null"}, "error": {"type": "null"}, "hash": {"type": "string"}, "cacheData": {"type": "object", "properties": {}, "required": []}}, "required": ["id", "dependencies", "generated", "sourceMaps", "error", "hash", "cacheData"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3310230013", "district_id" : "3310230", "name" : "TEGALMULYO"} | 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#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["150522400500", "\u519c\u573a\u4e00\u5206\u573a\u751f\u6d3b\u533a", "220", "0"], ["150522400501", "\u519c\u573a\u4e8c\u5206\u573a\u751f\u6d3b\u533a", "123", "0"], ["150522400502", "\u519c\u573a\u4e09\u5206\u573a\u751f\u6d3b\u533a", "220", "0"], ["150522400503", "\u519c\u573a\u56db\u5206\u573a\u751f\u6d3b\u533a", "220", "0"], ["150522400504", "\u519c\u573a\u4e94\u5206\u573a\u751f\u6d3b\u533a", "220", "0"], ["150522400505", "\u519c\u573a\u516d\u5206\u573a\u751f\u6d3b\u533a", "220", "0"], ["150522400506", "\u519c\u573a\u4e03\u5206\u573a\u751f\u6d3b\u533a", "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": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"Similarity" : "0.927", "Title" : "Comparative Evidence For Associative Learning In Task Switching", "Year" : 2013}, {"Similarity" : "0.923", "Title" : "Base-Rate Neglect in Pigeons Implications for Memory Mechanisms", "Year" : 2001}, {"Similarity" : "0.907", "Title" : "Task switching without knowledge of the tasks", "Year" : 2012}, {"Similarity" : "0.893", "Title" : "Time Interval Estimation Internal Clock or Attentional Mechanism", "Year" : 2005}, {"Similarity" : "0.888", "Title" : "Conflict-based regulation of control in language production", "Year" : 2016}, {"Similarity" : "0.887", "Title" : "How Episodic and Working Memory Affect Rule- and Memory-Based Judgments", "Year" : 2013}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/throwables/peglacitier2knife.thrownitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/throwables/peglacitier2knife.thrownitem"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"DeniedAlternatives" : [], "Files" : {"items/throwables/peglacitier2knife.thrownitem" : ["/shortdescription"]}, "Texts" : {"Chs" : "\u7206\u70b8\u7269", "Eng" : "Burster"}}, {"DeniedAlternatives" : [], "Files" : {"items/throwables/peglacitier2knife.thrownitem" : ["/description"]}, "Texts" : {"Chs" : "\u7f8a\u8e44\u65cf\u624b\u69b4\u5f39\u7684\u6807\u51c6\u914d\u7f6e\u3002", "Eng" : "The standard issue Peglaci hunting grenade."}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/throwables/peglacitier2knife.thrownitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/throwables/peglacitier2knife.thrownitem"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"BUTTON_CANCEL": {"type": "string"}}, "required": ["BUTTON_CANCEL"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"BUTTON_CANCEL" : "Annuler"} | json_instruct | {"type": "object", "properties": {"BUTTON_CANCEL": {"type": "string"}}, "required": ["BUTTON_CANCEL"], "$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": "null"}, "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" : 173833, "info" : {"name" : "Orang Man Roblox Background (DOESNT WORK)", "description" : "This doesn't work anymore.", "additionalInfo" : null, "format" : "uso", "category" : "roblox", "createdAt" : "2019-07-25T14:07:44.000Z", "updatedAt" : "2019-07-25T14:07:44.000Z", "license" : "CC0-1.0", "author" : {"id" : 378919, "name" : "sny yellow"}}, "stats" : {"installs" : {"total" : 344, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "173833_after.png", "archived" : true}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain(\"roblox.com\")\r\n{\r\n .avatar-back\r\n {\r\n background-image: url(\"https://prnt.sc/ojxoyv\");\r\n }\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "isUpcomingChange": {"type": "boolean"}, "dashedName": {"type": "string"}, "order": {"type": "integer"}, "time": {"type": "string"}, "superBlock": {"type": "string"}, "challengeOrder": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["name", "isUpcomingChange", "dashedName", "order", "time", "superBlock", "challengeOrder"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "MongoDB and Mongoose", "isUpcomingChange" : false, "dashedName" : "mongodb-and-mongoose", "order" : 2, "time" : "5 hours", "superBlock" : "back-end-development-and-apis", "challengeOrder" : [["587d7fb6367417b2b2512c06", "Install and Set Up Mongoose"], ["587d7fb6367417b2b2512c07", "Create a Model"], ["587d7fb6367417b2b2512c09", "Create and Save a Record of a Model"], ["587d7fb7367417b2b2512c0a", "Create Many Records with model.create()"], ["587d7fb7367417b2b2512c0b", "Use model.find() to Search Your Database"], ["587d7fb7367417b2b2512c0c", "Use model.findOne() to Return a Single Matching Document from Your Database"], ["587d7fb7367417b2b2512c0d", "Use model.findById() to Search Your Database By _id"], ["587d7fb8367417b2b2512c0e", "Perform Classic Updates by Running Find, Edit, then Save"], ["587d7fb8367417b2b2512c0f", "Perform New Updates on a Document Using model.findOneAndUpdate()"], ["587d7fb8367417b2b2512c10", "Delete One Document Using model.findByIdAndRemove"], ["587d7fb8367417b2b2512c11", "Delete Many Documents with model.remove()"], ["587d7fb9367417b2b2512c12", "Chain Search Query Helpers to Narrow Search Results"]]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "isUpcomingChange": {"type": "boolean"}, "dashedName": {"type": "string"}, "order": {"type": "integer"}, "time": {"type": "string"}, "superBlock": {"type": "string"}, "challengeOrder": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["name", "isUpcomingChange", "dashedName", "order", "time", "superBlock", "challengeOrder"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"apkbuilder": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "contains": {"type": "array", "items": {"type": "string"}}, "raw_version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "type", "contains", "raw_version", "authors"]}, "apktools": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "contains": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "type", "contains", "authors"]}, "ext.apk": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "contains": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "type", "contains", "requires", "authors"]}}, "required": ["apkbuilder", "apktools", "ext.apk"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"apkbuilder" : {"name" : "apkbuilder", "version" : "1.2.5.180", "type" : "lib", "contains" : ["apkbuilder/apkBuilder.raw", "apkBuilder.ai"], "raw_version" : "1.8.0", "authors" : ["Abu Ayyub"]}, "apktools" : {"name" : "apktools", "version" : "2.3.4", "type" : "lib", "contains" : ["apktools/9r3i.pk8", "apktools/9r3i.x509.pem", "apktools/apktool.jar", "apktools/signapk.jar", "apktools/zipalign.exe"], "authors" : ["Abu Ayyub"]}, "ext.apk" : {"name" : "apk", "version" : "1.3.0", "type" : "ext", "contains" : ["apk.ai"], "requires" : ["apkbuilder", "apktools"], "authors" : ["Abu Ayyub"]}} | json_instruct | {"type": "object", "properties": {"apkbuilder": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "contains": {"type": "array", "items": {"type": "string"}}, "raw_version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "type", "contains", "raw_version", "authors"]}, "apktools": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "contains": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "type", "contains", "authors"]}, "ext.apk": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "contains": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "type", "contains", "requires", "authors"]}}, "required": ["apkbuilder", "apktools", "ext.apk"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"900650898": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900650899": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900650898", "900650899"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900650898" : {"nama" : "TPS 1", "dapil" : [5301, 15304, 2531901]}, "900650899" : {"nama" : "TPS 2", "dapil" : [5301, 15304, 2531901]}} | json_instruct | {"type": "object", "properties": {"900650898": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900650899": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900650898", "900650899"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"displayName": {"type": "string"}, "toolTip": {"type": "string"}, "group": {"type": "string"}, "data": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2"]}}, "required": ["displayName", "toolTip", "group", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"displayName" : "Tavern Name", "toolTip" : "Generate a tavern nae", "group" : "generator", "data" : {"1" : ["Blind", "Three", "King's", "Black", "Fearsome", "Yew", "Maid", "Green", "Blasted", "Broken", "Meg's", "23", "Donkey", "Five", "Dead", "Jolly", "Brass", "Buxum", "Six", "Pirate's", "Carrots", "Burnt", "Deviant", "Thrice", "Empty", "Fearsome", "Red", "Yellow", "Supine", "Thirsty", "Fat", "Thin", "Burnt", "Queen's", "Captain's", "White", "Murdered", "Large", "Tiny", "Round", "Hollow", "Catapult", "Snail", "Nag's", "Blunt", "Outrageous", "Quiet", "Noisy", "Boozy", "Magenta", "Stork"], "2" : ["Cat", "Fire", "with Eight Tails", "Cow", "Spectacles", "Burnt Down", "Minotaur", "Hag", "Nightcap", "Ankheg", "Chamber", "\u00c5\u201924", "Blind Mice", "Ale", "Honey", "Full Moon", "Moon", "Rainbow", "Storm Clouds", "Pipe", "Trousers", "Waif", "Hat", "Helmet", "Kraken", "Giant", "Cockerel", "Slug", "Dryad", "Pig", "Rack", "Iron Maiden", "House", "Barn", "Church", "Well", "Manticore", "Haystack", "Hill", "Ferret", "Lurcher", "Lobster", "Cliff", "Tarragon", "Slippers", "Witch", "Gull", "Caravel", "Wagon", "Carriage", "Moose"]}} | json_instruct | {"type": "object", "properties": {"displayName": {"type": "string"}, "toolTip": {"type": "string"}, "group": {"type": "string"}, "data": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2"]}}, "required": ["displayName", "toolTip", "group", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"derivation" : "of Hebrew origin (H02971);", "kjv_def" : "Jairus", "lemma" : "\u1f38\u03ac\u03b5\u03b9\u03c1\u03bf\u03c2", "frequency" : 2, "strongs_def" : " Jairus (i.e. Jair), an Israelite", "outline" : "<span class=\"literal-meaning\">Jairus = \"whom God enlightens\"</span><ol><li> a ruler of a synagogue, probably near the western shore of the Sea of Galilee</li></ol>"} | json_instruct | {"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "codepoint": {"type": "string"}, "background": {"type": "string"}, "colorStyle": {"type": "string"}, "title": {"type": "string"}, "slug": {"type": "string"}, "svg": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "tags": {"type": "array", "items": {}}, "style": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "zhs": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "source": {"type": "string"}, "comments": {"type": "array", "items": {}}}, "required": ["name", "codepoint", "background", "colorStyle", "title", "slug", "svg", "aliases", "tags", "style", "author", "version", "zhs", "description", "source", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "pexels", "codepoint" : "", "background" : "#05A081", "colorStyle" : "brands-item--light", "title" : "Pexels", "slug" : "pexels", "svg" : "<svg role=\"img\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><title>Pexels icon</title><path d=\"M1.5 0A1.5 1.5 0 000 1.5v21A1.5 1.5 0 001.5 24h21a1.5 1.5 0 001.5-1.5v-21A1.5 1.5 0 0022.5 0h-21zm6.75 6.75h5.2715a3.843 3.843 0 01.627 7.6348V17.25H8.25V6.75zm1.5 1.5v7.5h2.8984v-2.8145h.873a2.343 2.343 0 100-4.6855H9.75Z\"/></svg>", "aliases" : [], "tags" : [], "style" : "regular", "author" : "Simple Icon", "version" : "2.8.0", "zhs" : ["\u50cf\u7d20"], "description" : "", "source" : "https://www.pexels.com/", "comments" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "codepoint": {"type": "string"}, "background": {"type": "string"}, "colorStyle": {"type": "string"}, "title": {"type": "string"}, "slug": {"type": "string"}, "svg": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "tags": {"type": "array", "items": {}}, "style": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "zhs": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "source": {"type": "string"}, "comments": {"type": "array", "items": {}}}, "required": ["name", "codepoint", "background", "colorStyle", "title", "slug", "svg", "aliases", "tags", "style", "author", "version", "zhs", "description", "source", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "generate": {"type": "string"}}, "required": ["dev", "build", "start", "generate"]}, "dependencies": {"type": "object", "properties": {"@nuxtjs/auth": {"type": "string"}, "@nuxtjs/axios": {"type": "string"}, "bootstrap-vue": {"type": "string"}, "cross-env": {"type": "string"}, "nuxt": {"type": "string"}, "vue": {"type": "string"}, "babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-env": {"type": "string"}}, "required": ["@nuxtjs/auth", "@nuxtjs/axios", "bootstrap-vue", "cross-env", "nuxt", "vue", "babel-core", "babel-loader", "babel-preset-env"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "author", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jwt-auth", "version" : "1.0.0", "description" : "My great NUxt.js project", "author" : "Melan Eka Putri", "private" : true, "scripts" : {"dev" : "nuxt", "build" : "nuxt build", "start" : "nuxt start", "generate" : "nuxt generate"}, "dependencies" : {"@nuxtjs/auth" : "^4.5.3", "@nuxtjs/axios" : "^5.4.1", "bootstrap-vue" : "^2.0.0-rc.11", "cross-env" : "^5.2.0", "nuxt" : "^2.4.0", "vue" : "^2.6.9", "babel-core" : "^6.26.0", "babel-loader" : "^7.1.4", "babel-preset-env" : "^1.6.1"}, "devDependencies" : {"nodemon" : "^1.18.9"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "generate": {"type": "string"}}, "required": ["dev", "build", "start", "generate"]}, "dependencies": {"type": "object", "properties": {"@nuxtjs/auth": {"type": "string"}, "@nuxtjs/axios": {"type": "string"}, "bootstrap-vue": {"type": "string"}, "cross-env": {"type": "string"}, "nuxt": {"type": "string"}, "vue": {"type": "string"}, "babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-env": {"type": "string"}}, "required": ["@nuxtjs/auth", "@nuxtjs/axios", "bootstrap-vue", "cross-env", "nuxt", "vue", "babel-core", "babel-loader", "babel-preset-env"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "author", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "addr:suburb": {"type": "string"}, "name": {"type": "string"}, "shop": {"type": "string"}, "website": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:housenumber", "addr:postcode", "addr:street", "addr:suburb", "name", "shop", "website", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "id" : "node/5919391546", "properties" : {"addr:city" : "Liebenau", "addr:housenumber" : "19", "addr:postcode" : "34396", "addr:street" : "Steinweg", "addr:suburb" : "Zwergen", "name" : "F\u00fcllings Hofladen", "shop" : "farm", "website" : "https://www.fuellings-hof.de/unser-hofladen", "id" : "node/5919391546"}, "geometry" : {"type" : "Point", "coordinates" : [9.2984926, 51.4839859]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "addr:suburb": {"type": "string"}, "name": {"type": "string"}, "shop": {"type": "string"}, "website": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:housenumber", "addr:postcode", "addr:street", "addr:suburb", "name", "shop", "website", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"throws": {"type": "string"}}, "required": ["throws"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"throws" : "Unexpected token, expected { (1:18)"} | json_instruct | {"type": "object", "properties": {"throws": {"type": "string"}}, "required": ["throws"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "defaultService": {"type": "string"}, "services": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"]}}, "pattern": {"type": "string"}}, "required": ["title", "defaultService", "services", "pattern"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "ContainerAnalysis", "defaultService" : "containeranalysis/readme", "services" : [{"title" : "Overview", "type" : "containeranalysis/readme"}, {"title" : "ContainerAnalysisClient (v1)", "type" : "containeranalysis/v1/containeranalysisclient"}], "pattern" : "containeranalysis/\\w{1,}"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "defaultService": {"type": "string"}, "services": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"]}}, "pattern": {"type": "string"}}, "required": ["title", "defaultService", "services", "pattern"], "$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" : "A Whole Page Click Model to Better Interpret Search Engine Click Data.", "fields" : ["markov chain", "click path", "probabilistic logic", "search engine", "organic search"], "abstract" : "Recent advances in click modeling have established it as an attractive approach to interpret search click data. These advances characterize users' search behavior either in advertisement blocks, or within an organic search block through probabilistic models. Yet, when searching for information on a search result page, one is often interacting with the search engine via an entire page instead of a single block. Consequently, previous works that exclusively modeled user behavior in a single block may sacrifice much useful user behavior information embedded in other blocks. To solve this problem, in this paper, we put forward a novel Whole Page Click (WPC) Model to characterize user behavior in multiple blocks. Specifically, WPC uses a Markov chain to learn the user transition probabilities among different blocks in the whole page. To compare our model with the best alternatives in the Web-Search literature, we run a large-scale experiment on a real dataset and demonstrate the advantage of the WPC model in terms of both the whole page and each block in the page. Especially, we find that WPC can achieve significant gain in interpreting the advertisement data, despite of the sparsity of the advertisement click data.", "citation" : "Citations (16)", "departments" : ["Hong Kong University of Science and Technology", "Microsoft", "Hong Kong University of Science and Technology", "Hong Kong University of Science and Technology"], "authors" : ["Weizhu Chen.....http://dblp.org/pers/hd/c/Chen:Weizhu", "Zhanglong Ji.....http://dblp.org/pers/hd/j/Ji:Zhanglong", "Si Shen.....http://dblp.org/pers/hd/s/Shen:Si", "Qiang Yang.....http://dblp.org/pers/hd/y/Yang_0001:Qiang"], "conf" : "aaai", "year" : "2011", "pages" : -1} | 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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "46", "provinceId" : "91", "regencyId" : "13", "name" : "Kabianggama"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parent": {"type": "string"}, "category": {"type": "string"}, "overdueSpeed": {"type": "integer"}, "overdueState": {"type": "integer"}, "fridgeEfficiency": {"type": "integer"}, "saltEfficiency": {"type": "integer"}}, "required": ["parent", "category", "overdueSpeed", "overdueState", "fridgeEfficiency", "saltEfficiency"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "edible_1", "category" : "vegetable", "overdueSpeed" : 8, "overdueState" : 165000, "fridgeEfficiency" : 6, "saltEfficiency" : 3} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "category": {"type": "string"}, "overdueSpeed": {"type": "integer"}, "overdueState": {"type": "integer"}, "fridgeEfficiency": {"type": "integer"}, "saltEfficiency": {"type": "integer"}}, "required": ["parent", "category", "overdueSpeed", "overdueState", "fridgeEfficiency", "saltEfficiency"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "scanUrl": {"type": "string"}}, "required": ["title", "text", "scanUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Easterling Skirmisher (4R229)", "text" : "Set:\tThe Two Towers\nKind:\tShadow\nCulture:\tRaider\nTwilight:\t1\nCard Type:\tMinion \u2022 Man\nStrength:\t5\nVitality:\t1\nSite:\t4\nGame Text:\tEasterling. When you play this minion, you may spot another Easterling to add (1) for each burden (limit (4)).\nLore:\tEnemy formations are threatened by the spears of Easterling light troops.\nRarity:\tR", "scanUrl" : "https://lotrtcgwiki.com/wiki/_media/cards:lotr04229.jpg"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "scanUrl": {"type": "string"}}, "required": ["title", "text", "scanUrl"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ignore" : ["public/apos-minified/*"]} | json_instruct | {"type": "object", "properties": {"ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["ignore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"bank_code": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "name_k": {"type": "string"}, "name_h": {"type": "string"}, "name_e": {"type": "string"}}, "required": ["bank_code", "code", "name", "name_k", "name_h", "name_e"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"bank_code" : "8181", "code" : "002", "name" : "\u738b\u559c", "name_k" : "\u30aa\u30aa\u30ad", "name_h" : "\u304a\u304a\u304d", "name_e" : "ooki"}, {"bank_code" : "8181", "code" : "005", "name" : "\u6e05\u672b", "name_k" : "\u30ad\u30e8\u30b9\u30a8", "name_h" : "\u304d\u3088\u3059\u3048", "name_e" : "kiyosue"}, {"bank_code" : "8181", "code" : "006", "name" : "\u738b\u53f8", "name_k" : "\u30aa\u30a6\u30b8", "name_h" : "\u304a\u3046\u3058", "name_e" : "ouji"}, {"bank_code" : "8181", "code" : "009", "name" : "\u9577\u5e9c", "name_k" : "\u30c1\u30e8\u30a6\u30d5", "name_h" : "\u3061\u3088\u3046\u3075", "name_e" : "chiyoufu"}, {"bank_code" : "8181", "code" : "012", "name" : "\u52dd\u5c71", "name_k" : "\u30ab\u30c4\u30e4\u30de", "name_h" : "\u304b\u3064\u3084\u307e", "name_e" : "katsuyama"}, {"bank_code" : "8181", "code" : "013", "name" : "\u5ddd\u4e2d", "name_k" : "\u30ab\u30ef\u30ca\u30ab", "name_h" : "\u304b\u308f\u306a\u304b", "name_e" : "kawanaka"}, {"bank_code" : "8181", "code" : "014", "name" : "\u5409\u898b", "name_k" : "\u30e8\u30b7\u30df", "name_h" : "\u3088\u3057\u307f", "name_e" : "yoshimi"}, {"bank_code" : "8181", "code" : "020", "name" : "\u672c\u6240", "name_k" : "\u30db\u30f3\u30b7\u30e8", "name_h" : "\u307b\u3093\u3057\u3088", "name_e" : "honshiyo"}, {"bank_code" : "8181", "code" : "021", "name" : "\u5e61\u751f", "name_k" : "\u30cf\u30bf\u30d6", "name_h" : "\u306f\u305f\u3076", "name_e" : "hatabu"}, {"bank_code" : "8181", "code" : "025", "name" : "\u5f66\u5cf6", "name_k" : "\u30d2\u30b3\u30b7\u30de", "name_h" : "\u3072\u3053\u3057\u307e", "name_e" : "hikoshima"}, {"bank_code" : "8181", "code" : "030", "name" : "\u5b89\u5ca1", "name_k" : "\u30e4\u30b9\u30aa\u30ab", "name_h" : "\u3084\u3059\u304a\u304b", "name_e" : "yasuoka"}, {"bank_code" : "8181", "code" : "035", "name" : "\u83ca\u5ddd\u753a", "name_k" : "\u30ad\u30af\u30ac\u30ef\u30c1\u30e8\u30a6", "name_h" : "\u304d\u304f\u304c\u308f\u3061\u3088\u3046", "name_e" : "kikugawachiyou"}, {"bank_code" : "8181", "code" : "046", "name" : "\u9ed2\u4e95", "name_k" : "\u30af\u30ed\u30a4", "name_h" : "\u304f\u308d\u3044", "name_e" : "kuroi"}, {"bank_code" : "8181", "code" : "051", "name" : "\u8c4a\u5317\u753a", "name_k" : "\u30db\u30a6\u30db\u30af\u30c1\u30e8\u30a6", "name_h" : "\u307b\u3046\u307b\u304f\u3061\u3088\u3046", "name_e" : "houhokuchiyou"}, {"bank_code" : "8181", "code" : "058", "name" : "\u795e\u7530", "name_k" : "\u30ab\u30f3\u30c0", "name_h" : "\u304b\u3093\u3060", "name_e" : "kanda"}, {"bank_code" : "8181", "code" : "075", "name" : "\u8c4a\u7530\u753a", "name_k" : "\u30c8\u30e8\u30bf\u30c1\u30e8\u30a6", "name_h" : "\u3068\u3088\u305f\u3061\u3088\u3046", "name_e" : "toyotachiyou"}, {"bank_code" : "8181", "code" : "092", "name" : "\u8c4a\u6d66\u753a", "name_k" : "\u30c8\u30e8\u30a6\u30e9\u30c1\u30e8\u30a6", "name_h" : "\u3068\u3088\u3046\u3089\u3061\u3088\u3046", "name_e" : "toyourachiyou"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"bank_code": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "name_k": {"type": "string"}, "name_h": {"type": "string"}, "name_e": {"type": "string"}}, "required": ["bank_code", "code", "name", "name_k", "name_h", "name_e"]}, "$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": {"seed": {"type": "integer"}, "tag": {"type": "string"}, "problemId": {"type": "integer"}, "solution": {"type": "string"}}, "required": ["seed", "tag", "problemId", "solution"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"seed" : 0, "tag" : "problem13-seed0-2-41-44.181379000000", "problemId" : 13, "solution" : "akbdR'lyehR'lyehpdR'lyehbCthulhu fhtagn!kR'lyehIa! Ia!dbR'lyehblIa! Ia!plEi!kblkCthulhu fhtagn!kabaYuggothpkIa! Ia!kbkEi!pdbdEi!pdddbEi!ppdEi!R'lyehpbR'lyehbaap"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"seed": {"type": "integer"}, "tag": {"type": "string"}, "problemId": {"type": "integer"}, "solution": {"type": "string"}}, "required": ["seed", "tag", "problemId", "solution"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"username": {"type": "string"}, "additional_items": {"type": "array", "items": {}}, "items": {"type": "object", "properties": {"1": {"type": "string"}, "2": {"type": "string"}}, "required": ["1", "2"]}, "tweet_id": {"type": "string"}, "timespent": {"type": "number"}, "starttime": {"type": "number"}, "itemcount": {"type": "string"}, "savingtime": {"type": "number"}}, "required": ["username", "additional_items", "items", "tweet_id", "timespent", "starttime", "itemcount", "savingtime"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"username" : "user03", "additional_items" : [], "items" : {"1" : "neutral", "2" : "neutral"}, "tweet_id" : "581218956402409472", "timespent" : 7.2587831020355, "starttime" : 1429552284.986, "itemcount" : "2", "savingtime" : 1429552292.2447} | json_instruct | {"type": "object", "properties": {"username": {"type": "string"}, "additional_items": {"type": "array", "items": {}}, "items": {"type": "object", "properties": {"1": {"type": "string"}, "2": {"type": "string"}}, "required": ["1", "2"]}, "tweet_id": {"type": "string"}, "timespent": {"type": "number"}, "starttime": {"type": "number"}, "itemcount": {"type": "string"}, "savingtime": {"type": "number"}}, "required": ["username", "additional_items", "items", "tweet_id", "timespent", "starttime", "itemcount", "savingtime"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {"type": "string"}}, "SERIES_NAME": {"type": "array", "items": {"type": "string"}}, "X_CALENDAR_YEAR": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {"type": "number"}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {"type": "number"}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "OBS_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "integer"}, "X_COUNT": {"type": "integer"}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "OBSERVATIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "OBS_FREQUENCY_DISTRIBUTION", "OBSERVATIONS_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : ["40-49", "20-29", "30-39"], "SERIES_NAME" : ["FEMALE", "FEMALE", "FEMALE"], "X_CALENDAR_YEAR" : [2009, 2013, 2014], "Y_PREVALENCE_1000PP" : [0.01638, 0.0222, 0.01839]}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [200909, 201008, 201102, 201208, 201301, 201403, 201501, 201503], "Y_PREVALENCE_1000PP" : [0.00131, 0.00114, 0.00112, 0.00109, 0.00128, 0.00134, 0.00125, 0.00129]}, "OBS_FREQUENCY_DISTRIBUTION" : {"Y_NUM_PERSONS" : 0, "X_COUNT" : 1}, "OBSERVATIONS_BY_TYPE" : {"CONCEPT_NAME" : "Observation recorded from EHR", "COUNT_VALUE" : 415}, "AGE_AT_FIRST_OCCURRENCE" : {"CATEGORY" : ["MALE", "FEMALE"], "MIN_VALUE" : [3, 1], "P10_VALUE" : [19, 22], "P25_VALUE" : [29, 29], "MEDIAN_VALUE" : [40, 45], "P75_VALUE" : [56, 65], "P90_VALUE" : [72, 82], "MAX_VALUE" : [89, 96]}} | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {"type": "string"}}, "SERIES_NAME": {"type": "array", "items": {"type": "string"}}, "X_CALENDAR_YEAR": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {"type": "number"}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {"type": "integer"}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {"type": "number"}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "OBS_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "integer"}, "X_COUNT": {"type": "integer"}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "OBSERVATIONS_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "OBS_FREQUENCY_DISTRIBUTION", "OBSERVATIONS_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$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": {"currency": {"type": "string"}, "code": {"type": "string"}, "country": {"type": "string"}}, "required": ["currency", "code", "country"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"currency" : "British Pound", "code" : "GBP", "country" : "UK"}, {"currency" : "Swedish Krona", "code" : "SEK", "country" : "Sweden"}, {"currency" : "Danish Krone", "code" : "DKK", "country" : "Denmark"}, {"currency" : "Polish Zloty", "code" : "PLN", "country" : "Poland"}, {"currency" : "Euro", "code" : "EUR", "country" : "EU"}, {"currency" : "Norwegian Krone", "code" : "NOK", "country" : "Norway"}, {"currency" : "Hungarian Forint", "code" : "HUF", "country" : "Hungary"}, {"currency" : "Czech Koruna", "code" : "CZK", "country" : "Czech"}, {"currency" : "US Dollar", "code" : "USD", "country" : "US"}, {"currency" : "Singapore Dollar", "code" : "SGD", "country" : "Singapore"}, {"currency" : "Hong Kong Dollar", "code" : "HKD", "country" : "HK"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"currency": {"type": "string"}, "code": {"type": "string"}, "country": {"type": "string"}}, "required": ["currency", "code", "country"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "High-Density Image Storage Using Approximate Memory Cells.", "fields" : ["computer data storage", "distributed computing", "jpeg", "codec", "streams", "computer science", "word error rate", "theoretical computer science"], "abstract" : "This paper proposes tailoring image encoding for an approximate storage substrate. We demonstrate that indiscriminately storing encoded images in approximate memory generates unacceptable and uncontrollable quality degradation. The key finding is that errors in the encoded bit streams have non-uniform impact on the decoded image quality. We develop a methodology to determine the relative importance of encoded bits and store them in an approximate storage substrate. The storage cells are optimized to reduce error rate via biasing and are tuned to meet the desired reliability requirement via selective error correction. In a case study with the progressive transform codec (PTC), a precursor to JPEG XR, the proposed approximate image storage system exhibits a 2.7x increase in density of pixels per silicon volume under bounded error rates, and this achievement is additive to the storage savings of PTC compression.", "citation" : "Not cited", "year" : "2016", "departments" : ["Nvidia", "University of Washington", "University of Washington", "Microsoft"], "conf" : "asplos", "authors" : ["Qing Guo.....http://dblp.org/pers/hd/g/Guo:Qing", "Karin Strauss.....http://dblp.org/pers/hd/s/Strauss:Karin", "Luis Ceze.....http://dblp.org/pers/hd/c/Ceze:Luis", "Henrique S. Malvar.....http://dblp.org/pers/hd/m/Malvar:Henrique_S="], "pages" : 14} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "start_url": {"type": "string"}, "display": {"type": "string"}, "background_color": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}}, "required": ["name", "short_name", "start_url", "display", "background_color", "description", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Filip's AES E2EE", "short_name" : "E2EE", "start_url" : ".", "display" : "standalone", "background_color" : "#4CFF4C", "description" : "End to end encryption PWA. Fully working offline", "icons" : [{"src" : "lock.png", "sizes" : "192x192", "type" : "image/png"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "start_url": {"type": "string"}, "display": {"type": "string"}, "background_color": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}}, "required": ["name", "short_name", "start_url", "display", "background_color", "description", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "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" : "Cazarilh", "dpt" : "Hautes-Pyr\u00e9n\u00e9es", "inscrits" : 49, "abs" : 7, "votants" : 42, "blancs" : 9, "nuls" : 2, "exp" : 31, "res" : [{"panneau" : "1", "voix" : 26}, {"panneau" : "2", "voix" : 5}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "lint": {"type": "string"}}, "required": ["build", "lint"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-aqua": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "prettier": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-terser": {"type": "string"}}, "required": ["eslint", "eslint-config-aqua", "eslint-config-prettier", "eslint-plugin-prettier", "prettier", "rollup", "rollup-plugin-terser"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "repository", "bugs", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@crawl/canvas-helper", "version" : "0.2.2", "description" : "HTML5 drawing helper", "main" : "dist/canvas-helper.min.js", "scripts" : {"build" : "rollup --config", "lint" : "eslint src --fix"}, "keywords" : ["html5", "canvas", "drawing"], "author" : "iCrawl <[email protected]>", "license" : "BSD-2-Clause", "repository" : {"type" : "git", "url" : "git://github.com/iCrawl/canvas-helper.git"}, "bugs" : {"url" : "https://github.com/iCrawl/canvas-helper/issues"}, "devDependencies" : {"eslint" : "^7.20.0", "eslint-config-aqua" : "^8.1.0", "eslint-config-prettier" : "^8.1.0", "eslint-plugin-prettier" : "^3.3.1", "prettier" : "^2.2.1", "rollup" : "^2.40.0", "rollup-plugin-terser" : "^7.0.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "lint": {"type": "string"}}, "required": ["build", "lint"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-aqua": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "prettier": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-terser": {"type": "string"}}, "required": ["eslint", "eslint-config-aqua", "eslint-config-prettier", "eslint-plugin-prettier", "prettier", "rollup", "rollup-plugin-terser"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "repository", "bugs", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"generated_at" : "2017-01-27T09:37:38.744912", "required_by" : ["z3c.davapp.zopefile", "zope.html", "dolmen.blob"], "requires" : ["setuptools", "ZODB3", "zope.component", "zope.browser", "zope.container", "zope.contenttype", "zope.event", "zope.filerepresentation", "zope.formlib", "zope.i18nmessageid", "zope.lifecycleevent", "zope.interface", "zope.location", "zope.mimetype", "zope.publisher", "zope.schema", "zope.security", "zope.size"], "package" : "zope.file"} | json_instruct | {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"classifiers": {"type": "array", "items": {"type": "string"}}, "description_content_type": {"type": "string"}, "extensions": {"type": "object", "properties": {"python.details": {"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"email": {"type": "string"}, "role": {"type": "string"}}, "required": ["email", "role"]}}, "document_names": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}, "project_urls": {"type": "object", "properties": {"Home": {"type": "string"}}, "required": ["Home"]}}, "required": ["contacts", "document_names", "project_urls"]}}, "required": ["python.details"]}, "generator": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "metadata_version": {"type": "string"}, "name": {"type": "string"}, "summary": {"type": "string"}, "test_requires": {"type": "array", "items": {"type": "object", "properties": {"requires": {"type": "array", "items": {"type": "string"}}}, "required": ["requires"]}}, "version": {"type": "string"}}, "required": ["classifiers", "description_content_type", "extensions", "generator", "keywords", "license", "metadata_version", "name", "summary", "test_requires", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"classifiers" : ["Development Status :: 4 - Beta", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Operating System :: POSIX", "Operating System :: Microsoft :: Windows", "Topic :: Software Development :: Version Control"], "description_content_type" : "UNKNOWN", "extensions" : {"python.details" : {"contacts" : [{"email" : "[email protected]", "role" : "author"}], "document_names" : {"description" : "DESCRIPTION.rst"}, "project_urls" : {"Home" : "https://www.dulwich.io/"}}}, "generator" : "bdist_wheel (0.29.0)", "keywords" : ["git"], "license" : "Apachev2 or later or GPLv2", "metadata_version" : "2.0", "name" : "dulwich", "summary" : "Python Git Library", "test_requires" : [{"requires" : ["fastimport", "gevent", "geventhttpclient", "mock", "setuptools (>=17.1)"]}], "version" : "0.18.3"} | json_instruct | {"type": "object", "properties": {"classifiers": {"type": "array", "items": {"type": "string"}}, "description_content_type": {"type": "string"}, "extensions": {"type": "object", "properties": {"python.details": {"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"email": {"type": "string"}, "role": {"type": "string"}}, "required": ["email", "role"]}}, "document_names": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}, "project_urls": {"type": "object", "properties": {"Home": {"type": "string"}}, "required": ["Home"]}}, "required": ["contacts", "document_names", "project_urls"]}}, "required": ["python.details"]}, "generator": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "metadata_version": {"type": "string"}, "name": {"type": "string"}, "summary": {"type": "string"}, "test_requires": {"type": "array", "items": {"type": "object", "properties": {"requires": {"type": "array", "items": {"type": "string"}}}, "required": ["requires"]}}, "version": {"type": "string"}}, "required": ["classifiers", "description_content_type", "extensions", "generator", "keywords", "license", "metadata_version", "name", "summary", "test_requires", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"1.1.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.1.2", "1.2"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["1.2"], "meta" : {"description" : "An graph extraction tool for email MBox files", "homepage" : "https://github.com/DistrictDataLabs/tribe", "license" : "MIT"}, "versions" : {"1.1.2" : {"sha256" : "c30a3a89c99a198853dbeb483006b8bac98f4c38f9b8216cf9268ec841c39237", "url" : "https://files.pythonhosted.org/packages/1d/39/7e00eb44de9aa8b62159c30fbea7e68eb37c41946c2ea644b150118234c5/tribe-1.1.2.tar.gz"}, "1.2" : {"sha256" : "ff6f53259dc91387e0f512421c4bcb297314c607b136a6f6e29e68cbdf897e4d", "url" : "https://files.pythonhosted.org/packages/aa/1f/2ed12140f75a04f2f76cbbdfce54998777d84c835ae420707cf5469a21fd/tribe-1.2.tar.gz"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"1.1.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "1.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.1.2", "1.2"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-whr2-cjwc-wj5g", "modified" : "2022-05-01T01:46:58Z", "published" : "2022-05-01T01:46:58Z", "aliases" : ["CVE-2005-0065"], "details" : "The original design of TCP does not check that the TCP sequence number in an ICMP error message is within the range of sequence numbers for data that has been sent but not acknowledged (aka \"TCP sequence number checking\"), which makes it easier for attackers to forge ICMP error messages for specific TCP connections and cause a denial of service, as demonstrated using (1) blind connection-reset attacks with forged \"Destination Unreachable\" messages, (2) blind throughput-reduction attacks with forged \"Source Quench\" messages, or (3) blind throughput-reduction attacks with forged ICMP messages that cause the Path MTU to be reduced. NOTE: CVE-2004-0790, CVE-2004-0791, and CVE-2004-1060 have been SPLIT based on different attacks; CVE-2005-0065, CVE-2005-0066, CVE-2005-0067, and CVE-2005-0068 are related identifiers that are SPLIT based on the underlying vulnerability. While CVE normally SPLITs based on vulnerability, the attack-based identifiers exist due to the variety and number of affected implementations and solutions that address the attacks instead of the underlying vulnerabilities.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2005-0065"}, {"type" : "WEB", "url" : "http://www.gont.com.ar/drafts/icmp-attacks-against-tcp.html"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/13124"}], "database_specific" : {"cwe_ids" : [], "severity" : "HIGH", "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x1e1d62226f52746cabb0ca5dcabafedf797ad7c93bb6e3c178eaefa9b9446e09", "parentHash" : "0x4316b3f307a69eab63aba9b1c5c31d2ec12bf05e16988cfcd17dfb10ffe8125a", "number" : 79330, "timestamp" : 1439467712, "nonce" : "0x546a38393847d94f", "difficulty" : 2351932709697, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x7E6930B63D03e88F5928C5cd6ee3FCee4D714F7F", "extraData" : "0x", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-ng-annotate": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-uglify": {"type": "string"}}, "required": ["gulp", "gulp-concat", "gulp-ng-annotate", "gulp-rename", "gulp-uglify"]}, "peerDependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "auth0-js": {"type": "string"}}, "required": ["angular", "auth0-js"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "bugs", "homepage", "devDependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "angular-auth0", "version" : "1.0.4", "description" : "Auth0.js wrapper for Angular.js", "main" : "angular-auth0.js", "repository" : {"type" : "git", "url" : "git+https://github.com/auth0/angular-auth0.git"}, "author" : "Auth0", "license" : "MIT", "bugs" : {"url" : "https://github.com/auth0/angular-auth0/issues"}, "homepage" : "https://github.com/auth0/angular-auth0#readme", "devDependencies" : {"gulp" : "^3.9.1", "gulp-concat" : "^2.6.0", "gulp-ng-annotate" : "^2.0.0", "gulp-rename" : "^1.2.2", "gulp-uglify" : "^2.0.0"}, "peerDependencies" : {"angular" : "^1.5.8", "auth0-js" : "^7.2.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-ng-annotate": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-uglify": {"type": "string"}}, "required": ["gulp", "gulp-concat", "gulp-ng-annotate", "gulp-rename", "gulp-uglify"]}, "peerDependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "auth0-js": {"type": "string"}}, "required": ["angular", "auth0-js"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "bugs", "homepage", "devDependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"alpinejs": {"type": "string"}, "browser-sync": {"type": "string"}, "graceful-fs": {"type": "string"}, "gulp": {"type": "string"}, "gulp-accessibility": {"type": "string"}, "gulp-data": {"type": "string"}, "gulp-html": {"type": "string"}, "gulp-nunjucks-render": {"type": "string"}, "gulp-postcss": {"type": "string"}, "gulp-rename": {"type": "string"}, "js-yaml": {"type": "string"}}, "required": ["alpinejs", "browser-sync", "graceful-fs", "gulp", "gulp-accessibility", "gulp-data", "gulp-html", "gulp-nunjucks-render", "gulp-postcss", "gulp-rename", "js-yaml"]}, "dependencies": {"type": "object", "properties": {"@tailwindcss/forms": {"type": "string"}, "@tailwindcss/typography": {"type": "string"}, "autoprefixer": {"type": "string"}, "tailwindcss": {"type": "string"}}, "required": ["@tailwindcss/forms", "@tailwindcss/typography", "autoprefixer", "tailwindcss"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "my-website", "version" : "1.0.0", "description" : "", "main" : "index.html", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Ben Honda", "license" : "ISC", "devDependencies" : {"alpinejs" : "^3.9.5", "browser-sync" : "^2.27.9", "graceful-fs" : "^4.2.9", "gulp" : "^4.0.2", "gulp-accessibility" : "^3.1.1", "gulp-data" : "^1.3.1", "gulp-html" : "^4.0.0", "gulp-nunjucks-render" : "^2.2.3", "gulp-postcss" : "^9.0.1", "gulp-rename" : "^2.0.0", "js-yaml" : "^4.1.0"}, "dependencies" : {"@tailwindcss/forms" : "^0.5.0", "@tailwindcss/typography" : "^0.5.2", "autoprefixer" : "^10.4.4", "tailwindcss" : "^3.0.23"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"alpinejs": {"type": "string"}, "browser-sync": {"type": "string"}, "graceful-fs": {"type": "string"}, "gulp": {"type": "string"}, "gulp-accessibility": {"type": "string"}, "gulp-data": {"type": "string"}, "gulp-html": {"type": "string"}, "gulp-nunjucks-render": {"type": "string"}, "gulp-postcss": {"type": "string"}, "gulp-rename": {"type": "string"}, "js-yaml": {"type": "string"}}, "required": ["alpinejs", "browser-sync", "graceful-fs", "gulp", "gulp-accessibility", "gulp-data", "gulp-html", "gulp-nunjucks-render", "gulp-postcss", "gulp-rename", "js-yaml"]}, "dependencies": {"type": "object", "properties": {"@tailwindcss/forms": {"type": "string"}, "@tailwindcss/typography": {"type": "string"}, "autoprefixer": {"type": "string"}, "tailwindcss": {"type": "string"}}, "required": ["@tailwindcss/forms", "@tailwindcss/typography", "autoprefixer", "tailwindcss"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "description", "type", "tags", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Stopping Power", "description" : "", "type" : "effects", "tags" : ["realism", "roleplay"], "ignore" : [".git/*", "README.md", "LICENSE"]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "description", "type", "tags", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "var _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = overlay;\n\nvar _color = _interopRequireDefault(require(\"color\"));\n\nvar _reactNative = require(\"react-native\");\n\nvar _DarkTheme = _interopRequireDefault(require(\"./DarkTheme\"));\n\nfunction overlay() {\n var elevation = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 1;\n var surfaceColor = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _DarkTheme.default.colors.surface;\n\n if (elevation instanceof _reactNative.Animated.Value) {\n var inputRange = [0, 1, 2, 3, 8, 24];\n return elevation.interpolate({\n inputRange: inputRange,\n outputRange: inputRange.map(function (elevation) {\n return calculateColor(surfaceColor, elevation);\n })\n });\n }\n\n return calculateColor(surfaceColor, elevation);\n}\n\nfunction calculateColor(surfaceColor, elevation) {\n var overlayTransparency;\n\n if (elevation >= 1 && elevation <= 24) {\n overlayTransparency = elevationOverlayTransparency[elevation];\n } else if (elevation > 24) {\n overlayTransparency = elevationOverlayTransparency[24];\n } else {\n overlayTransparency = elevationOverlayTransparency[1];\n }\n\n return (0, _color.default)(surfaceColor).mix((0, _color.default)('white'), overlayTransparency * 0.01).hex();\n}\n\nvar elevationOverlayTransparency = {\n 1: 5,\n 2: 7,\n 3: 8,\n 4: 9,\n 5: 10,\n 6: 11,\n 7: 11.5,\n 8: 12,\n 9: 12.5,\n 10: 13,\n 11: 13.5,\n 12: 14,\n 13: 14.25,\n 14: 14.5,\n 15: 14.75,\n 16: 15,\n 17: 15.12,\n 18: 15.24,\n 19: 15.36,\n 20: 15.48,\n 21: 15.6,\n 22: 15.72,\n 23: 15.84,\n 24: 16\n};", "map" : null, "metadata" : {}, "sourceType" : "script"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}}, "required": ["url", "name", "description", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"url" : "https://github.com/jeremydaly/eleventy-tailwind-template", "name" : "Eleventy Tailwind Template", "description" : "Starter template for building Eleventy static sites with Tailwind CSS automatically generating the corresponding styles and writing them to a static CSS file.", "author" : "jeremydaly"} | json_instruct | {"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}}, "required": ["url", "name", "description", "author"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "eu": {"type": "integer"}, "duration": {"type": "integer"}, "item_inputs": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["item", "amount"]}}, "fluid_inputs": {"type": "object", "properties": {"fluid": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["fluid", "amount"]}, "item_outputs": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["item", "amount"]}}}, "required": ["type", "eu", "duration", "item_inputs", "fluid_inputs", "item_outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "modern_industrialization:assembler", "eu" : 32, "duration" : 1000, "item_inputs" : [{"item" : "modern_industrialization:highly_advanced_upgrade", "amount" : 32}, {"item" : "modern_industrialization:quantum_circuit", "amount" : 8}, {"item" : "modern_industrialization:singularity", "amount" : 1}, {"item" : "modern_industrialization:quantum_circuit_board", "amount" : 1}], "fluid_inputs" : {"fluid" : "modern_industrialization:uu_matter", "amount" : 50}, "item_outputs" : [{"item" : "modern_industrialization:quantum_upgrade", "amount" : 1}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "eu": {"type": "integer"}, "duration": {"type": "integer"}, "item_inputs": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["item", "amount"]}}, "fluid_inputs": {"type": "object", "properties": {"fluid": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["fluid", "amount"]}, "item_outputs": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["item", "amount"]}}}, "required": ["type", "eu", "duration", "item_inputs", "fluid_inputs", "item_outputs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"inputFiles": {"type": "array", "items": {"type": "string"}}, "theme": {"type": "string"}, "readme": {"type": "string"}, "mode": {"type": "string"}, "exclude": {"type": "string"}, "out": {"type": "string"}, "disableOutputCheck": {"type": "boolean"}, "name": {"type": "string"}}, "required": ["inputFiles", "theme", "readme", "mode", "exclude", "out", "disableOutputCheck", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"inputFiles" : ["./everflow"], "theme" : "./docs/themes/typedoc-everflow", "readme" : "./docs/README.md", "mode" : "file", "exclude" : "**/*-error.ts", "out" : "./docs/dist", "disableOutputCheck" : true, "name" : "API"} | json_instruct | {"type": "object", "properties": {"inputFiles": {"type": "array", "items": {"type": "string"}}, "theme": {"type": "string"}, "readme": {"type": "string"}, "mode": {"type": "string"}, "exclude": {"type": "string"}, "out": {"type": "string"}, "disableOutputCheck": {"type": "boolean"}, "name": {"type": "string"}}, "required": ["inputFiles", "theme", "readme", "mode", "exclude", "out", "disableOutputCheck", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "andantino", "definition" : "Rather quicker than andante; between that allegretto. Note: Some, taking andante in its original sense of \"going,\" and andantino as its diminutive, or \"less going,\" define the latter as slower than andante."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"0-19": {"type": "string"}, "20-29": {"type": "string"}, "30-39": {"type": "string"}, "40-49": {"type": "string"}, "50-59": {"type": "string"}, "60-69": {"type": "string"}, "70-79": {"type": "string"}, "80+": {"type": "string"}, "total": {"type": "string"}}, "required": ["0-19", "20-29", "30-39", "40-49", "50-59", "60-69", "70-79", "80+", "total"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"0-19" : "6", "20-29" : "59", "30-39" : "113", "40-49" : "374", "50-59" : "1045", "60-69" : "2504", "70-79" : "4169", "80+" : "7181", "total" : "15453"} | json_instruct | {"type": "object", "properties": {"0-19": {"type": "string"}, "20-29": {"type": "string"}, "30-39": {"type": "string"}, "40-49": {"type": "string"}, "50-59": {"type": "string"}, "60-69": {"type": "string"}, "70-79": {"type": "string"}, "80+": {"type": "string"}, "total": {"type": "string"}}, "required": ["0-19", "20-29", "30-39", "40-49", "50-59", "60-69", "70-79", "80+", "total"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"commit": {"type": "object", "properties": {"commit": {"type": "string"}, "author": {"type": "string"}, "time": {"type": "string"}, "files": {"type": "integer"}, "merge": {"type": "boolean"}, "message": {"type": "string"}}, "required": ["commit", "author", "time", "files", "merge", "message"]}, "repo": {"type": "string"}, "pkg": {"type": "string"}}, "required": ["commit", "repo", "pkg"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"commit" : {"commit" : "aed229fc2156def76d8b644f6a3c9dceb55256bb", "author" : "Scott Chamberlain <[email protected]>", "time" : "2020-11-02 19:55:19", "files" : 2, "merge" : false, "message" : "replace CI badge in readme\n"}, "repo" : "https://github.com/ropensci/finch", "pkg" : "finch"} | json_instruct | {"type": "object", "properties": {"commit": {"type": "object", "properties": {"commit": {"type": "string"}, "author": {"type": "string"}, "time": {"type": "string"}, "files": {"type": "integer"}, "merge": {"type": "boolean"}, "message": {"type": "string"}}, "required": ["commit", "author", "time", "files", "merge", "message"]}, "repo": {"type": "string"}, "pkg": {"type": "string"}}, "required": ["commit", "repo", "pkg"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Anuling Lejos II, Mendez, Cavite, CALABARZON (Region IV-A), PH", "locale" : "ph.calabarzon-region-iv-a.cavite.mendez.anuling-lejos-ii", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "4", "region_reference" : "41", "region_name" : "CALABARZON (Region IV-A)", "province_id" : "24", "province_reference" : "24", "province_name" : "Cavite", "city_id" : "865", "city_reference" : "431", "city_name" : "Mendez", "barangay_id" : "24846", "barangay_reference" : "10520", "barangay_name" : "Anuling Lejos II"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[120.895348, 14.1265], [120.896523, 14.1255], [120.897133, 14.12472], [120.89801, 14.1237], [120.898903, 14.12305], [120.89959, 14.12077], [120.894402, 14.11963], [120.882843, 14.11709], [120.879784, 14.12295], [120.879662, 14.12305], [120.878967, 14.12325], [120.877663, 14.1238], [120.876518, 14.12445], [120.884644, 14.12731], [120.886848, 14.12814], [120.88916, 14.12744], [120.891693, 14.1279], [120.89222, 14.12653], [120.893356, 14.12667], [120.894707, 14.12604], [120.895348, 14.1265]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}}, "required": ["lint"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bin": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"standard": {"type": "string"}}, "required": ["standard"]}, "dependencies": {"type": "object", "properties": {"get-them-args": {"type": "string"}}, "required": ["get-them-args"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "scripts", "keywords", "bin", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@tiaanduplessis/scanports", "version" : "1.0.0", "description" : "Modest port scanner", "main" : "index.js", "repository" : "https://github.com/tiaanduplessis/scanports", "author" : "Tiaan du Plessis <[email protected]>", "license" : "MIT", "scripts" : {"lint" : "standard --fix"}, "keywords" : ["scan", "ports", "port-scanner"], "bin" : "cli.js", "devDependencies" : {"standard" : "^12.0.1"}, "dependencies" : {"get-them-args" : "^1.3.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}}, "required": ["lint"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "bin": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"standard": {"type": "string"}}, "required": ["standard"]}, "dependencies": {"type": "object", "properties": {"get-them-args": {"type": "string"}}, "required": ["get-them-args"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "scripts", "keywords", "bin", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "build", "start"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@types/react", "@types/react-dom", "react", "react-dom", "ts-loader", "typescript", "webpack", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "repository", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "typescript-with-react", "version" : "1.0.0", "description" : "repo for the egghead course: Use Typescript to develop React applications", "main" : "index.js", "scripts" : {"test" : "jest", "build" : "webpack ./webpack.config.js", "start" : "webpack-dev-server ./webpack.config.js --content-base ./public"}, "keywords" : ["react", "typescript", "jest"], "author" : "David Jim\u00e9nez", "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/runnerdave/typescript-with-react-basics.git"}, "dependencies" : {"@types/react" : "^16.0.29", "@types/react-dom" : "^16.0.3", "react" : "^16.2.0", "react-dom" : "^16.2.0", "ts-loader" : "^3.2.0", "typescript" : "^2.6.2", "webpack" : "^3.10.0", "webpack-dev-server" : "^2.9.7"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "build", "start"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@types/react", "@types/react-dom", "react", "react-dom", "ts-loader", "typescript", "webpack", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "repository", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "displayId": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "emailAddress": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "emailAddress", "displayName"]}, "authorTimestamp": {"type": "integer"}, "message": {"type": "string"}, "committer": {"type": "object", "properties": {"name": {"type": "string"}, "emailAddress": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "emailAddress", "displayName"]}, "committerTimestamp": {"type": "integer"}, "parents": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "displayId": {"type": "string"}}, "required": ["id", "displayId"]}}}, "required": ["id", "displayId", "author", "authorTimestamp", "message", "committer", "committerTimestamp", "parents"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "abcdef0123abcdef4567abcdef8987abcdef6543", "displayId" : "abcdef0123a", "author" : {"name" : "charlie", "emailAddress" : "[email protected]", "displayName" : "Charlie Brown"}, "authorTimestamp" : 1484800877151, "message" : "WIP on feature 1", "committer" : {"name" : "john", "emailAddress" : "[email protected]", "displayName" : "John Smith"}, "committerTimestamp" : 1594900977151, "parents" : [{"id" : "abcdef0123abcdef4567abcdef8987abcdef6543", "displayId" : "abcdef0"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "displayId": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "emailAddress": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "emailAddress", "displayName"]}, "authorTimestamp": {"type": "integer"}, "message": {"type": "string"}, "committer": {"type": "object", "properties": {"name": {"type": "string"}, "emailAddress": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "emailAddress", "displayName"]}, "committerTimestamp": {"type": "integer"}, "parents": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "displayId": {"type": "string"}}, "required": ["id", "displayId"]}}}, "required": ["id", "displayId", "author", "authorTimestamp", "message", "committer", "committerTimestamp", "parents"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {}}}, "required": ["name", "email", "designation", "mobile"]}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "organisationType", "telephone", "mainAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contacts" : [{"name" : "MR.ALKA GUPTA", "email" : "", "designation" : "", "mobile" : []}], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=7558", "name" : "SAMRIDHI SOCIETY", "primaryEmail" : "[email protected]", "organisationType" : ["Support"], "telephone" : ["919358838895"], "mainAddrress" : {"state" : "Uttar Pradesh", "address" : ["234, SARAI SULTANI", "ALIGARH", "Aligarh", "Uttar Pradesh", "202001"]}} | json_instruct | {"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "designation": {"type": "string"}, "mobile": {"type": "array", "items": {}}}, "required": ["name", "email", "designation", "mobile"]}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "organisationType", "telephone", "mainAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 1812070, "parent" : 1812, "name" : "GUNUNG AGUNG", "latitude" : "-4.2186964239993", "longitude" : "105.04219243098", "postal" : [34483, 34486, 34783], "children" : [1812070001, 1812070002, 1812070003, 1812070004, 1812070005, 1812070006, 1812070007, 1812070009, 1812070010, 1812070011, 1812070012, 1812070013]} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$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": {"actual": {"type": "number"}, "country": {"type": "string"}, "currency": {"type": "string"}, "name": {"type": "string"}, "previous": {"type": "number"}, "timestamp": {"type": "integer"}, "volatility": {"type": "integer"}}, "required": ["actual", "country", "currency", "name", "previous", "timestamp", "volatility"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"actual" : 117.0, "country" : "United States", "currency" : "USD", "name" : "U.S. Baker Hughes Oil Rig Count", "previous" : 136.0, "timestamp" : 929725200, "volatility" : 1}, {"actual" : 59.8, "country" : "United States", "currency" : "USD", "name" : "CFTC Crude Oil speculative net positions", "previous" : 34.3, "timestamp" : 929737800, "volatility" : 1}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"actual": {"type": "number"}, "country": {"type": "string"}, "currency": {"type": "string"}, "name": {"type": "string"}, "previous": {"type": "number"}, "timestamp": {"type": "integer"}, "volatility": {"type": "integer"}}, "required": ["actual", "country", "currency", "name", "previous", "timestamp", "volatility"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "babel-loader": {"type": "string"}, "core-js": {"type": "string"}, "regenerator-runtime": {"type": "string"}, "uuid": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/preset-env", "babel-loader", "core-js", "regenerator-runtime", "uuid", "webpack", "webpack-cli"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "todoapp", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "webpack --mode development", "build" : "webpack --mode production"}, "keywords" : [], "author" : "", "license" : "ISC", "dependencies" : {"@babel/cli" : "^7.13.14", "@babel/core" : "^7.13.14", "@babel/preset-env" : "^7.13.12", "babel-loader" : "^8.2.2", "core-js" : "^3.10.1", "regenerator-runtime" : "^0.13.7", "uuid" : "^8.3.2", "webpack" : "^5.31.0", "webpack-cli" : "^4.6.0"}, "devDependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "babel-loader": {"type": "string"}, "core-js": {"type": "string"}, "regenerator-runtime": {"type": "string"}, "uuid": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/preset-env", "babel-loader", "core-js", "regenerator-runtime", "uuid", "webpack", "webpack-cli"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"examine" : "This should be added to a track after the joint."} | json_instruct | {"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-route": {"type": "string"}, "angular-resource": {"type": "string"}, "angular-ui-bootstrap-bower": {"type": "string"}, "bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "fontawesome": {"type": "string"}}, "required": ["angular", "angular-route", "angular-resource", "angular-ui-bootstrap-bower", "bootstrap", "jquery", "fontawesome"]}}, "required": ["name", "description", "main", "authors", "license", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Project Name", "description" : "", "main" : "index.html", "authors" : ["SIL"], "license" : "MIT", "private" : true, "ignore" : ["**/.*", "node_modules", "vendor", "vendor_bower", "test", "tests"], "dependencies" : {"angular" : "~1.3.x", "angular-route" : "~1.3.x", "angular-resource" : "~1.3.x", "angular-ui-bootstrap-bower" : "~0.x", "bootstrap" : "~3.2.x", "jquery" : "~2.1.x", "fontawesome" : "~4.2.x"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-route": {"type": "string"}, "angular-resource": {"type": "string"}, "angular-ui-bootstrap-bower": {"type": "string"}, "bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "fontawesome": {"type": "string"}}, "required": ["angular", "angular-route", "angular-resource", "angular-ui-bootstrap-bower", "bootstrap", "jquery", "fontawesome"]}}, "required": ["name", "description", "main", "authors", "license", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "null"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Learning to Align the Source Code to the Compiled Object Code.", "fields" : ["code generation", "source code", "object code", "programming language", "debug symbol"], "abstract" : null, "citation" : "Citations (3)", "year" : "2017", "departments" : ["Tel Aviv University"], "conf" : "icml", "authors" : ["Dor Levy.....http://dblp.org/pers/hd/l/Levy:Dor", "Lior Wolf.....http://dblp.org/pers/hd/w/Wolf:Lior"], "pages" : 9} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "null"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "linked_articles": {"type": "array", "items": {}}}, "required": ["title", "description", "linked_articles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "TEST_TITLE", "description" : "French institutions of higher education", "linked_articles" : []} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "linked_articles": {"type": "array", "items": {}}}, "required": ["title", "description", "linked_articles"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"access_token": {"type": "string"}, "refresh_token": {"type": "string"}, "scope": {"type": "string"}, "token_type": {"type": "string"}, "expiry_date": {"type": "integer"}}, "required": ["access_token", "refresh_token", "scope", "token_type", "expiry_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"access_token" : "ya29.GlshB9ejmv8Dqe2dlg3RtP1xBi2cygXiWCp-iTw8JhK5WwAXqjpN7SE1PQIaPB8c9oGotOI0B5kfaoRyqGcaJGdjK9hLXdj8qkog1oI7iut7MFsMuVVl2EP08unc", "refresh_token" : "1/GxAxXFz-WwuZkytjVUWL8wdxTrEBPVdPFKD-0SDAUnA", "scope" : "https://www.googleapis.com/auth/drive.metadata.readonly", "token_type" : "Bearer", "expiry_date" : 1559884586698} | json_instruct | {"type": "object", "properties": {"access_token": {"type": "string"}, "refresh_token": {"type": "string"}, "scope": {"type": "string"}, "token_type": {"type": "string"}, "expiry_date": {"type": "integer"}}, "required": ["access_token", "refresh_token", "scope", "token_type", "expiry_date"], "$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.