input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "010802050701", "variable1" : 0.6817, "variable2" : 0.7254, "variable3" : "B"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Key ID": {"type": "object", "properties": {"name": {"type": "string"}, "key": {"type": "string"}}, "required": ["name", "key"]}}, "required": ["Key ID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Key ID" : {"name" : "Key ID", "key" : "kid"}} | json_instruct | {"type": "object", "properties": {"Key ID": {"type": "object", "properties": {"name": {"type": "string"}, "key": {"type": "string"}}, "required": ["name", "key"]}}, "required": ["Key ID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"redirections": {"type": "array", "items": {"type": "object", "properties": {"source_path": {"type": "string"}, "redirect_url": {"type": "string"}}, "required": ["source_path", "redirect_url"]}}}, "required": ["redirections"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"redirections" : [{"source_path" : "docs/tutorials/excel-office-scripts-tutorial.md", "redirect_url" : "/office/dev/scripts/tutorials/excel-tutorial"}]} | json_instruct | {"type": "object", "properties": {"redirections": {"type": "array", "items": {"type": "object", "properties": {"source_path": {"type": "string"}, "redirect_url": {"type": "string"}}, "required": ["source_path", "redirect_url"]}}}, "required": ["redirections"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Dmitry Terekhov": {"type": "string"}}, "required": ["Dmitry Terekhov"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}, "submodules": {"type": "boolean"}}, "required": ["git", "tag", "submodules"]}, "source_files": {"type": "string"}, "dependencies": {"type": "object", "properties": {"MBProgressHUD": {"type": "array", "items": {}}, "GoogleAnalytics": {"type": "array", "items": {}}}, "required": ["MBProgressHUD", "GoogleAnalytics"]}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "social_media_url", "platforms", "requires_arc", "source", "source_files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "DTerekhovKit", "version" : "0.0.5", "summary" : "Simple framework contains helpers", "homepage" : "https://github.com/dterekhov/DTerekhovKit", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Dmitry Terekhov" : "[email protected]"}, "social_media_url" : "https://www.facebook.com/profile.php?id=100010690424403", "platforms" : {"ios" : "7.0"}, "requires_arc" : true, "source" : {"git" : "https://github.com/dterekhov/DTerekhovKit.git", "tag" : "v0.0.5", "submodules" : true}, "source_files" : "DTerekhovKit/**/*.{h,m}", "dependencies" : {"MBProgressHUD" : [], "GoogleAnalytics" : []}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Dmitry Terekhov": {"type": "string"}}, "required": ["Dmitry Terekhov"]}, "social_media_url": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}, "submodules": {"type": "boolean"}}, "required": ["git", "tag", "submodules"]}, "source_files": {"type": "string"}, "dependencies": {"type": "object", "properties": {"MBProgressHUD": {"type": "array", "items": {}}, "GoogleAnalytics": {"type": "array", "items": {}}}, "required": ["MBProgressHUD", "GoogleAnalytics"]}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "social_media_url", "platforms", "requires_arc", "source", "source_files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"place_name" : "Rawl", "state_name" : "West Virginia", "state_abbrv" : "WV", "lat" : "37.6498", "long" : "-82.2196"} | json_instruct | {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"main_login": {"type": "string"}, "main_signup": {"type": "string"}, "login_title": {"type": "string"}, "login_forget_password": {"type": "string"}, "login_no_account": {"type": "string"}, "login_create_new_account": {"type": "string"}, "login_with_google": {"type": "string"}, "login_with_facebook": {"type": "string"}, "login_button": {"type": "string"}, "login_email": {"type": "string"}, "login_password": {"type": "string"}, "signup_title": {"type": "string"}, "signup_already_have_account": {"type": "string"}, "signup_login_with_existing_account": {"type": "string"}, "signup_button": {"type": "string"}, "signup_with_google": {"type": "string"}, "signup_with_facebook": {"type": "string"}, "signup_type_email": {"type": "string"}, "signup_type_email_again": {"type": "string"}, "signup_type_password": {"type": "string"}, "signup_type_password_again": {"type": "string"}, "signup_terms_and_conditions": {"type": "string"}}, "required": ["main_login", "main_signup", "login_title", "login_forget_password", "login_no_account", "login_create_new_account", "login_with_google", "login_with_facebook", "login_button", "login_email", "login_password", "signup_title", "signup_already_have_account", "signup_login_with_existing_account", "signup_button", "signup_with_google", "signup_with_facebook", "signup_type_email", "signup_type_email_again", "signup_type_password", "signup_type_password_again", "signup_terms_and_conditions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"main_login" : "Log in", "main_signup" : "Sign up", "login_title" : "Log in", "login_forget_password" : "Forget password?", "login_no_account" : "Don't have account?", "login_create_new_account" : "Create new account", "login_with_google" : "Log in with Google", "login_with_facebook" : "Log in with Facebook", "login_button" : "Log in", "login_email" : "Email", "login_password" : "Password", "signup_title" : "Create account", "signup_already_have_account" : "Already have account?", "signup_login_with_existing_account" : "Log in", "signup_button" : "Sign up", "signup_with_google" : "Continue with Google", "signup_with_facebook" : "Continue with Facebook", "signup_type_email" : "Email", "signup_type_email_again" : "Type email again", "signup_type_password" : "Password", "signup_type_password_again" : "Type password again", "signup_terms_and_conditions" : "*By logging in, you agree to the Terms of Use and understand that the information will be processed in accordance with the Service Privacy Statement"} | json_instruct | {"type": "object", "properties": {"main_login": {"type": "string"}, "main_signup": {"type": "string"}, "login_title": {"type": "string"}, "login_forget_password": {"type": "string"}, "login_no_account": {"type": "string"}, "login_create_new_account": {"type": "string"}, "login_with_google": {"type": "string"}, "login_with_facebook": {"type": "string"}, "login_button": {"type": "string"}, "login_email": {"type": "string"}, "login_password": {"type": "string"}, "signup_title": {"type": "string"}, "signup_already_have_account": {"type": "string"}, "signup_login_with_existing_account": {"type": "string"}, "signup_button": {"type": "string"}, "signup_with_google": {"type": "string"}, "signup_with_facebook": {"type": "string"}, "signup_type_email": {"type": "string"}, "signup_type_email_again": {"type": "string"}, "signup_type_password": {"type": "string"}, "signup_type_password_again": {"type": "string"}, "signup_terms_and_conditions": {"type": "string"}}, "required": ["main_login", "main_signup", "login_title", "login_forget_password", "login_no_account", "login_create_new_account", "login_with_google", "login_with_facebook", "login_button", "login_email", "login_password", "signup_title", "signup_already_have_account", "signup_login_with_existing_account", "signup_button", "signup_with_google", "signup_with_facebook", "signup_type_email", "signup_type_email_again", "signup_type_password", "signup_type_password_again", "signup_terms_and_conditions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"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", "29", "30", "31", "32"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"edges" : [[3, 12], [10, 3], [19, 3], [26, 3], [32, 3], [3, 15], [8, 23], [19, 3], [26, 3], [11, 3], [3, 25], [3, 5], [3, 25], [3, 6], [3, 29], [3, 8], [20, 3], [15, 3], [26, 0], [3, 4], [18, 17], [3, 1], [28, 3], [3, 5], [3, 5], [30, 7], [5, 3], [12, 15], [3, 31], [3, 21], [3, 2], [5, 3], [15, 3], [3, 17], [27, 3], [3, 2], [3, 11], [3, 19], [3, 12], [21, 3], [13, 3], [22, 24], [3, 16], [23, 3], [17, 9], [5, 3], [3, 25], [14, 3], [17, 3]], "features" : {"0" : "1", "1" : "1", "2" : "2", "3" : "42", "4" : "1", "5" : "6", "6" : "1", "7" : "1", "8" : "2", "9" : "1", "10" : "1", "11" : "2", "12" : "3", "13" : "1", "14" : "1", "15" : "4", "16" : "1", "17" : "4", "18" : "1", "19" : "3", "20" : "1", "21" : "2", "22" : "1", "23" : "2", "24" : "1", "25" : "3", "26" : "3", "27" : "1", "28" : "1", "29" : "1", "30" : "1", "31" : "1", "32" : "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"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"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", "29", "30", "31", "32"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "I Just Want To Stay With You-The King\u6c38\u8fdc\u7684\u541b\u4e3b\u63d2\u66f2", "author" : "Zion.T", "musicType" : "\u5f71\u89c6", "musicNo" : "0012383"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"published" : "2015-09-28T21:30:21Z", "media-type" : "Blog", "title" : "Let's talk scarves", "id" : "14a3a81e-f0de-4901-983a-6f55296e692f", "content" : "Because it is a crisp 80 degrees today in the Rocket City, let's talk about scarves.\u00a0 Okay, true confession: it really has to be cool for me to wear a scarf, I can't wear them year-round. In fact, this past summer, I looked at my scarf rack and wondered if scarves were a trend of the past. #nope Scarf holders: Amazon\nI like scarves because they are: -Easy: They instantly give jeans and a tee a polished look, and disguise the fact that you overslept and got ready in 12 minutes. And when I say you, I mean me most mornings. -Inexpensive: There is no reason to spend $40 on department store scarves. I buy mine at Target, where the quality is just as good and the trends are on point.\nThis year buffalo check is hoooge. -Versatile: You can change the look of your decade-old coat and not break the bank with a different scarf. I like neutral coats and bright scarves.\u00a0 I am pretty set on scarves this season, so I am not going to go bananas with any new ones. Especially since my Stitch Fix included a black and white plaid infinity this month (scarf #2 in the first photo). What are your thoughts? Are you a fan of scarves?\nJoining in with:", "source" : "team skelley the blog"} | json_instruct | {"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"animations": {"type": "array", "items": {"type": "object", "properties": {"loop": {"type": "boolean"}, "offsets": {"type": "array", "items": {"type": "integer"}}, "anim": {"type": "string"}, "fps": {"type": "integer"}, "name": {"type": "string"}, "indices": {"type": "array", "items": {}}}, "required": ["loop", "offsets", "anim", "fps", "name", "indices"]}}, "no_antialiasing": {"type": "boolean"}, "image": {"type": "string"}, "position": {"type": "array", "items": {"type": "integer"}}, "healthicon": {"type": "string"}, "flip_x": {"type": "boolean"}, "healthbar_colors": {"type": "array", "items": {"type": "integer"}}, "camera_position": {"type": "array", "items": {"type": "integer"}}, "sing_duration": {"type": "number"}, "scale": {"type": "number"}}, "required": ["animations", "no_antialiasing", "image", "position", "healthicon", "flip_x", "healthbar_colors", "camera_position", "sing_duration", "scale"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"animations" : [{"loop" : true, "offsets" : [37, -16], "anim" : "singLEFT", "fps" : 24, "name" : "Left", "indices" : []}, {"loop" : true, "offsets" : [20, -150], "anim" : "singDOWN", "fps" : 24, "name" : "Down", "indices" : []}, {"loop" : true, "offsets" : [60, 7], "anim" : "singUP", "fps" : 24, "name" : "Up", "indices" : []}, {"loop" : true, "offsets" : [64, -21], "anim" : "singRIGHT", "fps" : 24, "name" : "Right", "indices" : []}, {"loop" : true, "offsets" : [0, 0], "anim" : "idle", "fps" : 24, "name" : "Idle", "indices" : []}, {"offsets" : [176, 73], "indices" : [], "fps" : 24, "anim" : "hey", "loop" : false, "name" : "end"}], "no_antialiasing" : false, "image" : "characters/sadcloud", "position" : [-20, 70], "healthicon" : "cloud", "flip_x" : false, "healthbar_colors" : [255, 174, 185], "camera_position" : [20, 110], "sing_duration" : 6.1, "scale" : 0.7} | json_instruct | {"type": "object", "properties": {"animations": {"type": "array", "items": {"type": "object", "properties": {"loop": {"type": "boolean"}, "offsets": {"type": "array", "items": {"type": "integer"}}, "anim": {"type": "string"}, "fps": {"type": "integer"}, "name": {"type": "string"}, "indices": {"type": "array", "items": {}}}, "required": ["loop", "offsets", "anim", "fps", "name", "indices"]}}, "no_antialiasing": {"type": "boolean"}, "image": {"type": "string"}, "position": {"type": "array", "items": {"type": "integer"}}, "healthicon": {"type": "string"}, "flip_x": {"type": "boolean"}, "healthbar_colors": {"type": "array", "items": {"type": "integer"}}, "camera_position": {"type": "array", "items": {"type": "integer"}}, "sing_duration": {"type": "number"}, "scale": {"type": "number"}}, "required": ["animations", "no_antialiasing", "image", "position", "healthicon", "flip_x", "healthbar_colors", "camera_position", "sing_duration", "scale"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"address": {"type": "string"}, "trackStartDate": {"type": "string"}, "trackStartUnixTimestamp": {"type": "integer"}, "pingStats": {"type": "array", "items": {"type": "object", "properties": {"0": {"type": "integer"}}, "required": ["0"]}}}, "required": ["address", "trackStartDate", "trackStartUnixTimestamp", "pingStats"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"address" : "ban_1k1r7hqbiqi6sm7gm5p5rigg45ycyh9hjc153kpd4afz6snirg9q9ff4y8xm", "trackStartDate" : "12/5/2021 2:22:31 AM", "trackStartUnixTimestamp" : 1638688951337, "pingStats" : [{"0" : 95}]} | json_instruct | {"type": "object", "properties": {"address": {"type": "string"}, "trackStartDate": {"type": "string"}, "trackStartUnixTimestamp": {"type": "integer"}, "pingStats": {"type": "array", "items": {"type": "object", "properties": {"0": {"type": "integer"}}, "required": ["0"]}}}, "required": ["address", "trackStartDate", "trackStartUnixTimestamp", "pingStats"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"className": {"type": "string"}, "methods": {"type": "object", "properties": {"getFillContext": {"type": "string"}}, "required": ["getFillContext"]}, "path": {"type": "string"}, "typeName": {"type": "string"}}, "required": ["className", "methods", "path", "typeName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"className" : "io.deephaven.engine.table.impl.DefaultGetContext", "methods" : {"getFillContext" : "*Overload 1* \n :return: io.deephaven.engine.table.ChunkSource.FillContext\n \n*Overload 2* \n :param context: io.deephaven.engine.table.ChunkSource.GetContext\n :return: io.deephaven.engine.table.ChunkSource.FillContext"}, "path" : "io.deephaven.engine.table.impl.DefaultGetContext", "typeName" : "class"} | json_instruct | {"type": "object", "properties": {"className": {"type": "string"}, "methods": {"type": "object", "properties": {"getFillContext": {"type": "string"}}, "required": ["getFillContext"]}, "path": {"type": "string"}, "typeName": {"type": "string"}}, "required": ["className", "methods", "path", "typeName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_71nqizx", "name" : "omgitsduane"}, "date" : {"day" : 1628899200, "full" : 1628959696, "month" : 1627776000, "week" : 1628380800}, "id" : "t3_p4bjgi", "picture" : {"filesize" : 90681, "fullUrl" : "https://preview.redd.it/jg9aszegrch71.jpg?width=4000&format=pjpg&auto=webp&s=d9de75d479f2fbd4c44619d2622eee5fa90bee54", "hash" : "8f57699f57", "height" : 480, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAMABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQQH/8QAIhAAAgICAgICAwAAAAAAAAAAAQIDEQQFABIhMQZCE2GR/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgP/xAAYEQADAQEAAAAAAAAAAAAAAAAAARIhAv/aAAwDAQACEQMRAD8Al0Xx7UabUSNtp4Z2xWR2euyxh1P1H3PU2D5oj1xabF0uNiRQ5IVVimVgmOSfyMY7WQL2Lp79D9g8z3QbfJydvJHMQTjB8lHFgmQR2GNGifJF1dcT0kSTSyTSgvK7d2YsbZiQST/eTitG+2sP/9k=", "url" : "https://preview.redd.it/jg9aszegrch71.jpg?width=640&crop=smart&auto=webp&s=1eed61220694c91dfc22269c5afc81a3f3af41be", "width" : 640}, "score" : {"comments" : 2, "downs" : 0, "ratio" : 0.95, "ups" : 28, "value" : 28}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "Getting close to painting ready for this project. Pretty keen. The head hasn't been perfect but honestly for the budget I was given it has to be that way. Excited to start throwing down some plants and paint.", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/p4bjgi/getting_close_to_painting_ready_for_this_project/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"country": {"type": "string"}, "home": {"type": "string"}, "name": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["country", "home", "name", "twitter"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"country" : "NY, USA", "home" : "http://www.frerejones.com/", "name" : "Tobias Frere-Jones", "twitter" : "frerejones"} | json_instruct | {"type": "object", "properties": {"country": {"type": "string"}, "home": {"type": "string"}, "name": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["country", "home", "name", "twitter"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"prettier": {"type": "string"}, "test": {"type": "string"}}, "required": ["prettier", "test"]}, "prettier": {"type": "object", "properties": {"singleQuote": {"type": "boolean"}, "trailingComma": {"type": "string"}, "printWidth": {"type": "integer"}}, "required": ["singleQuote", "trailingComma", "printWidth"]}, "dependencies": {"type": "object", "properties": {"pg": {"type": "string"}, "reflect-metadata": {"type": "string"}, "typeorm": {"type": "string"}}, "required": ["pg", "reflect-metadata", "typeorm"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "prettier", "typescript"]}}, "required": ["scripts", "prettier", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"scripts" : {"prettier" : "prettier '**.ts' --write", "test" : "exit 1"}, "prettier" : {"singleQuote" : true, "trailingComma" : "all", "printWidth" : 120}, "dependencies" : {"pg" : "8.7.1", "reflect-metadata" : "0.1.13", "typeorm" : "0.2.38"}, "devDependencies" : {"@types/node" : "16.11.6", "prettier" : "2.4.1", "typescript" : "4.4.4"}} | json_instruct | {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"prettier": {"type": "string"}, "test": {"type": "string"}}, "required": ["prettier", "test"]}, "prettier": {"type": "object", "properties": {"singleQuote": {"type": "boolean"}, "trailingComma": {"type": "string"}, "printWidth": {"type": "integer"}}, "required": ["singleQuote", "trailingComma", "printWidth"]}, "dependencies": {"type": "object", "properties": {"pg": {"type": "string"}, "reflect-metadata": {"type": "string"}, "typeorm": {"type": "string"}}, "required": ["pg", "reflect-metadata", "typeorm"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "prettier", "typescript"]}}, "required": ["scripts", "prettier", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"build:production": {"type": "string"}, "build": {"type": "string"}, "build:watch": {"type": "string"}, "test": {"type": "string"}, "test:watch": {"type": "string"}}, "required": ["build:production", "build", "build:watch", "test", "test:watch"]}, "source": {"type": "string"}, "exports": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "unpkg": {"type": "string"}, "type": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}}, "required": ["react"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-test-renderer": {"type": "string"}, "microbundle": {"type": "string"}, "react": {"type": "string"}, "react-test-renderer": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "@types/react", "@types/react-test-renderer", "microbundle", "react", "react-test-renderer", "typescript"]}}, "required": ["name", "version", "description", "scripts", "source", "exports", "main", "module", "unpkg", "type", "repository", "license", "bugs", "homepage", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "use-invariant", "version" : "1.0.0", "description" : "Runtime safety checks for React.js components.", "scripts" : {"build:production" : "microbundle", "build" : "tsc", "build:watch" : "tsc --watch", "test" : "node test.js", "test:watch" : "nodemon test.js"}, "source" : "src/use-invariant.ts", "exports" : "./dist/use-invariant.modern.js", "main" : "./dist/use-invariant.cjs", "module" : "./dist/use-invariant.module.js", "unpkg" : "./dist/use-invariant.umd.js", "type" : "module", "repository" : {"type" : "git", "url" : "git+https://github.com/joshuaharry/use-invariant.git"}, "license" : "MIT", "bugs" : {"url" : "https://github.com/joshuaharry/use-invariant/issues"}, "homepage" : "https://github.com/joshuaharry/use-invariant#readme", "peerDependencies" : {"react" : "^17.0.2"}, "devDependencies" : {"@types/node" : "^16.4.1", "@types/react" : "^17.0.14", "@types/react-test-renderer" : "^17.0.1", "microbundle" : "^0.13.3", "react" : "^17.0.2", "react-test-renderer" : "^17.0.2", "typescript" : "^4.3.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"build:production": {"type": "string"}, "build": {"type": "string"}, "build:watch": {"type": "string"}, "test": {"type": "string"}, "test:watch": {"type": "string"}}, "required": ["build:production", "build", "build:watch", "test", "test:watch"]}, "source": {"type": "string"}, "exports": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "unpkg": {"type": "string"}, "type": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}}, "required": ["react"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-test-renderer": {"type": "string"}, "microbundle": {"type": "string"}, "react": {"type": "string"}, "react-test-renderer": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/node", "@types/react", "@types/react-test-renderer", "microbundle", "react", "react-test-renderer", "typescript"]}}, "required": ["name", "version", "description", "scripts", "source", "exports", "main", "module", "unpkg", "type", "repository", "license", "bugs", "homepage", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following 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:31.710375", "required_by" : ["quintagroup.plonegooglesitemaps"], "requires" : ["setuptools"], "package" : "quintagroup.catalogupdater"} | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"league/climate": {"type": "string"}}, "required": ["league/climate"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"miner": {"type": "string"}}, "required": ["miner"]}}, "required": ["psr-0"]}}, "required": ["name", "description", "type", "minimum-stability", "prefer-stable", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "falkirks/Miner", "description" : "Handlebars processor for php", "type" : "library", "minimum-stability" : "dev", "prefer-stable" : true, "license" : "MIT", "authors" : [{"name" : "Falkirks", "email" : "[email protected]"}], "require" : {"league/climate" : "dev-master"}, "autoload" : {"psr-0" : {"miner" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"league/climate": {"type": "string"}}, "required": ["league/climate"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"miner": {"type": "string"}}, "required": ["miner"]}}, "required": ["psr-0"]}}, "required": ["name", "description", "type", "minimum-stability", "prefer-stable", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : "Villeneuve-la-Comtesse", "dpt" : "Charente-Maritime", "inscrits" : 546, "abs" : 126, "votants" : 420, "blancs" : 48, "nuls" : 11, "exp" : 361, "res" : [{"panneau" : "1", "voix" : 209}, {"panneau" : "2", "voix" : 152}]} | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"web" : [{"value" : ["\u6760\u6746", "\u6760\u6746\u578b", "\u69d3\u6746\u5f0f"], "key" : "leveraged"}, {"value" : ["\u6760\u6746\u5e02\u573a"], "key" : "leveraged market"}, {"value" : ["\u6760\u6746\u8d44\u672c\u91cd\u7ec4", "\u6760\u6746\u672c\u94b1\u91cd\u7ec4"], "key" : "Leveraged recap"}], "query" : "leveraged", "translation" : ["\u6760\u6746"], "errorCode" : "0", "dict" : {"url" : "yddict://m.youdao.com/dict?le=eng&q=leveraged"}, "webdict" : {"url" : "http://m.youdao.com/dict?le=eng&q=leveraged"}, "basic" : {"us-phonetic" : "'lev\u0259rid\u0292d", "phonetic" : "'lev\u0259rid\u0292d", "uk-phonetic" : "'lev\u0259rid\u0292d", "explains" : ["adj. \u6760\u6746\u7684\uff1b\u6760\u6746\u4f5c\u7528\u7684", "v. \uff08\u7f8e\uff09\u6760\u6746\u5f0f\u6295\u673a\uff0c\u4e3e\u503a\u7ecf\u8425\uff08leverage\u7684\u8fc7\u53bb\u5206\u8bcd\u5f62\u5f0f\uff09"]}, "l" : "EN2zh-CHS"} | json_instruct | {"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"language": {"type": "string"}, "district": {"type": "string"}, "water_score": {"type": "string"}, "population_score": {"type": "integer"}, "concretisation_score": {"type": "integer"}, "forest_cover_score": {"type": "integer"}, "rainfall_deficit_score": {"type": "integer"}, "description": {"type": "string"}, "map": {"type": "string"}}, "required": ["language", "district", "water_score", "population_score", "concretisation_score", "forest_cover_score", "rainfall_deficit_score", "description", "map"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"language" : "hindi", "district" : "\u0906\u0917\u0930\u093e", "water_score" : "\u0906\u0938\u093e\u0928", "population_score" : 5, "concretisation_score" : 2, "forest_cover_score" : 4, "rainfall_deficit_score" : 3, "description" : "\u0906\u0917\u0930\u093e \u092e\u0947\u0902 \u0968\u0966\u0967\u096b \u092e\u0947\u0902 \u0915\u0941\u0932 13 \u0938\u094d\u0925\u093e\u0928\u094b\u0902 \u092e\u0947\u0902 \u092a\u093e\u0928\u0940 \u0915\u093e \u0938\u094d\u0924\u0930 \u0928\u093e\u092a\u093e \u0917\u092f\u093e \u0925\u093e, \u091c\u093f\u0928\u094d\u092e\u0947 \u0938\u0947 **69% \u0938\u094d\u0925\u093e\u0928\u094b\u0902 \u092e\u0947\u0902 \u092d\u0942\u091c\u0932 \u0916\u0940\u0902\u091a\u0928\u093e \u0915\u0920\u093f\u0928 \u0925\u093e\u0964** \u091c\u093c\u092e\u0940\u0928 \u0915\u0940 \u092a\u093e\u0928\u0940 \u0938\u094b\u0916 \u0932\u0947\u0928\u0940 \u0915\u0940 \u0915\u094d\u0937\u092e\u0924\u093e, \u092c\u093e\u0930\u093f\u0936 \u0915\u0940 \u092e\u093e\u0924\u094d\u0930\u093e, \u0935\u0928 \u0906\u0935\u0930\u0923 \u0913\u0930 \u0915\u094b\u0902\u0915\u094d\u0930\u0947\u091f\u0906\u0908\u091c\u093c\u0947\u0936\u0928 \u0910\u0938\u0947 \u0915\u0941\u091b \u0915\u093e\u0930\u0923 \u0939\u0948\u0902 \u091c\u093f\u0928\u0938\u0947 \u090f\u0915 \u091c\u093c\u093f\u0932\u0947 \u0915\u0940 \u092d\u0942\u091c\u093c\u0932 \u092e\u093e\u0924\u094d\u0930\u093e \u092a\u094d\u0930\u092d\u093e\u0935\u093f\u0924 \u0939\u094b\u0924\u0940 \u0939\u0948\u0964", "map" : "https://dkqrqc7q64awx.cloudfront.net/6cba874add6faa1bd8d5592a/4600.png"}} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"language": {"type": "string"}, "district": {"type": "string"}, "water_score": {"type": "string"}, "population_score": {"type": "integer"}, "concretisation_score": {"type": "integer"}, "forest_cover_score": {"type": "integer"}, "rainfall_deficit_score": {"type": "integer"}, "description": {"type": "string"}, "map": {"type": "string"}}, "required": ["language", "district", "water_score", "population_score", "concretisation_score", "forest_cover_score", "rainfall_deficit_score", "description", "map"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"description": {"type": "string"}, "name": {"type": "string"}, "domain": {"type": "string"}, "version": {"type": "string"}, "techniques": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "integer"}, "techniqueID": {"type": "string"}, "comment": {"type": "string"}}, "required": ["score", "techniqueID", "comment"]}}, "gradient": {"type": "object", "properties": {"colors": {"type": "array", "items": {"type": "string"}}, "minValue": {"type": "integer"}, "maxValue": {"type": "integer"}}, "required": ["colors", "minValue", "maxValue"]}, "legendItems": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "color": {"type": "string"}}, "required": ["label", "color"]}}}, "required": ["description", "name", "domain", "version", "techniques", "gradient", "legendItems"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "Enterprise techniques used by BS2005, ATT&CK software S0014 v1.0", "name" : "BS2005 (S0014)", "domain" : "mitre-enterprise", "version" : "2.1", "techniques" : [{"score" : 1, "techniqueID" : "T1132", "comment" : "BS2005 uses Base64 encoding for communication in the message body of an HTTP request."}], "gradient" : {"colors" : ["#ffffff", "#66b1ff"], "minValue" : 0, "maxValue" : 1}, "legendItems" : [{"label" : "used by BS2005", "color" : "#66b1ff"}]} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "name": {"type": "string"}, "domain": {"type": "string"}, "version": {"type": "string"}, "techniques": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "integer"}, "techniqueID": {"type": "string"}, "comment": {"type": "string"}}, "required": ["score", "techniqueID", "comment"]}}, "gradient": {"type": "object", "properties": {"colors": {"type": "array", "items": {"type": "string"}}, "minValue": {"type": "integer"}, "maxValue": {"type": "integer"}}, "required": ["colors", "minValue", "maxValue"]}, "legendItems": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "color": {"type": "string"}}, "required": ["label", "color"]}}}, "required": ["description", "name", "domain", "version", "techniques", "gradient", "legendItems"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "prerequisite": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "semesterData": {"type": "array", "items": {"type": "object", "properties": {"semester": {"type": "integer"}, "timetable": {"type": "array", "items": {"type": "object", "properties": {"classNo": {"type": "string"}, "startTime": {"type": "string"}, "endTime": {"type": "string"}, "weeks": {"type": "array", "items": {"type": "integer"}}, "venue": {"type": "string"}, "day": {"type": "string"}, "lessonType": {"type": "string"}, "size": {"type": "integer"}}, "required": ["classNo", "startTime", "endTime", "weeks", "venue", "day", "lessonType", "size"]}}, "examDate": {"type": "string"}, "examDuration": {"type": "integer"}}, "required": ["semester", "timetable", "examDate", "examDuration"]}}, "prereqTree": {"type": "string"}, "fulfillRequirements": {"type": "array", "items": {"type": "string"}}}, "required": ["acadYear", "description", "title", "department", "faculty", "workload", "prerequisite", "moduleCredit", "moduleCode", "semesterData", "prereqTree", "fulfillRequirements"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"acadYear" : "2019/2020", "description" : "This module covers the study of a selected series of organic reactions involving reactive intermediates and/or molecular rearrangements. Emphasis is placed on an understanding of their reaction mechanisms. These will include rearrangement reactions involving carbocations and carbenes as intermediates. Stereoelectronic\nproperties leading to fragmentation reactions will be introduced. Reactions initiated by radicals will be covered. Comprehensive discussions on rules and stereochemical consequences in pericyclic reactions will be given. The synthetic applications of all the above reactions will be illustrated.", "title" : "Organic Reaction Mechanisms", "department" : "Chemistry", "faculty" : "Science", "workload" : [3, 1, 0, 3, 3], "prerequisite" : "CM2121", "moduleCredit" : "4", "moduleCode" : "CM3222", "semesterData" : [{"semester" : 2, "timetable" : [{"classNo" : "1", "startTime" : "0800", "endTime" : "1000", "weeks" : [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13], "venue" : "S1A-0217", "day" : "Monday", "lessonType" : "Lecture", "size" : 80}, {"classNo" : "1", "startTime" : "0800", "endTime" : "1000", "weeks" : [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13], "venue" : "S1A-0217", "day" : "Wednesday", "lessonType" : "Lecture", "size" : 80}, {"classNo" : "2", "startTime" : "1000", "endTime" : "1100", "weeks" : [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13], "venue" : "S16-0431", "day" : "Friday", "lessonType" : "Tutorial", "size" : 27}, {"classNo" : "3", "startTime" : "1200", "endTime" : "1300", "weeks" : [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13], "venue" : "S16-0309", "day" : "Tuesday", "lessonType" : "Tutorial", "size" : 26}, {"classNo" : "1", "startTime" : "0800", "endTime" : "0900", "weeks" : [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13], "venue" : "S16-0435", "day" : "Friday", "lessonType" : "Tutorial", "size" : 27}], "examDate" : "2020-04-28T09:00:00.000Z", "examDuration" : 120}], "prereqTree" : "CM2121", "fulfillRequirements" : ["CM4273"]} | json_instruct | {"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "prerequisite": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "semesterData": {"type": "array", "items": {"type": "object", "properties": {"semester": {"type": "integer"}, "timetable": {"type": "array", "items": {"type": "object", "properties": {"classNo": {"type": "string"}, "startTime": {"type": "string"}, "endTime": {"type": "string"}, "weeks": {"type": "array", "items": {"type": "integer"}}, "venue": {"type": "string"}, "day": {"type": "string"}, "lessonType": {"type": "string"}, "size": {"type": "integer"}}, "required": ["classNo", "startTime", "endTime", "weeks", "venue", "day", "lessonType", "size"]}}, "examDate": {"type": "string"}, "examDuration": {"type": "integer"}}, "required": ["semester", "timetable", "examDate", "examDuration"]}}, "prereqTree": {"type": "string"}, "fulfillRequirements": {"type": "array", "items": {"type": "string"}}}, "required": ["acadYear", "description", "title", "department", "faculty", "workload", "prerequisite", "moduleCredit", "moduleCode", "semesterData", "prereqTree", "fulfillRequirements"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"stats": {"type": "object", "properties": {"minecraft:custom": {"type": "object", "properties": {"minecraft:time_since_rest": {"type": "integer"}, "minecraft:leave_game": {"type": "integer"}, "minecraft:play_time": {"type": "integer"}, "minecraft:time_since_death": {"type": "integer"}, "minecraft:walk_one_cm": {"type": "integer"}, "minecraft:total_world_time": {"type": "integer"}}, "required": ["minecraft:time_since_rest", "minecraft:leave_game", "minecraft:play_time", "minecraft:time_since_death", "minecraft:walk_one_cm", "minecraft:total_world_time"]}}, "required": ["minecraft:custom"]}, "DataVersion": {"type": "integer"}}, "required": ["stats", "DataVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stats" : {"minecraft:custom" : {"minecraft:time_since_rest" : 158, "minecraft:leave_game" : 1, "minecraft:play_time" : 158, "minecraft:time_since_death" : 158, "minecraft:walk_one_cm" : 171, "minecraft:total_world_time" : 325}}, "DataVersion" : 2860} | json_instruct | {"type": "object", "properties": {"stats": {"type": "object", "properties": {"minecraft:custom": {"type": "object", "properties": {"minecraft:time_since_rest": {"type": "integer"}, "minecraft:leave_game": {"type": "integer"}, "minecraft:play_time": {"type": "integer"}, "minecraft:time_since_death": {"type": "integer"}, "minecraft:walk_one_cm": {"type": "integer"}, "minecraft:total_world_time": {"type": "integer"}}, "required": ["minecraft:time_since_rest", "minecraft:leave_game", "minecraft:play_time", "minecraft:time_since_death", "minecraft:walk_one_cm", "minecraft:total_world_time"]}}, "required": ["minecraft:custom"]}, "DataVersion": {"type": "integer"}}, "required": ["stats", "DataVersion"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"gaeUrl": {"type": "string"}, "root": {"type": "object", "properties": {"pathOfLinkTemplate": {"type": "string"}, "startSite": {"type": "string"}, "directory": {"type": "string"}, "siteList": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "subtitle": {"type": "string"}, "description": {"type": "string"}, "file": {"type": "string"}, "image": {"type": "string"}, "cssId": {"type": "string"}, "masterLayout": {"type": "string"}}, "required": ["title", "subtitle", "description", "file", "image", "cssId", "masterLayout"]}}}, "required": ["pathOfLinkTemplate", "startSite", "directory", "siteList"]}}, "required": ["gaeUrl", "root"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"gaeUrl" : "http://driven-park-107519.appspot.com", "root" : {"pathOfLinkTemplate" : "siteLinkTemplate.html", "startSite" : "start.html", "directory" : "sites/content/", "siteList" : [{"title" : "Sebastiani Lengfurt", "subtitle" : "Ein besonderes Fest", "description" : "Sebastiani wird seit 1632 in Lengfurt gefeiert. Dabei wird der Hl. Sebastian mit milit\u00e4rischen Aufmarsch und Gottesdienst geehrt.", "file" : "start.html", "image" : "/images/bannerImages/start.jpg", "cssId" : "start", "masterLayout" : "sites/master.html"}, {"title" : "Ablauf des Festes", "subtitle" : "20. bis 22.01.2018", "description" : "Das n\u00e4chste Fest findet von 20. bis zum 22.01.2018 in Lengfurt statt. Der Ablauf geht auf die Statuten von 1866 zur\u00fcck.", "file" : "ablauf.html", "image" : "/images/bannerImages/ablauf.jpg", "cssId" : "ablauf", "masterLayout" : "sites/master.html"}, {"title" : "Dienstgrade und Funktionen", "subtitle" : "Hauptmann, F\u00e4hnrich und Co.", "description" : "Die Dienstgrade und Funktionen gehen auf die Satzung von 1866 zur\u00fcck. Diese wurde dem damaligen Milit\u00e4r nachempfunden.", "file" : "dienstgrade.html", "image" : "/images/bannerImages/dienstgrade.jpg", "cssId" : "dienstgrade", "masterLayout" : "sites/master.html"}, {"title" : "Geschichte", "subtitle" : "Seit 1632", "description" : "Seit 1632 wird Sebastiani in Lengfurt gefeiert. \u00dcber die Jahre hat das Fest eine bewegende Geschichte miterlebt.", "file" : "geschichte.html", "image" : "/images/bannerImages/geschichte.jpg", "cssId" : "geschichte", "masterLayout" : "sites/master.html"}]}} | json_instruct | {"type": "object", "properties": {"gaeUrl": {"type": "string"}, "root": {"type": "object", "properties": {"pathOfLinkTemplate": {"type": "string"}, "startSite": {"type": "string"}, "directory": {"type": "string"}, "siteList": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "subtitle": {"type": "string"}, "description": {"type": "string"}, "file": {"type": "string"}, "image": {"type": "string"}, "cssId": {"type": "string"}, "masterLayout": {"type": "string"}}, "required": ["title", "subtitle", "description", "file", "image", "cssId", "masterLayout"]}}}, "required": ["pathOfLinkTemplate", "startSite", "directory", "siteList"]}}, "required": ["gaeUrl", "root"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ref": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}}, "required": ["min", "max", "mean"]}, "ref_regrid": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}, "std": {"type": "number"}}, "required": ["min", "max", "mean", "std"]}, "test": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}}, "required": ["min", "max", "mean"]}, "test_regrid": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}, "std": {"type": "number"}}, "required": ["min", "max", "mean", "std"]}, "diff": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}}, "required": ["min", "max", "mean"]}, "misc": {"type": "object", "properties": {"rmse": {"type": "number"}, "corr": {"type": "number"}}, "required": ["rmse", "corr"]}, "unit": {"type": "string"}}, "required": ["ref", "ref_regrid", "test", "test_regrid", "diff", "misc", "unit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ref" : {"min" : 2.432565450668335, "max" : 99.89996337890625, "mean" : 56.71027016213705}, "ref_regrid" : {"min" : 2.432565450668335, "max" : 99.89996337890625, "mean" : 56.71027016213705, "std" : 24.00931936391956}, "test" : {"min" : 1.089259386062622, "max" : 99.8127212524414, "mean" : 57.2565397860836}, "test_regrid" : {"min" : 1.089259386062622, "max" : 99.8127212524414, "mean" : 57.2565397860836, "std" : 24.014288527115397}, "diff" : {"min" : -20.767959594726562, "max" : 26.240985870361328, "mean" : 0.5462696239220055}, "misc" : {"rmse" : 4.473228783740342, "corr" : 0.9829062794250144}, "unit" : "%"} | json_instruct | {"type": "object", "properties": {"ref": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}}, "required": ["min", "max", "mean"]}, "ref_regrid": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}, "std": {"type": "number"}}, "required": ["min", "max", "mean", "std"]}, "test": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}}, "required": ["min", "max", "mean"]}, "test_regrid": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}, "std": {"type": "number"}}, "required": ["min", "max", "mean", "std"]}, "diff": {"type": "object", "properties": {"min": {"type": "number"}, "max": {"type": "number"}, "mean": {"type": "number"}}, "required": ["min", "max", "mean"]}, "misc": {"type": "object", "properties": {"rmse": {"type": "number"}, "corr": {"type": "number"}}, "required": ["rmse", "corr"]}, "unit": {"type": "string"}}, "required": ["ref", "ref_regrid", "test", "test_regrid", "diff", "misc", "unit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "main", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "toolbar", "main" : "jquery.toolbar.js", "ignore" : ["**/.*", "node_modules", "components"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "main", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"plugin-data": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"]}}, "required": ["plugin-data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"plugin-data" : {"name" : "Improved tag list", "description" : "Implements a simple tag cloud."}} | json_instruct | {"type": "object", "properties": {"plugin-data": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"]}}, "required": ["plugin-data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "number"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "url": {"type": "string"}}, "required": ["label", "url"]}}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["copyright_text", "description", "duration", "language", "recorded", "related_urls", "speakers", "tags", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"copyright_text" : "Creative Commons Attribution license (reuse allowed)", "description" : "", "duration" : 2099.0, "language" : "eng", "recorded" : "2020-10-02", "related_urls" : [{"label" : "Conference schedule", "url" : "https://in.pycon.org/2020/schedule/"}], "speakers" : ["Praveen Shirali"], "tags" : [], "thumbnail_url" : "https://i.ytimg.com/vi/rIsG7fx-U7M/hqdefault.jpg?sqp=-oaymwEZCNACELwBSFXyq4qpAwsIARUAAIhCGAFwAQ==&rs=AOn4CLCZG_sg7ibome6JuWd3NLe3NBIzBw", "title" : "Pythonic Interfaces The secret to building maintainable, quality code", "videos" : [{"type" : "youtube", "url" : "https://www.youtube.com/watch?v=rIsG7fx-U7M"}]} | json_instruct | {"type": "object", "properties": {"copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "number"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "url": {"type": "string"}}, "required": ["label", "url"]}}, "speakers": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["copyright_text", "description", "duration", "language", "recorded", "related_urls", "speakers", "tags", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "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": {}, "required": []}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "nfb", "version" : "0.0.1", "description" : "A filebrowser for node.It is not perfect, but very easy to use", "main" : "index.js", "scripts" : {}, "repository" : {"type" : "git", "url" : "https://github.com/Joker-Jelly/nfb.git"}, "keywords" : ["nodejs", "filebrowser", "imagebrowser"], "author" : "Joker-Jelly<[email protected]>", "license" : "MIT", "bugs" : {"url" : "https://github.com/Joker-Jelly/nfb/issues"}, "homepage" : "https://github.com/Joker-Jelly/nfb", "devDependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "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": {}, "required": []}}, "required": ["name", "version", "description", "main", "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": {"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"}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "express": {"type": "string"}, "mustache-express": {"type": "string"}}, "required": ["@types/node", "express", "mustache-express"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "christmas", "version" : "1.0.0", "description" : "", "main" : "index.js", "repository" : {"type" : "git", "url" : "git+https://github.com/oldrich-s/christmas.git"}, "author" : "Oldrich Svec", "license" : "MIT", "bugs" : {"url" : "https://github.com/oldrich-s/christmas/issues"}, "homepage" : "https://github.com/oldrich-s/christmas#readme", "dependencies" : {"@types/node" : "^17.0.0", "express" : "^4.17.2", "mustache-express" : "^1.3.2"}} | 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"}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "express": {"type": "string"}, "mustache-express": {"type": "string"}}, "required": ["@types/node", "express", "mustache-express"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$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"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "mide-842_1", "size" : 1125567093, "link" : "https://streamtape.com/e/ow83JPZqGQsJ4rD", "created_at" : "2022\u5e7403\u670825\u65e5 18:36:11", "downloads" : 0, "linkid" : "ow83JPZqGQsJ4rD", "convert" : "converted", "achorname" : "\u4e38\u5b50\u5466", "subscribe" : "0\u4f4d\u8ba2\u9605\u8005", "avatar-img" : "https://huyaimg.msstatic.com/avatar/1022/07/ec5fef7c7662720286fbbb12395390_180_135.jpg?1628178596?458648", "folderName" : "MIDE-842 \u9694\u8457\u8d85\u8584\u7684\u7246\u58c1\u4f4f\u5728\u9694\u58c1\u7684\u7f8e\u5973\u5c0f\u59d0\u59d0\u85cd\u82bd\u7f8e\u6708\u779e\u8457\u7537\u53cb\u5077\u5077\u8033\u8a9e\u8a98\u60d1 \u85cd\u82bd\u7f8e\u6708", "thumbUrl" : "https://assets-cdn.jable.tv/contents/videos_screenshots/11000/11304/320x180/1.jpg"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subtitle": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subchapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "subtitle", "chapter", "subchapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "For the purposes of this subchapter, the term \"bicycle parking space\" means a device or enclosure, located within a building or installation, or conveniently adjacent thereto, for securing a bicycle that is easily accessible, clearly visible and so located as to be reasonably secure from theft or vandalism.", "historical" : "Legislative History of Laws\n\nLaw 17-103, the \"Bicycle Commuter and Parking Expansion Act of 2007\", was introduced in Council and assigned Bill No. 17-90 which was referred to the Committee on Public Works and the Environment. The Bill was adopted on first and second readings on July 10, 2007, and November 6, 2007, respectively. Signed by the Mayor on November 21, 2007, it was assigned Act No. 17-222 and transmitted to both Houses of Congress for its review. D.C. Law 17-103 became effective on February 2, 2008.\n\nDelegation of Authority\n\nDelegation of Authority -- Bicycle Commuter and Parking Expansion Amendment Act of 2007, see Mayor's Order 2011-149, September 6, 2011 (58 DCR 8085).\n\nDC CODE \u00a7 50-1641.01\n\nCurrent through December 11, 2012", "credits" : "(Feb. 2, 2008, D.C. Law 17-103, \u00a7 2, 54 DCR 12213.)", "sections" : [], "division" : {"identifier" : "VIII", "text" : "General Laws."}, "title" : {"identifier" : "50", "text" : "Motor and Non-Motor Vehicles and Traffic. (Refs & Annos)"}, "subtitle" : {"prefix" : "V", "text" : " Non-Motorized Vehicles."}, "chapter" : {"identifier" : "16", "text" : "Regulation of Bicycles."}, "subchapter" : {"identifier" : "III", "text" : "Bicycle Parking."}, "heading" : {"title" : "50", "chaptersection" : "1641", "identifier" : "50-1641.01", "catch_text" : "Definitions."}} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subtitle": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subchapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "subtitle", "chapter", "subchapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "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"]}, "properties": {"type": "object", "properties": {"address": {"type": "string"}, "country_code": {"type": "string"}, "iata": {"type": "string"}, "icao": {"type": "null"}, "name": {"type": "string"}}, "required": ["address", "country_code", "iata", "icao", "name"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-162.053625, 60.210996], [-162.053623, 60.211143], [-162.053621, 60.211576], [-162.053622, 60.212836], [-162.053623, 60.213576], [-162.053625, 60.215575], [-162.053625, 60.218964], [-162.053625, 60.221007], [-162.050445, 60.220961], [-162.049789, 60.220951], [-162.038281, 60.220783], [-162.034446, 60.220728], [-162.032251, 60.220694], [-162.031852, 60.220688], [-162.030148, 60.220641], [-162.027437, 60.220568], [-162.025669, 60.22052], [-162.024356, 60.220486], [-162.023475, 60.220461], [-162.022687, 60.220441], [-162.021994, 60.220424], [-162.020326, 60.220384], [-162.019539, 60.220366], [-162.019282, 60.220327], [-162.018514, 60.220212], [-162.018258, 60.220174], [-162.017996, 60.220134], [-162.01721, 60.220017], [-162.016948, 60.219978], [-162.015321, 60.219922], [-162.012186, 60.219816], [-162.010442, 60.219757], [-162.009002, 60.219709], [-162.008988, 60.219524], [-162.008989, 60.219488], [-162.008991, 60.219412], [-162.008993, 60.219385], [-162.008994, 60.218904], [-162.008994, 60.218424], [-162.008994, 60.217846], [-162.008995, 60.217268], [-162.007879, 60.216278], [-162.003758, 60.212625], [-162.003559, 60.212449], [-162.002451, 60.211569], [-162.002701, 60.211552], [-162.004623, 60.211554], [-162.004643, 60.211555], [-162.006587, 60.211559], [-162.008397, 60.211561], [-162.01039, 60.211564], [-162.01077, 60.211565], [-162.011542, 60.211566], [-162.012313, 60.211567], [-162.023951, 60.211406], [-162.033224, 60.211223], [-162.033429, 60.211218], [-162.033634, 60.211214], [-162.034678, 60.211194], [-162.034872, 60.21119], [-162.035066, 60.211186], [-162.035464, 60.211178], [-162.035863, 60.21117], [-162.039057, 60.211102], [-162.040057, 60.211081], [-162.05207, 60.210829], [-162.052632, 60.210814], [-162.053194, 60.210798], [-162.053322, 60.210798], [-162.05345, 60.210797], [-162.053604, 60.210795], [-162.053625, 60.210996]]]]}, "properties" : {"address" : "Eek Airport, Eek, Alaska, United States (EEK)", "country_code" : "US", "iata" : "EEK", "icao" : null, "name" : "Eek Airport"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"address": {"type": "string"}, "country_code": {"type": "string"}, "iata": {"type": "string"}, "icao": {"type": "null"}, "name": {"type": "string"}}, "required": ["address", "country_code", "iata", "icao", "name"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"url" : "http://mmbiz.qpic.cn/mmbiz_jpg/US3392GZN3cHrgs7jHEcC9Dhqa8aIA5qXy2pZoYUicxMDk7E03zJquR9FpwsfqrWwVAMnvAtGuI9jZ38pyyrvKg/0"} | json_instruct | {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [1.3943142307390068, 3.922832859405378, 2.385831848045005, 2.102104968296237, 6.132106188592072, 5.021267868964658, 3.442109863335223, 5.100044083160609, 5.1821932258375725, 5.159711638582789] | json_instruct | {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 7302020005, "parent" : 7302020, "name" : "BENTENGNGE", "latitude" : null, "longitude" : null, "postal" : [92511], "children" : []} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "3519_cam-image_array_.jpg", "user/throttle" : 0.0, "user/angle" : -0.24085208773612976, "user/mode" : "user"} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "scripts": {"type": "object", "properties": {"install": {"type": "string"}, "test": {"type": "string"}}, "required": ["install", "test"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "dependencies": {"type": "object", "properties": {"nan": {"type": "string"}}, "required": ["nan"]}, "devDependencies": {"type": "object", "properties": {"tap-spec": {"type": "string"}, "tape": {"type": "string"}}, "required": ["tap-spec", "tape"]}}, "required": ["name", "description", "keywords", "version", "license", "homepage", "maintainers", "repository", "bugs", "scripts", "licenses", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "es6-native-map", "description" : "es6 compatible map using native store", "keywords" : ["map", "native map", "hashtable", "es6", "es6 map"], "version" : "4.0.2", "license" : "MIT", "homepage" : "https://github.com/chad3814/es6-native-map", "maintainers" : [{"name" : "Chad Walker", "email" : "[email protected]", "url" : "https://github.com/chad3814"}], "repository" : {"type" : "git", "url" : "git://github.com/chad3814/es6-native-map.git"}, "bugs" : {"url" : "https://github.com/chad3814/es6-native-map/issues"}, "scripts" : {"install" : "node-gyp configure build", "test" : "tape test/*.test.js | tap-spec"}, "licenses" : [{"type" : "MIT", "url" : "http://creativecommons.org/licenses/MIT/"}], "dependencies" : {"nan" : "^2.3.3"}, "devDependencies" : {"tap-spec" : "^4.1.1", "tape" : "^4.8.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "scripts": {"type": "object", "properties": {"install": {"type": "string"}, "test": {"type": "string"}}, "required": ["install", "test"]}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "dependencies": {"type": "object", "properties": {"nan": {"type": "string"}}, "required": ["nan"]}, "devDependencies": {"type": "object", "properties": {"tap-spec": {"type": "string"}, "tape": {"type": "string"}}, "required": ["tap-spec", "tape"]}}, "required": ["name", "description", "keywords", "version", "license", "homepage", "maintainers", "repository", "bugs", "scripts", "licenses", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}}, "required": ["title", "description", "author"]}}, "required": ["siteMetadata"]}}, "required": ["site"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"site" : {"siteMetadata" : {"title" : "Seokjoo Chae", "description" : "Seokjoo's blog ", "author" : "Seokjoo"}}}} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}}, "required": ["title", "description", "author"]}}, "required": ["siteMetadata"]}}, "required": ["site"]}}, "required": ["data"], "$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": "string"}, "authors": {"type": "object", "properties": {"ShangenZhang": {"type": "string"}}, "required": ["ShangenZhang"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "null"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "vendored_libraries": {"type": "string"}, "public_header_files": {"type": "string"}, "resources": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "source_files", "vendored_libraries", "public_header_files", "resources", "frameworks", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "LYTUIKIT", "version" : "0.0.1", "summary" : "LYTUIKIT.", "description" : "UIKIT for 71sino SDK ......", "homepage" : "http://www.71ant.com", "license" : "MIT", "authors" : {"ShangenZhang" : "[email protected]"}, "platforms" : {"ios" : null}, "source" : {"git" : "https://github.com/install-b/LYTUIKIT.git", "tag" : "0.0.1"}, "source_files" : "LYTUIKIT/**/*.{h,a}", "vendored_libraries" : "LYTUIKIT/**/*.a", "public_header_files" : "LYTUIKIT/**/*.h", "resources" : ["LYTUIKIT/Bundles/LYFileSelector.bundle", "LYTUIKIT/Bundles/LYTChatProgressHUD.bundle"], "frameworks" : "UIKIT", "requires_arc" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"ShangenZhang": {"type": "string"}}, "required": ["ShangenZhang"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "null"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "vendored_libraries": {"type": "string"}, "public_header_files": {"type": "string"}, "resources": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "source_files", "vendored_libraries", "public_header_files", "resources", "frameworks", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "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" : "'use strict';\n\nconst CID = require('cids');\n\nconst UnixFs = require('ipfs-unixfs');\n\nconst _require = require('ipld-dag-pb'),\n DAGNode = _require.DAGNode;\n\nconst log = require('debug')('ipfs:mfs:utils:with-mfs-root');\n\nconst mc = require('multicodec');\n\nconst mh = require('multihashing-async').multihash;\n\nconst errCode = require('err-code');\n\nconst _require2 = require('../../../utils'),\n MFS_ROOT_KEY = _require2.MFS_ROOT_KEY;\n\nconst loadMfsRoot = async (context, options) => {\n if (options && options.signal && options.signal.aborted) {\n throw errCode(new Error('Request aborted'), 'ERR_ABORTED', {\n name: 'Aborted'\n });\n } // Open the repo if it's been closed\n\n\n await context.repo.datastore.open(); // Load the MFS root CID\n\n let cid;\n\n try {\n const buf = await context.repo.datastore.get(MFS_ROOT_KEY);\n cid = new CID(buf);\n } catch (err) {\n if (err.code !== 'ERR_NOT_FOUND') {\n throw err;\n }\n\n log('Creating new MFS root');\n const node = new DAGNode(new UnixFs({\n type: 'directory'\n }).marshal());\n cid = await context.ipld.put(node, mc.DAG_PB, {\n cidVersion: 0,\n hashAlg: mh.names['sha2-256'] // why can't ipld look this up?\n\n });\n\n if (options && options.signal && options.signal.aborted) {\n throw errCode(new Error('Request aborted'), 'ERR_ABORTED', {\n name: 'Aborted'\n });\n }\n\n await context.repo.datastore.put(MFS_ROOT_KEY, cid.bytes);\n }\n\n log(\"Loaded MFS root /ipfs/\".concat(cid));\n return cid;\n};\n\nmodule.exports = loadMfsRoot;", "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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["321302111001", "\u738b\u96c6\u5c45\u59d4\u4f1a", "121", "0"], ["321302111002", "\u8521\u5e84\u5c45\u59d4\u4f1a", "122", "0"], ["321302111200", "\u725b\u5218\u5729\u6751\u59d4\u4f1a", "220", "0"], ["321302111201", "\u4e5d\u57ce\u6751\u59d4\u4f1a", "220", "0"], ["321302111202", "\u738b\u6797\u6751\u59d4\u4f1a", "220", "0"], ["321302111203", "\u4edd\u674e\u6751\u59d4\u4f1a", "220", "0"], ["321302111204", "\u5510\u5729\u6751\u59d4\u4f1a", "220", "0"], ["321302111205", "\u82b1\u56ed\u6751\u59d4\u4f1a", "220", "0"], ["321302111206", "\u82d7\u5729\u6751\u59d4\u4f1a", "220", "0"], ["321302111207", "\u4e07\u6797\u6751\u59d4\u4f1a", "220", "0"], ["321302111208", "\u6b27\u5e99\u6751\u59d4\u4f1a", "220", "0"], ["321302111209", "\u5c39\u9ec4\u6751\u59d4\u4f1a", "220", "0"], ["321302111210", "\u6731\u6d77\u6751\u59d4\u4f1a", "220", "0"], ["321302111211", "\u7a0b\u5e84\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : "Edith Wharton", "classification" : "", "keywords" : ["Nature"], "period" : "", "reference" : "http://www.poetryfoundation.org/poem/182678", "region" : "", "text" : ["I", "Leaguered in fire", "The wild black promontories of the coast extend", "Their savage silhouettes;", "The sun in universal carnage sets,", "And, halting higher,", "The motionless storm-clouds mass their sullen threats,", "Like an advancing mob in sword-points penned,", "That, balked, yet stands at bay.", "Mid-zenith hangs the fascinated day", "In wind-lustrated hollows crystalline,", "A wan Valkyrie whose wide pinions shine", "Across the ensanguined ruins of the fray,", "And in her hand swings high o\u2019erhead,", "Above the waster of war,", "The silver torch-light of the evening star", "Wherewith to search the faces of the dead.", "II", "Lagooned in gold,", "Seem not those jetty promontories rather", "The outposts of some ancient land forlorn,", "Uncomforted of morn,", "Where old oblivions gather,", "The melancholy unconsoling fold", "Of all things that go utterly to death", "And mix no more, no more", "With life\u2019s perpetually awakening breath?", "Shall Time not ferry me to such a shore,", "Over such sailless seas,", "To walk with hope\u2019s slain importunities", "In miserable marriage? Nay, shall not", "All things be there forgot,", "Save the sea\u2019s golden barrier and the black", "Close-crouching promontories?", "Dead to all shames, forgotten of all glories,", "Shall I not wander there, a shadow\u2019s shade,", "A spectre self-destroyed,", "So purged of all remembrance and sucked back", "Into the primal void,", "That should we on the shore phantasmal meet", "I should not know the coming of your feet?"], "title" : "An Autumn Sunset", "year" : ""} | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"alpha2": {"type": "string"}, "alpha3": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["alpha2", "alpha3", "names"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"alpha2" : "TT", "alpha3" : "TTO", "names" : ["Trinidad and Tobago", "Republic of Trinidad and Tobago", "TT", "TTO"]} | json_instruct | {"type": "object", "properties": {"alpha2": {"type": "string"}, "alpha3": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}}, "required": ["alpha2", "alpha3", "names"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "\u00a7 15. TO CONCEIVE RIGHTLY OF MORAL ACTIONS, WE MUST TAKE NOTICE OF THEM UNDER THIS TWO-FOLD CONSIDERATION.", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/6677.json"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"}}, "required": ["Id", "ThreadId", "Html", "PostedDate", "UserRole", "MarkedAsAnswerDate"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"Id" : "1427965", "ThreadId" : "638908", "Html" : "It says I don't have the right version of .Net installed. I have 4.52.<br />\n", "PostedDate" : "2015-05-28T13:13:58.57-07:00", "UserRole" : null, "MarkedAsAnswerDate" : null}, {"Id" : "1444414", "ThreadId" : "638908", "Html" : "As of the time you made posted this question am not sure if the full Stable Windows 10 was out, so now that it's out you can try it out as I have mine running well for Windows 10 Pro with Visual Studio 2015.<br />\n", "PostedDate" : "2015-09-14T21:49:48.303-07:00", "UserRole" : null, "MarkedAsAnswerDate" : null}, {"Id" : "1446982", "ThreadId" : "638908", "Html" : "i think this issue is because i have two versions of visual studio installed , 2013 and 2015 both ultimate and m using windows 10 pro genuine which is fully stable.<br />\n", "PostedDate" : "2015-10-04T03:01:00.537-07:00", "UserRole" : null, "MarkedAsAnswerDate" : null}, {"Id" : "1449284", "ThreadId" : "638908", "Html" : "<strong>falabiabisoye wrote:</strong><br />\n<blockquote>\nAs of the time you made posted this question am not sure if the full Stable Windows 10 was out, so now that it's out you can try it out as I have mine running well for Windows 10 Pro with Visual Studio 2015.<br />\n</blockquote>\nSo you're able to work with this ModernUI in VS 2015? That's good to know, thanks!<br />\n", "PostedDate" : "2015-10-21T09:38:42.203-07:00", "UserRole" : null, "MarkedAsAnswerDate" : null}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"}}, "required": ["Id", "ThreadId", "Html", "PostedDate", "UserRole", "MarkedAsAnswerDate"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}, "theme": {"type": "string"}, "gravatar": {"type": "boolean"}, "format": {"type": "string"}}, "required": ["copyright", "url", "email", "theme", "gravatar", "format"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"copyright" : "Ru Ke\u00efn", "url" : "http://www.hakkeray.com", "email" : "[email protected]", "theme" : "8bits-monochrome", "gravatar" : true, "format" : "html"} | json_instruct | {"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}, "theme": {"type": "string"}, "gravatar": {"type": "boolean"}, "format": {"type": "string"}}, "required": ["copyright", "url", "email", "theme", "gravatar", "format"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status_code" : "OK", "status_msg" : "All images in request have completed successfully. ", "meta" : {"tag" : {"timestamp" : 1442733965.467317, "model" : "default", "config" : "0b2b7436987dd912e077ff576731f8b7"}}, "results" : [{"docid" : 40454561329913878794364030739813646368, "status_code" : "OK", "status_msg" : "OK", "local_id" : "", "result" : {"tag" : {"classes" : ["travel", "architecture", "city", "tourist", "outdoors", "building", "cityscape", "tourism", "old", "sky", "landmark", "ancient", "roman", "amphitheater", "colosseum", "theater", "arch", "people", "square", "monument"], "probs" : [0.9975121021270752, 0.9958497285842896, 0.9949584603309631, 0.9948006868362427, 0.9905160665512085, 0.9858963489532471, 0.9833712577819824, 0.9807195663452148, 0.9722714424133301, 0.9675841331481934, 0.9672583937644958, 0.9669922590255737, 0.9638209342956543, 0.9613487720489502, 0.9416780471801758, 0.8963873386383057, 0.8923401832580566, 0.8888058662414551, 0.8879966735839844, 0.8819894790649414]}}, "docid_str" : "1e6f43ddefc2302b2a294831c3d24020"}]} | json_instruct | {"type": "object", "properties": {"status_code": {"type": "string"}, "status_msg": {"type": "string"}, "meta": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"timestamp": {"type": "number"}, "model": {"type": "string"}, "config": {"type": "string"}}, "required": ["timestamp", "model", "config"]}}, "required": ["tag"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"docid": {"type": "integer"}, "status_code": {"type": "string"}, "status_msg": {"type": "string"}, "local_id": {"type": "string"}, "result": {"type": "object", "properties": {"tag": {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "string"}}, "probs": {"type": "array", "items": {"type": "number"}}}, "required": ["classes", "probs"]}}, "required": ["tag"]}, "docid_str": {"type": "string"}}, "required": ["docid", "status_code", "status_msg", "local_id", "result", "docid_str"]}}}, "required": ["status_code", "status_msg", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "url": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "stringency": {"type": "string"}, "element": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "path": {"type": "string"}, "short": {"type": "string"}, "definition": {"type": "string"}, "comment": {"type": "string"}, "min": {"type": "integer"}, "max": {"type": "string"}, "type": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"]}}, "condition": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "path", "short", "definition", "comment", "min", "max", "type", "condition"]}}}, "required": ["resourceType", "id", "meta", "url", "status", "experimental", "stringency", "element"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resourceType" : "DataElement", "id" : "StructureDefinition.mapping.uri", "meta" : {"lastUpdated" : "2019-10-24T11:53:00+11:00"}, "url" : "http://hl7.org/fhir/DataElement/StructureDefinition.mapping.uri", "status" : "draft", "experimental" : true, "stringency" : "fully-specified", "element" : [{"id" : "StructureDefinition.mapping.uri", "path" : "StructureDefinition.mapping.uri", "short" : "Identifies what this mapping refers to", "definition" : "An absolute URI that identifies the specification that this mapping is expressed to.", "comment" : "A formal identity for the specification being mapped to helps with identifying maps consistently.", "min" : 0, "max" : "1", "type" : [{"code" : "uri"}], "condition" : ["sdf-2"]}]} | json_instruct | {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "url": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "stringency": {"type": "string"}, "element": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "path": {"type": "string"}, "short": {"type": "string"}, "definition": {"type": "string"}, "comment": {"type": "string"}, "min": {"type": "integer"}, "max": {"type": "string"}, "type": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"]}}, "condition": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "path", "short", "definition", "comment", "min", "max", "type", "condition"]}}}, "required": ["resourceType", "id", "meta", "url", "status", "experimental", "stringency", "element"], "$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"}, "main": {"type": "string"}, "window": {"type": "object", "properties": {"title": {"type": "string"}, "icon": {"type": "string"}, "toolbar": {"type": "boolean"}}, "required": ["title", "icon", "toolbar"]}, "chromium-args": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "main", "window", "chromium-args", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "binary", "version" : "5.6.4", "main" : "js/background.js", "window" : {"title" : "Coding with Chrome", "icon" : "icons/128x128.png", "toolbar" : true}, "chromium-args" : "--enable-experimental-web-platform-features", "dependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "window": {"type": "object", "properties": {"title": {"type": "string"}, "icon": {"type": "string"}, "toolbar": {"type": "boolean"}}, "required": ["title", "icon", "toolbar"]}, "chromium-args": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "main", "window", "chromium-args", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["prospector"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "no_of_wards": {"type": "integer"}, "wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "string"}, "ward_name": {"type": "string"}, "ward_id": {"type": "string"}}, "required": ["ward_no", "ward_name", "ward_id"]}}}, "required": ["name", "lsg_code", "district", "state", "no_of_wards", "wards"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Dahiwadi", "lsg_code" : "276417", "district" : "Satara", "state" : "Maharashtra", "no_of_wards" : 17, "wards" : [{"ward_no" : "5", "ward_name" : "Dahivadi Nagarpanchayat Ward No.5", "ward_id" : "1756017"}, {"ward_no" : "17", "ward_name" : "Dahivadi Nagarpanchayat Ward No.17", "ward_id" : "1746128"}, {"ward_no" : "3", "ward_name" : "Dahivadi Nagarpanchayat Ward No.3", "ward_id" : "1756015"}, {"ward_no" : "6", "ward_name" : "Dahivadi Nagarpanchayat Ward No.6", "ward_id" : "1756018"}, {"ward_no" : "1", "ward_name" : "Dahivadi Nagarpanchayat Ward No.1", "ward_id" : "1756013"}, {"ward_no" : "9", "ward_name" : "Dahivadi Nagarpanchayat Ward No.9", "ward_id" : "1746120"}, {"ward_no" : "14", "ward_name" : "Dahivadi Nagarpanchayat Ward No.14", "ward_id" : "1746125"}, {"ward_no" : "7", "ward_name" : "Dahivadi Nagarpanchayat Ward No.7", "ward_id" : "1756019"}, {"ward_no" : "8", "ward_name" : "Dahivadi Nagarpanchayat Ward No.8", "ward_id" : "1756020"}, {"ward_no" : "2", "ward_name" : "Dahivadi Nagarpanchayat Ward No.2", "ward_id" : "1756014"}, {"ward_no" : "10", "ward_name" : "Dahivadi Nagarpanchayat Ward No.10", "ward_id" : "1746121"}, {"ward_no" : "13", "ward_name" : "Dahivadi Nagarpanchayat Ward No.13", "ward_id" : "1746124"}, {"ward_no" : "16", "ward_name" : "Dahivadi Nagarpanchayat Ward No.16", "ward_id" : "1746127"}, {"ward_no" : "12", "ward_name" : "Dahivadi Nagarpanchayat Ward No.12", "ward_id" : "1746123"}, {"ward_no" : "11", "ward_name" : "Dahivadi Nagarpanchayat Ward No.11", "ward_id" : "1746122"}, {"ward_no" : "4", "ward_name" : "Dahivadi Nagarpanchayat Ward No.4", "ward_id" : "1756016"}, {"ward_no" : "15", "ward_name" : "Dahivadi Nagarpanchayat Ward No.15", "ward_id" : "1746126"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "no_of_wards": {"type": "integer"}, "wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "string"}, "ward_name": {"type": "string"}, "ward_id": {"type": "string"}}, "required": ["ward_no", "ward_name", "ward_id"]}}}, "required": ["name", "lsg_code", "district", "state", "no_of_wards", "wards"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Blend bananas, egg whites, almond butter, coconut oil, and almond extract together in a food processor until smooth. Add pumpkin puree, coconut flour, pumpkin pie spice, cinnamon, baking powder, baking soda, nutmeg, ginger, and sea salt. Pulse until batter is just combined.", "Heat a skillet over medium-low heat; spray with cooking spray. Drop 2 large spoonfuls of batter onto the griddle and cook until bubbles form and the edges are dry, about 5 minutes. Flip and cook until browned on the other side, 3 to 4 minutes. Repeat with remaining batter."], "ingredients" : ["2 very ripe bananas", "5 egg whites", "1/2 cup almond butter", "1/4 cup coconut oil", "1 teaspoon almond extract", "1/2 cup pumpkin puree", "1/2 cup coconut flour", "1 1/2 teaspoons pumpkin pie spice", "1 1/2 teaspoons ground cinnamon", "1 teaspoon baking powder", "1 teaspoon baking soda", "1/2 teaspoon ground nutmeg", "1/2 teaspoon ground ginger", "1 pinch sea salt", "cooking spray"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Pumpkin Coconut Pancakes", "url" : "http://allrecipes.com/recipe/246160/pumpkin-coconut-pancakes/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"index.cjs.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}}, "required": ["bundled", "minified", "gzipped"]}, "index.esm.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}, "treeshaked": {"type": "object", "properties": {"rollup": {"type": "object", "properties": {"code": {"type": "integer"}, "import_statements": {"type": "integer"}}, "required": ["code", "import_statements"]}, "webpack": {"type": "object", "properties": {"code": {"type": "integer"}}, "required": ["code"]}}, "required": ["rollup", "webpack"]}}, "required": ["bundled", "minified", "gzipped", "treeshaked"]}}, "required": ["index.cjs.js", "index.esm.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index.cjs.js" : {"bundled" : 90385, "minified" : 55092, "gzipped" : 11736}, "index.esm.js" : {"bundled" : 83996, "minified" : 49607, "gzipped" : 11385, "treeshaked" : {"rollup" : {"code" : 37539, "import_statements" : 834}, "webpack" : {"code" : 43971}}}} | json_instruct | {"type": "object", "properties": {"index.cjs.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}}, "required": ["bundled", "minified", "gzipped"]}, "index.esm.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}, "treeshaked": {"type": "object", "properties": {"rollup": {"type": "object", "properties": {"code": {"type": "integer"}, "import_statements": {"type": "integer"}}, "required": ["code", "import_statements"]}, "webpack": {"type": "object", "properties": {"code": {"type": "integer"}}, "required": ["code"]}}, "required": ["rollup", "webpack"]}}, "required": ["bundled", "minified", "gzipped", "treeshaked"]}}, "required": ["index.cjs.js", "index.esm.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"$schema": {"type": "string"}, "contentVersion": {"type": "string"}, "parameters": {"type": "object", "properties": {"extension": {"type": "object", "properties": {"type": {"type": "string"}, "metadata": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "metadata"]}, "extensionProtectedSettings": {"type": "object", "properties": {"type": {"type": "string"}, "metadata": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "metadata"]}}, "required": ["extension", "extensionProtectedSettings"]}, "variables": {"type": "object", "properties": {"location": {"type": "string"}, "protectedSettingsObject": {"type": "object", "properties": {"protectedSettings": {"type": "string"}}, "required": ["protectedSettings"]}, "updatedExtensionProperties": {"type": "string"}}, "required": ["location", "protectedSettingsObject", "updatedExtensionProperties"]}, "resources": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "apiVersion": {"type": "string"}, "name": {"type": "string"}, "location": {"type": "string"}, "copy": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "string"}}, "required": ["name", "count"]}, "properties": {"type": "string"}}, "required": ["type", "apiVersion", "name", "location", "copy", "properties"]}}, "outputs": {"type": "object", "properties": {}, "required": []}}, "required": ["$schema", "contentVersion", "parameters", "variables", "resources", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion" : "1.0.0.0", "parameters" : {"extension" : {"type" : "object", "metadata" : {"description" : "Settings for virtual machine extension"}}, "extensionProtectedSettings" : {"type" : "securestring", "metadata" : {"description" : "ProtectedSettings for extension"}}}, "variables" : {"location" : "[resourceGroup().location]", "protectedSettingsObject" : {"protectedSettings" : "[json(parameters('extensionProtectedSettings'))]"}, "updatedExtensionProperties" : "[union(parameters('extension').extensionSettings, variables('protectedSettingsObject'))]"}, "resources" : [{"type" : "Microsoft.Compute/virtualMachines/extensions", "apiVersion" : "2016-03-30", "name" : "[concat(parameters('extension').vms[copyIndex()],'/', parameters('extension').name)]", "location" : "[resourceGroup().location]", "copy" : {"name" : "vm-iterator", "count" : "[length(parameters('extension').vms)]"}, "properties" : "[variables('updatedExtensionProperties')]"}], "outputs" : {}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "contentVersion": {"type": "string"}, "parameters": {"type": "object", "properties": {"extension": {"type": "object", "properties": {"type": {"type": "string"}, "metadata": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "metadata"]}, "extensionProtectedSettings": {"type": "object", "properties": {"type": {"type": "string"}, "metadata": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "metadata"]}}, "required": ["extension", "extensionProtectedSettings"]}, "variables": {"type": "object", "properties": {"location": {"type": "string"}, "protectedSettingsObject": {"type": "object", "properties": {"protectedSettings": {"type": "string"}}, "required": ["protectedSettings"]}, "updatedExtensionProperties": {"type": "string"}}, "required": ["location", "protectedSettingsObject", "updatedExtensionProperties"]}, "resources": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "apiVersion": {"type": "string"}, "name": {"type": "string"}, "location": {"type": "string"}, "copy": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "string"}}, "required": ["name", "count"]}, "properties": {"type": "string"}}, "required": ["type", "apiVersion", "name", "location", "copy", "properties"]}}, "outputs": {"type": "object", "properties": {}, "required": []}}, "required": ["$schema", "contentVersion", "parameters", "variables", "resources", "outputs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "version", "description", "author", "license", "repository", "homepage", "main", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "index-require", "version" : "1.0.1", "description" : "\u261d\ufe0f Create an index for a lib directory", "author" : "omrilotan", "license" : "MIT", "repository" : {"type" : "git", "url" : "git+https://github.com/omrilotan/mono.git"}, "homepage" : "https://omrilotan.com/mono/index-require/", "main" : "index.js", "scripts" : {"test" : "cd ../../; npm t index-require; cd -"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "version", "description", "author", "license", "repository", "homepage", "main", "scripts"], "$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"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/cors": {"type": "string"}, "@types/express": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "mongodb": {"type": "string"}, "ts-node-dev": {"type": "string"}}, "required": ["@types/cors", "@types/express", "cors", "express", "mongodb", "ts-node-dev"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["name", "version", "description", "main", "author", "license", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "quest_me_server", "version" : "1.0.0", "description" : "The backend of the quest me app.", "main" : "index.js", "author" : "Evangelos Kolimitras", "license" : "MIT", "dependencies" : {"@types/cors" : "^2.8.9", "@types/express" : "^4.17.11", "cors" : "^2.8.5", "express" : "^4.17.1", "mongodb" : "^3.6.3", "ts-node-dev" : "^1.1.1"}, "scripts" : {"start" : "ts-node-dev src/index.ts"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/cors": {"type": "string"}, "@types/express": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "mongodb": {"type": "string"}, "ts-node-dev": {"type": "string"}}, "required": ["@types/cors", "@types/express", "cors", "express", "mongodb", "ts-node-dev"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["name", "version", "description", "main", "author", "license", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"line": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "tissue_type": {"type": "object", "properties": {"enum": {"type": "array", "items": {"type": "string"}}}, "required": ["enum"]}, "description": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["line", "tissue_type", "description"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["$schema", "title", "type", "properties", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "http://json-schema.org/draft-04/schema#", "title" : "Schema for tissues", "type" : "object", "properties" : {"line" : {"$ref" : "http://www.sciapps.org/schemas/line-1314860328447775206-242ac1111-0001-013.json"}, "tissue_type" : {"enum" : ["whole organism", "root", "shoot", "ear", "pollen", "endo"]}, "description" : {"type" : "string"}}, "required" : ["description", "line", "tissue_type"]} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"line": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "tissue_type": {"type": "object", "properties": {"enum": {"type": "array", "items": {"type": "string"}}}, "required": ["enum"]}, "description": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["line", "tissue_type", "description"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["$schema", "title", "type", "properties", "required"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}, "no_ip_control": {"type": "string"}}, "required": ["already_configured", "no_ip_control"]}, "error": {"type": "object", "properties": {"cannot_connect": {"type": "string"}, "invalid_host": {"type": "string"}, "unsupported_model": {"type": "string"}}, "required": ["cannot_connect", "invalid_host", "unsupported_model"]}, "step": {"type": "object", "properties": {"authorize": {"type": "object", "properties": {"description": {"type": "string"}, "title": {"type": "string"}}, "required": ["description", "title"]}, "user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"host": {"type": "string"}}, "required": ["host"]}, "description": {"type": "string"}, "title": {"type": "string"}}, "required": ["data", "description", "title"]}}, "required": ["authorize", "user"]}}, "required": ["abort", "error", "step"]}, "options": {"type": "object", "properties": {"step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"ignored_sources": {"type": "string"}}, "required": ["ignored_sources"]}, "title": {"type": "string"}}, "required": ["data", "title"]}}, "required": ["user"]}}, "required": ["step"]}}, "required": ["config", "options"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"config" : {"abort" : {"already_configured" : "Ce t\u00e9l\u00e9viseur est d\u00e9j\u00e0 configur\u00e9.", "no_ip_control" : "Le contr\u00f4le IP est d\u00e9sactiv\u00e9 sur votre t\u00e9l\u00e9viseur ou le t\u00e9l\u00e9viseur n'est pas pris en charge."}, "error" : {"cannot_connect" : "\u00c9chec de connexion, h\u00f4te ou code PIN non valide.", "invalid_host" : "Nom d'h\u00f4te ou adresse IP invalide.", "unsupported_model" : "Votre mod\u00e8le de t\u00e9l\u00e9viseur n'est pas pris en charge."}, "step" : {"authorize" : {"description" : "Saisissez le code PIN affich\u00e9 sur le t\u00e9l\u00e9viseur Sony Bravia. \n\nSi le code PIN n'est pas affich\u00e9, vous devez d\u00e9senregistrer Home Assistant de votre t\u00e9l\u00e9viseur, allez dans: Param\u00e8tres - > R\u00e9seau - > Param\u00e8tres de l'appareil distant - > Annuler l'enregistrement de l'appareil distant.", "title" : "Autoriser Sony Bravia TV"}, "user" : {"data" : {"host" : "Nom d'h\u00f4te ou adresse IP"}, "description" : "Configurez l'int\u00e9gration du t\u00e9l\u00e9viseur Sony Bravia. Si vous rencontrez des probl\u00e8mes de configuration, rendez-vous sur: https://www.home-assistant.io/integrations/braviatv \n\n Assurez-vous que votre t\u00e9l\u00e9viseur est allum\u00e9.", "title" : "Sony Bravia TV"}}}, "options" : {"step" : {"user" : {"data" : {"ignored_sources" : "Liste des sources ignor\u00e9es"}, "title" : "Options pour Sony Bravia TV"}}}} | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}, "no_ip_control": {"type": "string"}}, "required": ["already_configured", "no_ip_control"]}, "error": {"type": "object", "properties": {"cannot_connect": {"type": "string"}, "invalid_host": {"type": "string"}, "unsupported_model": {"type": "string"}}, "required": ["cannot_connect", "invalid_host", "unsupported_model"]}, "step": {"type": "object", "properties": {"authorize": {"type": "object", "properties": {"description": {"type": "string"}, "title": {"type": "string"}}, "required": ["description", "title"]}, "user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"host": {"type": "string"}}, "required": ["host"]}, "description": {"type": "string"}, "title": {"type": "string"}}, "required": ["data", "description", "title"]}}, "required": ["authorize", "user"]}}, "required": ["abort", "error", "step"]}, "options": {"type": "object", "properties": {"step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"ignored_sources": {"type": "string"}}, "required": ["ignored_sources"]}, "title": {"type": "string"}}, "required": ["data", "title"]}}, "required": ["user"]}}, "required": ["step"]}}, "required": ["config", "options"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"count": {"type": "integer"}, "395012": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "399011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "311010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "411011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "399021": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "113031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "395012", "399011", "311010", "411011", "399021", "N.A.//", "113031"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"count" : 12, "395012" : {"count" : 1}, "399011" : {"count" : 1}, "311010" : {"count" : 1}, "411011" : {"count" : 1}, "399021" : {"count" : 1}, "N.A.//" : {"count" : 6}, "113031" : {"count" : 1}} | json_instruct | {"type": "object", "properties": {"count": {"type": "integer"}, "395012": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "399011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "311010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "411011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "399021": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "113031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "395012", "399011", "311010", "411011", "399021", "N.A.//", "113031"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"codecov": {"type": "string"}, "cover": {"type": "string"}, "test": {"type": "string"}}, "required": ["codecov", "cover", "test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "istanbul": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "istanbul", "mocha"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "codeacademy-challenges", "version" : "1.0.0", "description" : "My solutions for the fun code academy challenges", "main" : "index.js", "scripts" : {"codecov" : "istanbul cover _mocha -- -R spec $(ls test/*/*.test.js) && codecov -t $CODECOV_TOKEN", "cover" : "istanbul cover _mocha -- $(ls test/*/*.test.js)", "test" : "mocha $(ls test/*/*.test.js)"}, "keywords" : ["codeacademy", "challenges", "nodejs"], "author" : "Daniel Santana <[email protected]>", "license" : "MIT", "devDependencies" : {"chai" : "^4.2.0", "istanbul" : "^1.1.0-alpha.1", "mocha" : "^6.2.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"codecov": {"type": "string"}, "cover": {"type": "string"}, "test": {"type": "string"}}, "required": ["codecov", "cover", "test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "istanbul": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "istanbul", "mocha"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"status_code": {"type": "integer"}, "data": {"type": "object", "properties": {"ResponseMetadata": {"type": "object", "properties": {"HTTPStatusCode": {"type": "integer"}, "RetryAttempts": {"type": "integer"}, "HostId": {"type": "string"}, "RequestId": {"type": "string"}, "HTTPHeaders": {"type": "object", "properties": {"x-amz-id-2": {"type": "string"}, "date": {"type": "string"}, "transfer-encoding": {"type": "string"}, "x-amz-request-id": {"type": "string"}, "server": {"type": "string"}}, "required": ["x-amz-id-2", "date", "transfer-encoding", "x-amz-request-id", "server"]}}, "required": ["HTTPStatusCode", "RetryAttempts", "HostId", "RequestId", "HTTPHeaders"]}, "TopicConfigurations": {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "TopicArn": {"type": "string"}, "Events": {"type": "array", "items": {"type": "string"}}}, "required": ["Id", "TopicArn", "Events"]}}}, "required": ["ResponseMetadata", "TopicConfigurations"]}}, "required": ["status_code", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status_code" : 200, "data" : {"ResponseMetadata" : {"HTTPStatusCode" : 200, "RetryAttempts" : 0, "HostId" : "bIrRudYgs4HdstuWwQ6A+FEBcUxv7h2oHSpFwIqwAcQu+gZEUJI/qh6l+26GwDBTBx/j5gVxP3I=", "RequestId" : "10C4B8C1780DE8CB", "HTTPHeaders" : {"x-amz-id-2" : "bIrRudYgs4HdstuWwQ6A+FEBcUxv7h2oHSpFwIqwAcQu+gZEUJI/qh6l+26GwDBTBx/j5gVxP3I=", "date" : "Sat, 18 Mar 2017 12:52:54 GMT", "transfer-encoding" : "chunked", "x-amz-request-id" : "10C4B8C1780DE8CB", "server" : "AmazonS3"}}, "TopicConfigurations" : [{"Id" : "ZWZmYTk0ODItZTBkYi00MjIxLWI2N2ItODdjM2JhNWEwNWJh", "TopicArn" : "arn:aws:sns:us-east-1:644160558196:preexisting-custodian-attach-encrypt-test", "Events" : ["s3:ObjectCreated:*"]}]}} | json_instruct | {"type": "object", "properties": {"status_code": {"type": "integer"}, "data": {"type": "object", "properties": {"ResponseMetadata": {"type": "object", "properties": {"HTTPStatusCode": {"type": "integer"}, "RetryAttempts": {"type": "integer"}, "HostId": {"type": "string"}, "RequestId": {"type": "string"}, "HTTPHeaders": {"type": "object", "properties": {"x-amz-id-2": {"type": "string"}, "date": {"type": "string"}, "transfer-encoding": {"type": "string"}, "x-amz-request-id": {"type": "string"}, "server": {"type": "string"}}, "required": ["x-amz-id-2", "date", "transfer-encoding", "x-amz-request-id", "server"]}}, "required": ["HTTPStatusCode", "RetryAttempts", "HostId", "RequestId", "HTTPHeaders"]}, "TopicConfigurations": {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "TopicArn": {"type": "string"}, "Events": {"type": "array", "items": {"type": "string"}}}, "required": ["Id", "TopicArn", "Events"]}}}, "required": ["ResponseMetadata", "TopicConfigurations"]}}, "required": ["status_code", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"AdminPassword": {"type": "string"}, "ApprovedEmotes": {"type": "null"}, "Bans": {"type": "array", "items": {}}, "LetThemLurk": {"type": "boolean"}, "ListenAddress": {"type": "string"}, "LogFile": {"type": "string"}, "LogLevel": {"type": "string"}, "MaxMessageCount": {"type": "integer"}, "NoCache": {"type": "boolean"}, "PageTitle": {"type": "string"}, "RateLimitAuth": {"type": "integer"}, "RateLimitChat": {"type": "integer"}, "RateLimitColor": {"type": "integer"}, "RateLimitDuplicate": {"type": "integer"}, "RateLimitNick": {"type": "integer"}, "RegenAdminPass": {"type": "boolean"}, "RtmpListenAddress": {"type": "string"}, "StreamKey": {"type": "string"}, "TitleLength": {"type": "integer"}, "TwitchClientID": {"type": "string"}, "TwitchClientSecret": {"type": "string"}, "WrappedEmotesOnly": {"type": "boolean"}}, "required": ["AdminPassword", "ApprovedEmotes", "Bans", "LetThemLurk", "ListenAddress", "LogFile", "LogLevel", "MaxMessageCount", "NoCache", "PageTitle", "RateLimitAuth", "RateLimitChat", "RateLimitColor", "RateLimitDuplicate", "RateLimitNick", "RegenAdminPass", "RtmpListenAddress", "StreamKey", "TitleLength", "TwitchClientID", "TwitchClientSecret", "WrappedEmotesOnly"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"AdminPassword" : "", "ApprovedEmotes" : null, "Bans" : [], "LetThemLurk" : false, "ListenAddress" : ":8089", "LogFile" : "/var/log/movienight.log", "LogLevel" : "debug", "MaxMessageCount" : 300, "NoCache" : false, "PageTitle" : "Movie Night", "RateLimitAuth" : 5, "RateLimitChat" : 1, "RateLimitColor" : 60, "RateLimitDuplicate" : 30, "RateLimitNick" : 300, "RegenAdminPass" : true, "RtmpListenAddress" : ":1935", "StreamKey" : "ALongStreamKey", "TitleLength" : 50, "TwitchClientID" : "", "TwitchClientSecret" : "", "WrappedEmotesOnly" : false} | json_instruct | {"type": "object", "properties": {"AdminPassword": {"type": "string"}, "ApprovedEmotes": {"type": "null"}, "Bans": {"type": "array", "items": {}}, "LetThemLurk": {"type": "boolean"}, "ListenAddress": {"type": "string"}, "LogFile": {"type": "string"}, "LogLevel": {"type": "string"}, "MaxMessageCount": {"type": "integer"}, "NoCache": {"type": "boolean"}, "PageTitle": {"type": "string"}, "RateLimitAuth": {"type": "integer"}, "RateLimitChat": {"type": "integer"}, "RateLimitColor": {"type": "integer"}, "RateLimitDuplicate": {"type": "integer"}, "RateLimitNick": {"type": "integer"}, "RegenAdminPass": {"type": "boolean"}, "RtmpListenAddress": {"type": "string"}, "StreamKey": {"type": "string"}, "TitleLength": {"type": "integer"}, "TwitchClientID": {"type": "string"}, "TwitchClientSecret": {"type": "string"}, "WrappedEmotesOnly": {"type": "boolean"}}, "required": ["AdminPassword", "ApprovedEmotes", "Bans", "LetThemLurk", "ListenAddress", "LogFile", "LogLevel", "MaxMessageCount", "NoCache", "PageTitle", "RateLimitAuth", "RateLimitChat", "RateLimitColor", "RateLimitDuplicate", "RateLimitNick", "RegenAdminPass", "RtmpListenAddress", "StreamKey", "TitleLength", "TwitchClientID", "TwitchClientSecret", "WrappedEmotesOnly"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Version": {"type": "string"}, "Statement": {"type": "array", "items": {"type": "object", "properties": {"Effect": {"type": "string"}, "Action": {"type": "array", "items": {"type": "string"}}, "Resource": {"type": "string"}}, "required": ["Effect", "Action", "Resource"]}}}, "required": ["Version", "Statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Version" : "2012-10-17", "Statement" : [{"Effect" : "Allow", "Action" : ["s3:GetObject"], "Resource" : "arn:aws:s3:::*/AWSLogs/*/Config/*"}, {"Effect" : "Allow", "Action" : ["config:Put*", "config:Get*", "config:List*", "config:Describe*"], "Resource" : "*"}]} | json_instruct | {"type": "object", "properties": {"Version": {"type": "string"}, "Statement": {"type": "array", "items": {"type": "object", "properties": {"Effect": {"type": "string"}, "Action": {"type": "array", "items": {"type": "string"}}, "Resource": {"type": "string"}}, "required": ["Effect", "Action", "Resource"]}}}, "required": ["Version", "Statement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"dev": {"type": "object", "properties": {"host": {"type": "string"}, "sessionKey": {"type": "string"}, "address": {"type": "string"}}, "required": ["host", "sessionKey", "address"]}}, "required": ["dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dev" : {"host" : "http://localhost", "sessionKey" : "dpIWge4PffofiRM0givJzJiQ", "address" : "[email protected]"}} | json_instruct | {"type": "object", "properties": {"dev": {"type": "object", "properties": {"host": {"type": "string"}, "sessionKey": {"type": "string"}, "address": {"type": "string"}}, "required": ["host", "sessionKey", "address"]}}, "required": ["dev"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"types": {"type": "array", "items": {"type": "string"}}, "date": {"type": "integer"}, "headline": {"type": "string"}, "subtitle": {"type": "string"}, "content": {"type": "string"}, "url": {"type": "string"}, "image": {"type": "object", "properties": {"path": {"type": "string"}, "filesize": {"type": "integer"}}, "required": ["path", "filesize"]}, "landscape": {"type": "object", "properties": {"path": {"type": "string"}, "filesize": {"type": "integer"}}, "required": ["path", "filesize"]}}, "required": ["types", "date", "headline", "subtitle", "content", "url", "image", "landscape"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"types" : ["newswire", "transition"], "date" : 1387887193, "headline" : "GTA Online", "subtitle" : "Regalo delle feste", "content" : "Buone feste! Ecco il Regalo gratuito che dona una splendida atmosfera invernale a GTA Online, ricoprendo di neve Los Santos e Blaine County nel giorno di Natale. Per un periodo limitato saranno disponibili abiti e accessori speciali a tema, come cappelli di Babbo Natale, giacche da elfo, maschere da pupazzo di neve e molto altro. <br /><br />Divertitevi a fare autoscatti e a condividere le foto Snapmatic delle vacanze con nuovi filtri, cornici ed espressioni facciali, un generatore di meme e altro ancora.", "url" : "www.rockstargames.com/GTAOnline", "image" : {"path" : "sc/news/Holiday_Gift/65664_Holiday_Gift_Portrait.dds", "filesize" : 65664}, "landscape" : {"path" : "sc/news/Holiday_Gift/65664_Holiday_Gift_Landscape.dds", "filesize" : 65664}} | json_instruct | {"type": "object", "properties": {"types": {"type": "array", "items": {"type": "string"}}, "date": {"type": "integer"}, "headline": {"type": "string"}, "subtitle": {"type": "string"}, "content": {"type": "string"}, "url": {"type": "string"}, "image": {"type": "object", "properties": {"path": {"type": "string"}, "filesize": {"type": "integer"}}, "required": ["path", "filesize"]}, "landscape": {"type": "object", "properties": {"path": {"type": "string"}, "filesize": {"type": "integer"}}, "required": ["path", "filesize"]}}, "required": ["types", "date", "headline", "subtitle", "content", "url", "image", "landscape"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "image": {"type": "string"}}, "required": ["text", "created", "type", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "Reporters and pundits seem to think we're reliving Watergate. I don't think so. In Watergate you didn't have ex-presidents warning that if we don't do something, we're going to wind up in Nazi Germany. I wonder how many times we'll hear that warning, or if you only get it once, and if the next thing is that the ex-president goes into hiding. How much are the Repubs in Congress backing Trump because they like the politics or they fear for their lives? There probably won't be a point where you get a choice, go this way for salvation and the other way for hell. It may be that by the time you realize there was a choice, there no longer is a choice. A year ago we were trying to convince electors to do the sane thing and not vote for Trump. Now look where we are. If Roy Moore makes it into Congress, how many Roy Moores will follow? ", "created" : "Sun, 10 Dec 2017 18:05:41 GMT", "type" : "outline", "image" : "http://scripting.com/images/2017/12/10/thisIsNextYear.png"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "image": {"type": "string"}}, "required": ["text", "created", "type", "image"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "additionalProperties": {"type": "boolean"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"last_calls": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "apis_usage": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["last_calls", "apis_usage"]}}, "required": ["type", "additionalProperties", "required", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "object", "additionalProperties" : false, "required" : ["last_calls", "apis_usage"], "properties" : {"last_calls" : {"$ref" : "last_calls.json"}, "apis_usage" : {"$ref" : "apis_usage.json"}}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "additionalProperties": {"type": "boolean"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"last_calls": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}, "apis_usage": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["last_calls", "apis_usage"]}}, "required": ["type", "additionalProperties", "required", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"tls": {"type": "boolean"}, "network": {"type": "string"}, "srpc": {"type": "string"}, "tlspub": {"type": "string"}, "tlspri": {"type": "string"}}, "required": ["tls", "network", "srpc", "tlspub", "tlspri"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"tls" : true, "network" : "network", "srpc" : "srpc", "tlspub" : "tlspub", "tlspri" : "tlspri"} | json_instruct | {"type": "object", "properties": {"tls": {"type": "boolean"}, "network": {"type": "string"}, "srpc": {"type": "string"}, "tlspub": {"type": "string"}, "tlspri": {"type": "string"}}, "required": ["tls", "network", "srpc", "tlspub", "tlspri"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"release": {"type": "string"}, "test": {"type": "string"}}, "required": ["release", "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"}, "dependencies": {"type": "object", "properties": {"phylo": {"type": "string"}}, "required": ["phylo"]}, "devDependencies": {"type": "object", "properties": {"cz-conventional-changelog": {"type": "string"}, "istanbul": {"type": "string"}, "mocha": {"type": "string"}, "standard-version": {"type": "string"}}, "required": ["cz-conventional-changelog", "istanbul", "mocha", "standard-version"]}, "config": {"type": "object", "properties": {"commitizen": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}, "required": ["commitizen"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "chrome-profile-list", "version" : "1.1.0", "description" : "Utility package to list available Google Chrome Profiles", "main" : "index.js", "scripts" : {"release" : "standard-version", "test" : "mocha"}, "repository" : {"type" : "git", "url" : "git+https://github.com/israelroldan/chrome-profile-list.git"}, "keywords" : ["Google", "Chrome", "Chrome", "Profile"], "author" : "Israel Roldan ([email protected])", "license" : "ISC", "bugs" : {"url" : "https://github.com/israelroldan/chrome-profile-list/issues"}, "homepage" : "https://github.com/israelroldan/chrome-profile-list#readme", "dependencies" : {"phylo" : "^1.0.0-rc.3"}, "devDependencies" : {"cz-conventional-changelog" : "^2.0.0", "istanbul" : "^0.4.5", "mocha" : "^5.2.0", "standard-version" : "^4.0.0"}, "config" : {"commitizen" : {"path" : "./node_modules/cz-conventional-changelog"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"release": {"type": "string"}, "test": {"type": "string"}}, "required": ["release", "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"}, "dependencies": {"type": "object", "properties": {"phylo": {"type": "string"}}, "required": ["phylo"]}, "devDependencies": {"type": "object", "properties": {"cz-conventional-changelog": {"type": "string"}, "istanbul": {"type": "string"}, "mocha": {"type": "string"}, "standard-version": {"type": "string"}}, "required": ["cz-conventional-changelog", "istanbul", "mocha", "standard-version"]}, "config": {"type": "object", "properties": {"commitizen": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}, "required": ["commitizen"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"xmin": {"type": "array", "items": {"type": "integer"}}, "xmax": {"type": "array", "items": {"type": "integer"}}, "ymin": {"type": "array", "items": {"type": "integer"}}, "ymax": {"type": "array", "items": {"type": "integer"}}}, "required": ["xmin", "xmax", "ymin", "ymax"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"xmin" : [915, 936, 787, 723, 994, 1107, 266, 1015, 1443, 1514, 457, 965, 1045, 151, 271, 279, 125], "xmax" : [982, 1043, 857, 805, 1043, 1165, 324, 1070, 1474, 1584, 504, 1029, 1142, 222, 316, 321, 215], "ymin" : [69, 129, 403, 330, 221, 336, 878, 620, 823, 1142, 1151, 1167, 1083, 311, 115, 63, 1151], "ymax" : [123, 151, 467, 385, 330, 394, 1000, 714, 940, 1224, 1206, 1211, 1169, 356, 193, 112, 1196]} | json_instruct | {"type": "object", "properties": {"xmin": {"type": "array", "items": {"type": "integer"}}, "xmax": {"type": "array", "items": {"type": "integer"}}, "ymin": {"type": "array", "items": {"type": "integer"}}, "ymax": {"type": "array", "items": {"type": "integer"}}}, "required": ["xmin", "xmax", "ymin", "ymax"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"categories" : ["Engineering", "Management", "Networking", "Telecommunications"], "desc" : " This comprehensive volume provides state-of-the art guidance on Quality of Service (QoS) and Quality of end-user Experience (QoE) management in UMTS cellular systems, tackling planning, provisioning, monitoring and optimisation issues in a single accessible resource. In addition, a detailed discussion is provided on service applications, QoS concept, architecture and functions in access, packet & circuit switched core and backbone networks. ", "details" : {"authors" : "David Soldani, Man Li, Renaud Cuny", "format" : "pdf", "isbn-10" : "0470016396", "isbn-13" : "978-0470016398", "pages" : "488 pages", "publication date" : "August 25, 2006", "publisher" : "Wiley", "size" : "9.00Mb"}, "img" : "http://23.95.221.108/covers/8a/8aca5a08bcd993e2f0b3ff7491f1c75b.jpg", "link" : "https://rapidhosting.info/files/cvu", "title" : "QoS and QoE Management in UMTS Cellular Systems"} | json_instruct | {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Add to Cart button is hidden.": {"type": "array", "items": {"type": "string"}}, "Add to Cart button is visible.": {"type": "array", "items": {"type": "string"}}, "Add to Cart button": {"type": "array", "items": {"type": "string"}}, "Product rating is hidden.": {"type": "array", "items": {"type": "string"}}, "Product rating is visible.": {"type": "array", "items": {"type": "string"}}, "Product rating": {"type": "array", "items": {"type": "string"}}, "Product price is hidden.": {"type": "array", "items": {"type": "string"}}, "Product price is visible.": {"type": "array", "items": {"type": "string"}}, "Product price": {"type": "array", "items": {"type": "string"}}, "Product title is hidden.": {"type": "array", "items": {"type": "string"}}, "Product title is visible.": {"type": "array", "items": {"type": "string"}}, "Product title": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Add to Cart button is hidden.", "Add to Cart button is visible.", "Add to Cart button", "Product rating is hidden.", "Product rating is visible.", "Product rating", "Product price is hidden.", "Product price is visible.", "Product price", "Product title is hidden.", "Product title is visible.", "Product title"]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"translation-revision-date" : "2020-05-30 19:31:27+0000", "generator" : "GlotPress/3.0.0-alpha", "domain" : "messages", "locale_data" : {"messages" : {"" : {"domain" : "messages", "plural-forms" : "nplurals=2; plural=n > 1;", "lang" : "fr_CA"}, "Add to Cart button is hidden." : ["Le bouton Ajouter au panier est masqu\u00e9."], "Add to Cart button is visible." : ["Le bouton Ajouter au panier est visible."], "Add to Cart button" : ["Bouton Ajouter au panier"], "Product rating is hidden." : ["La note du produit est masqu\u00e9e."], "Product rating is visible." : ["La note du produit est visible."], "Product rating" : ["Note du produit"], "Product price is hidden." : ["Le prix du produit est masqu\u00e9."], "Product price is visible." : ["Le prix du produit est visible."], "Product price" : ["Prix du produit"], "Product title is hidden." : ["Le titre du produit est masqu\u00e9."], "Product title is visible." : ["Le titre du produit est visible."], "Product title" : ["Titre du produit"]}}, "comment" : {"reference" : "packages/woocommerce-blocks/assets/js/components/grid-content-control/index.js"}} | json_instruct | {"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Add to Cart button is hidden.": {"type": "array", "items": {"type": "string"}}, "Add to Cart button is visible.": {"type": "array", "items": {"type": "string"}}, "Add to Cart button": {"type": "array", "items": {"type": "string"}}, "Product rating is hidden.": {"type": "array", "items": {"type": "string"}}, "Product rating is visible.": {"type": "array", "items": {"type": "string"}}, "Product rating": {"type": "array", "items": {"type": "string"}}, "Product price is hidden.": {"type": "array", "items": {"type": "string"}}, "Product price is visible.": {"type": "array", "items": {"type": "string"}}, "Product price": {"type": "array", "items": {"type": "string"}}, "Product title is hidden.": {"type": "array", "items": {"type": "string"}}, "Product title is visible.": {"type": "array", "items": {"type": "string"}}, "Product title": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Add to Cart button is hidden.", "Add to Cart button is visible.", "Add to Cart button", "Product rating is hidden.", "Product rating is visible.", "Product rating", "Product price is hidden.", "Product price is visible.", "Product price", "Product title is hidden.", "Product title is visible.", "Product title"]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"APPINSIGHTS_INSTRUMENTATIONKEY": {"type": "string"}}, "required": ["APPINSIGHTS_INSTRUMENTATIONKEY"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"APPINSIGHTS_INSTRUMENTATIONKEY" : ""} | json_instruct | {"type": "object", "properties": {"APPINSIGHTS_INSTRUMENTATIONKEY": {"type": "string"}}, "required": ["APPINSIGHTS_INSTRUMENTATIONKEY"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["In a medium bowl, stir together the lime juice, white wine vinegar, salt, pepper, ginger, basil, thyme, parsley, hot pepper sauce, cayenne pepper, and oil. Place the fish fillets into the bowl, cover, and marinate for at least 10 minutes, or preferably up to 3 hours.", "Preheat broiler or an outdoor grill for high heat.", "Place fish onto the grill or a broiling pan. Discard marinade. Grill or broil fish about five minutes each side, until the fish flakes easily with a fork."], "ingredients" : ["3 tablespoons fresh lime juice", "2 tablespoons white wine vinegar", "1 teaspoon salt", "1/8 teaspoon freshly ground black pepper", "1/4 teaspoon ground ginger", "1/4 teaspoon dried basil", "1/8 teaspoon dried thyme", "1/8 teaspoon dried parsley", "1 teaspoon hot pepper sauce", "1 pinch cayenne pepper", "3 tablespoons vegetable oil", "2 fresh swordfish fillets"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "E-Z Marinated Swordfish", "url" : "http://allrecipes.com/recipe/51738/e-z-marinated-swordfish/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"categories" : ["Data Management", "Networking"], "desc" : "\n", "details" : {"authors" : "Todd Lammle, John Swartz", "format" : "pdf", "isbn-10" : "1118661265", "isbn-13" : "978-1118661260", "pages" : "552 pages", "publication date" : "June 17, 2013", "publisher" : "Sybex", "size" : "15.00Mb"}, "img" : "http://23.95.221.108/covers/a4/a49432b76d3631066e45e5f56f684038.jpg", "link" : "https://rapidhosting.info/files/98f", "title" : "CCNA Data Center \u2013 Introducing Cisco Data Center Networking Study Guide: Exam 640-911"} | json_instruct | {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"couseTitle": {"type": "string"}, "caseNm": {"type": "string"}, "couserList": {"type": "array", "items": {"type": "object", "properties": {"couseICon": {"type": "array", "items": {"type": "string"}}, "couseImg": {"type": "string"}, "couseIntr": {"type": "string"}, "couseName": {"type": "string"}, "id": {"type": "string"}}, "required": ["couseICon", "couseImg", "couseIntr", "couseName", "id"]}}}, "required": ["couseTitle", "caseNm", "couserList"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"couseTitle" : "\u7ecf\u5178\u6848\u4f8b", "caseNm" : "\u662f\u9002\u5408\u5173\u6ce8\u6280\u672f\u4e0e\u903b\u8f91\u5b9e\u73b0\u7684\u6700\u4f73\u5b9e\u8df5\u6848\u4f8b\uff0c\u5176\u5b8c\u6574\u7684\u7a0b\u5e8f\u7ed3\u6784\u4e0e\u6587\u6863\uff0c\u4ee5\u53ca\u5b9e\u73b0\u65f6\u95f4\u77ed\uff0c\u662f\u5f3a\u5316\u7f16\u7801\u80fd\u529b\u3001\u953b\u70bc\u903b\u8f91\u5b9e\u73b0\u80fd\u529b\u3001\u5e76\u57f9\u517b\u4ea7\u54c1\u610f\u8bc6\u3001\u5f3a\u5316\u8f6f\u4ef6\u5de5\u7a0b\u65b9\u6cd5\u7684\u5e94\u7528\u80fd\u529b\u7684\u6700\u4f73\u7efc\u5408\u6848\u4f8b\u3002", "couserList" : [{"couseICon" : ["\u9879\u76ee\u8bfe\u4ef61\u9875", "\u6307\u5bfc\u624b\u518c199\u9875", "\u53c2\u8003\u624b\u518c1\u9875", "\u53c2\u8003\u4ee3\u780121\u884c", "\u6307\u5bfc\u89c6\u98911v\u4e2a"], "couseImg" : "src/assets/images/java_1.jpg", "couseIntr" : "\u5236\u4f5c\u4e00\u4e2a\u7b80\u5355\u7684\u4fc4\u7f57\u65af\u65b9\u5757\uff0c\u62e5\u67097\u79cd\u65b9\u5757\u7684\u53d8\u6362\u3002\u6e38\u620f\u53ef\u4ee5\u968f\u65f6\u6682\u505c\u3001\u505c\u6b62\u3002\u6e38\u620f\u8fd8\u6709\u6210\u7ee9\u8bb0\u5f55\u65b9\u5f0f\u3002\u5728\u5b8c\u6210Swing\u548c\u7ebf\u7a0b\u8bfe\u7a0b\u540e\uff0c\u8003\u8651\u5f00\u59cb\u672c\u9879\u76ee\u7684\u5b9e\u65bd\u3002", "couseName" : "\u4fc4\u7f57\u65af\u65b9\u57572132", "id" : "1"}, {"couseICon" : ["\u9879\u76ee\u8bfe\u4ef611\u9875", "\u6307\u5bfc\u624b\u518c15\u9875", "\u53c2\u8003\u624b\u518c123\u9875", "\u53c2\u8003\u4ee3\u7801311\u884c", "\u6307\u5bfc\u89c6\u989111\u4e2a"], "couseImg" : "src/assets/images/game_2.jpg", "couseIntr" : "\u5236\u4f5c\u4e00\u4e2a\u7b80\u5355\u7684\u4fc4\u7f57\u65af\u65b9\u5757\uff0c\u62e5\u67097\u79cd\u65b9\u5757\u7684\u53d8\u6362\u3002\u6e38\u620f\u53ef\u4ee5\u968f\u65f6\u6682\u505c\u3001\u505c\u6b62\u3002\u6e38\u620f\u8fd8\u6709\u6210\u7ee9\u8bb0\u5f55\u65b9\u5f0f\u3002\u5728\u5b8c\u6210Swing\u548c\u7ebf\u7a0b\u8bfe\u7a0b\u540e\uff0c\u8003\u8651\u5f00\u59cb\u672c\u9879\u76ee\u7684\u5b9e\u65bd\u3002", "couseName" : "\u4fc4\u7f57\u65af\u65b9\u57572132", "id" : "2"}]}} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"couseTitle": {"type": "string"}, "caseNm": {"type": "string"}, "couserList": {"type": "array", "items": {"type": "object", "properties": {"couseICon": {"type": "array", "items": {"type": "string"}}, "couseImg": {"type": "string"}, "couseIntr": {"type": "string"}, "couseName": {"type": "string"}, "id": {"type": "string"}}, "required": ["couseICon", "couseImg", "couseIntr", "couseName", "id"]}}}, "required": ["couseTitle", "caseNm", "couserList"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"an4.81:0.1": {"type": "string"}, "an4.81:0.2": {"type": "string"}, "an4.81:0.3": {"type": "string"}, "an4.81:1.1": {"type": "string"}, "an4.81:1.2": {"type": "string"}, "an4.81:1.3": {"type": "string"}, "an4.81:1.4": {"type": "string"}, "an4.81:2.1": {"type": "string"}, "an4.81:2.2": {"type": "string"}, "an4.81:2.3": {"type": "string"}, "an4.81:2.4": {"type": "string"}, "an4.81:2.5": {"type": "string"}}, "required": ["an4.81:0.1", "an4.81:0.2", "an4.81:0.3", "an4.81:1.1", "an4.81:1.2", "an4.81:1.3", "an4.81:1.4", "an4.81:2.1", "an4.81:2.2", "an4.81:2.3", "an4.81:2.4", "an4.81:2.5"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"an4.81:0.1" : "<article id='an4.81'><header><ul><li class='division'>{}</li>", "an4.81:0.2" : "<li>{}</li></ul>", "an4.81:0.3" : "<h1 class='sutta-title'>{}</h1></header>", "an4.81:1.1" : "<p>{}", "an4.81:1.2" : "{}", "an4.81:1.3" : "{}", "an4.81:1.4" : "{}</p>", "an4.81:2.1" : "<p>{}", "an4.81:2.2" : "{}", "an4.81:2.3" : "{}", "an4.81:2.4" : "{}</p>", "an4.81:2.5" : "<p class='endsection'>{}</p></article>"} | json_instruct | {"type": "object", "properties": {"an4.81:0.1": {"type": "string"}, "an4.81:0.2": {"type": "string"}, "an4.81:0.3": {"type": "string"}, "an4.81:1.1": {"type": "string"}, "an4.81:1.2": {"type": "string"}, "an4.81:1.3": {"type": "string"}, "an4.81:1.4": {"type": "string"}, "an4.81:2.1": {"type": "string"}, "an4.81:2.2": {"type": "string"}, "an4.81:2.3": {"type": "string"}, "an4.81:2.4": {"type": "string"}, "an4.81:2.5": {"type": "string"}}, "required": ["an4.81:0.1", "an4.81:0.2", "an4.81:0.3", "an4.81:1.1", "an4.81:1.2", "an4.81:1.3", "an4.81:1.4", "an4.81:2.1", "an4.81:2.2", "an4.81:2.3", "an4.81:2.4", "an4.81:2.5"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"ui-grid.css": {"type": "string"}, "ui-grid.js": {"type": "string"}, "ui-grid.min.css": {"type": "string"}, "ui-grid.min.js": {"type": "string"}}, "required": ["ui-grid.css", "ui-grid.js", "ui-grid.min.css", "ui-grid.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ui-grid.css" : "sha256-wfploct6xTcK+rc92BtIAyWQHX2qN1jiReRgXSTSjNU=", "ui-grid.js" : "sha256-n3DWigjF2zzKTbenVRvowLsLlYOVtmH9yk92cVoe3+o=", "ui-grid.min.css" : "sha256-xKU9bKB8/EKtwGZWYpfiUN8tvXW/XzfYc+rUOC39W2A=", "ui-grid.min.js" : "sha256-lZ36z3oU3enBoFgzjwus56FSW/7yNWSXb9BjMjoZH94="} | json_instruct | {"type": "object", "properties": {"ui-grid.css": {"type": "string"}, "ui-grid.js": {"type": "string"}, "ui-grid.min.css": {"type": "string"}, "ui-grid.min.js": {"type": "string"}}, "required": ["ui-grid.css", "ui-grid.js", "ui-grid.min.css", "ui-grid.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "connectsWith", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "title" : "Portonaccio sanctuary at Veii", "id" : "486020305", "bbox" : [12.390833, 42.021111, 12.390833, 42.021111], "description" : "The extraurban sanctuary of Minerva at Portonaccio is an important Etruscan cult center. The temple dates ca. 510 B.C. and was adorned with acroterial sculptures, notably the famous \"Apollo of Veii\".", "connectsWith" : ["423116"], "names" : ["santuario di Portonaccio a Veio"], "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [12.390833, 42.021111]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [12.390833, 42.021111]}, "id" : "portonaccio-sanctuary", "type" : "Feature", "properties" : {"description" : "The Portonaccio sanctuary of Etruscan Veii.", "location_precision" : "precise", "title" : "Imagery location of so-called Portonaccio sanctuary", "link" : "http://pleiades.stoa.org/places/486020305/portonaccio-sanctuary"}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "connectsWith", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lastUpdated" : 1655019279666, "username" : "\u0421\u043e\u043d\u0438\u043a", "scores" : [{"xp" : 3594, "rank" : 496, "cardId" : 303}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"1.0.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0.0"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["1.0.0"], "meta" : {"description" : "Nonblocking text and password reader", "homepage" : "https://github.com/riquito/richinput", "license" : "Apache 2.0"}, "versions" : {"1.0.0" : {"sha256" : "deb392c851e015730be772008941539c2c86d4c57d9d925c2be8ff70f9ff7cb4", "url" : "https://files.pythonhosted.org/packages/2a/22/1c5f35d15a398979fd37a6c5cf4555dd23164a2b48f78f2e9e1b124a9ed6/richinput-1.0.0.tar.gz"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"1.0.0": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["1.0.0"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "KAMARAH", "frequency" : 0, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/active/weapons/melee/hammer/elderhammer.activeitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/active/weapons/melee/hammer/elderhammer.activeitem"]}, "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/active/weapons/melee/hammer/elderhammer.activeitem" : ["/shortdescription"]}, "Texts" : {"Chs" : "\u4e0a\u53e4\u4e4b\u9524", "Eng" : "Elder Hammer"}}, {"DeniedAlternatives" : [], "Files" : {"items/active/weapons/melee/hammer/elderhammer.activeitem" : ["/description"]}, "Texts" : {"Chs" : "\u626d\u66f2\u73b0\u5b9e\u7684\u51f6\u5668\u3002", "Eng" : "Warp reality with murder!"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/active/weapons/melee/hammer/elderhammer.activeitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/active/weapons/melee/hammer/elderhammer.activeitem"]}, "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "Resolves #15970\r\n\r\nIf this is an acceptable change, I will add unit test coverage.", "user" : "dennisklein", "url" : "https://api.github.com/repos/spack/spack/issues/15972", "updated_at" : "2020-07-24 17:00:56", "created_at" : "2020-04-09 14:40:15", "closed_at" : "2020-07-24 17:00:56", "state" : "closed", "title" : "Relax architecture compatibility check", "number" : 15972, "milestone" : null, "labels" : ["concretization", "microarchitectures"], "id" : 597331118, "html_url" : "https://github.com/spack/spack/pull/15972", "assignees" : [], "comments" : 2} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"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"}, "bootstrap": {"type": "string"}, "jquery": {"type": "string"}}, "required": ["angular", "angular-route", "bootstrap", "jquery"]}}, "required": ["name", "homepage", "authors", "description", "main", "license", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ministore", "homepage" : "https://github.com/ValentynaGorbachenko/ministore", "authors" : ["ValentynaGorbachenko <[email protected]>"], "description" : "A simple store page example using Angular", "main" : "", "license" : "MIT", "private" : true, "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"angular" : "^1.5.9", "angular-route" : "^1.5.9", "bootstrap" : "^3.3.7", "jquery" : "^3.1.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"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"}, "bootstrap": {"type": "string"}, "jquery": {"type": "string"}}, "required": ["angular", "angular-route", "bootstrap", "jquery"]}}, "required": ["name", "homepage", "authors", "description", "main", "license", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"buildTime": {"type": "string"}}, "required": ["buildTime"]}}, "required": ["site"]}, "pageContext": {"type": "object", "properties": {"slug": {"type": "string"}, "langKey": {"type": "string"}}, "required": ["slug", "langKey"]}}, "required": ["data", "pageContext"]}}, "required": ["componentChunkName", "path", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"componentChunkName" : "component---src-pages-using-typescript-tsx", "path" : "/using-typescript/", "result" : {"data" : {"site" : {"buildTime" : "2020-07-06 09:42 pm UTC"}}, "pageContext" : {"slug" : "/using-typescript/", "langKey" : "pt"}}} | json_instruct | {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"buildTime": {"type": "string"}}, "required": ["buildTime"]}}, "required": ["site"]}, "pageContext": {"type": "object", "properties": {"slug": {"type": "string"}, "langKey": {"type": "string"}}, "required": ["slug", "langKey"]}}, "required": ["data", "pageContext"]}}, "required": ["componentChunkName", "path", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"metrics": {"type": "array", "items": {"type": "string"}}, "filterBy": {"type": "array", "items": {"type": "object", "properties": {"filterType": {"type": "string"}, "values": {"type": "array", "items": {"type": "string"}}, "interpretAs": {"type": "string"}}, "required": ["filterType", "values", "interpretAs"]}}, "groupBy": {"type": "array", "items": {"type": "string"}}}, "required": ["metrics", "filterBy", "groupBy"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"metrics" : ["Citations", "Unique_Dataset_Requests", "Total_Dataset_Requests", "Total_Dataset_Investigations", "Unique_Dataset_Investigations"], "filterBy" : [{"filterType" : "uid", "values" : ["User01"], "interpretAs" : "list"}, {"filterType" : "month", "values" : ["2017-01", "2018-04"], "interpretAs" : "range"}], "groupBy" : ["uid", "month", "year"]} | json_instruct | {"type": "object", "properties": {"metrics": {"type": "array", "items": {"type": "string"}}, "filterBy": {"type": "array", "items": {"type": "object", "properties": {"filterType": {"type": "string"}, "values": {"type": "array", "items": {"type": "string"}}, "interpretAs": {"type": "string"}}, "required": ["filterType", "values", "interpretAs"]}}, "groupBy": {"type": "array", "items": {"type": "string"}}}, "required": ["metrics", "filterBy", "groupBy"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "other_nominate": {"type": "array", "items": {}}}, "required": ["title", "other_nominate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "CUBE ZERO", "other_nominate" : []} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "other_nominate": {"type": "array", "items": {}}}, "required": ["title", "other_nominate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["Hyderabad ", "Andhra Pradesh", "0.31", "536"], ["Lucknow ", "Uttar Pradesh", "0.23", "157"], ["Thrissur ", "Kerala", "0.18", "594"], ["Chennai ", "Tamil Nadu", "0.18", "603"], ["Rangareddy ", "Andhra Pradesh", "0.17", "537"], ["Bangalore ", "Karnataka", "0.17", "572"], ["Lakshadweep ", "Lakshadweep", "0.17", "587"], ["Kozhikode ", "Kerala", "0.17", "591"], ["Pathanamthitta ", "Kerala", "0.17", "599"], ["Thiruvananthapuram ", "Kerala", "0.17", "601"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"gh-pages": {"type": "string"}, "parcel": {"type": "string"}}, "required": ["gh-pages", "parcel"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "build", "deploy"]}, "contributors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "version", "description", "dependencies", "devDependencies", "scripts", "contributors", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "memory-game", "version" : "0.1.0", "description" : "This is an example of a Memory-game on react.", "dependencies" : {"react" : "^16.6.3", "react-dom" : "^16.6.3"}, "devDependencies" : {"gh-pages" : "^2.0.1", "parcel" : "1.10.3"}, "scripts" : {"start" : "parcel ./src/index.html", "build" : "parcel build ./src/index.html --public-url /project1", "deploy" : "gh-pages -d dist"}, "contributors" : ["Yorik"], "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"gh-pages": {"type": "string"}, "parcel": {"type": "string"}}, "required": ["gh-pages", "parcel"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "build", "deploy"]}, "contributors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}}, "required": ["name", "version", "description", "dependencies", "devDependencies", "scripts", "contributors", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"signature": {"type": "string"}, "name": {"type": "string"}, "containingClass": {"type": "object", "properties": {"qualifiedName": {"type": "string"}, "name": {"type": "string"}, "isArray": {"type": "boolean"}}, "required": ["qualifiedName", "name", "isArray"]}, "targetClass": {"type": "string"}, "isVarArgs": {"type": "boolean"}, "returnType": {"type": "object", "properties": {"qualifiedName": {"type": "string"}, "name": {"type": "string"}, "isArray": {"type": "boolean"}}, "required": ["qualifiedName", "name", "isArray"]}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "object", "properties": {"qualifiedName": {"type": "string"}, "name": {"type": "string"}, "isArray": {"type": "boolean"}}, "required": ["qualifiedName", "name", "isArray"]}, "name": {"type": "string"}}, "required": ["type", "name"]}}, "paramTags": {"type": "array", "items": {"type": "object", "properties": {"parameter": {"type": "object", "properties": {"type": {"type": "object", "properties": {"qualifiedName": {"type": "string"}, "name": {"type": "string"}, "isArray": {"type": "boolean"}}, "required": ["qualifiedName", "name", "isArray"]}, "name": {"type": "string"}}, "required": ["type", "name"]}, "comment": {"type": "string"}, "kind": {"type": "string"}, "condition": {"type": "string"}}, "required": ["parameter", "comment", "kind", "condition"]}}, "returnTag": {"type": "object", "properties": {"comment": {"type": "string"}, "kind": {"type": "string"}, "condition": {"type": "string"}}, "required": ["comment", "kind", "condition"]}, "throwsTags": {"type": "array", "items": {}}}, "required": ["signature", "name", "containingClass", "targetClass", "isVarArgs", "returnType", "parameters", "paramTags", "returnTag", "throwsTags"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"signature" : "uncheckedCast(java.lang.Object o,org.jgrapht.util.TypeUtil typeDecl)", "name" : "uncheckedCast", "containingClass" : {"qualifiedName" : "org.jgrapht.util.TypeUtil", "name" : "TypeUtil", "isArray" : false}, "targetClass" : "org.jgrapht.util.TypeUtil", "isVarArgs" : false, "returnType" : {"qualifiedName" : "T", "name" : "T", "isArray" : false}, "parameters" : [{"type" : {"qualifiedName" : "java.lang.Object", "name" : "Object", "isArray" : false}, "name" : "o"}, {"type" : {"qualifiedName" : "org.jgrapht.util.TypeUtil", "name" : "TypeUtil", "isArray" : false}, "name" : "typeDecl"}], "paramTags" : [{"parameter" : {"type" : {"qualifiedName" : "java.lang.Object", "name" : "Object", "isArray" : false}, "name" : "o"}, "comment" : "object to be cast", "kind" : "PARAM", "condition" : ""}, {"parameter" : {"type" : {"qualifiedName" : "org.jgrapht.util.TypeUtil", "name" : "TypeUtil", "isArray" : false}, "name" : "typeDecl"}, "comment" : "conveys the target type information; the actual value is unused and can be null since this is all just stupid compiler tricks", "kind" : "PARAM", "condition" : ""}], "returnTag" : {"comment" : "the result of the cast", "kind" : "RETURN", "condition" : "true ? result.equals(args[0])"}, "throwsTags" : []}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"signature": {"type": "string"}, "name": {"type": "string"}, "containingClass": {"type": "object", "properties": {"qualifiedName": {"type": "string"}, "name": {"type": "string"}, "isArray": {"type": "boolean"}}, "required": ["qualifiedName", "name", "isArray"]}, "targetClass": {"type": "string"}, "isVarArgs": {"type": "boolean"}, "returnType": {"type": "object", "properties": {"qualifiedName": {"type": "string"}, "name": {"type": "string"}, "isArray": {"type": "boolean"}}, "required": ["qualifiedName", "name", "isArray"]}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "object", "properties": {"qualifiedName": {"type": "string"}, "name": {"type": "string"}, "isArray": {"type": "boolean"}}, "required": ["qualifiedName", "name", "isArray"]}, "name": {"type": "string"}}, "required": ["type", "name"]}}, "paramTags": {"type": "array", "items": {"type": "object", "properties": {"parameter": {"type": "object", "properties": {"type": {"type": "object", "properties": {"qualifiedName": {"type": "string"}, "name": {"type": "string"}, "isArray": {"type": "boolean"}}, "required": ["qualifiedName", "name", "isArray"]}, "name": {"type": "string"}}, "required": ["type", "name"]}, "comment": {"type": "string"}, "kind": {"type": "string"}, "condition": {"type": "string"}}, "required": ["parameter", "comment", "kind", "condition"]}}, "returnTag": {"type": "object", "properties": {"comment": {"type": "string"}, "kind": {"type": "string"}, "condition": {"type": "string"}}, "required": ["comment", "kind", "condition"]}, "throwsTags": {"type": "array", "items": {}}}, "required": ["signature", "name", "containingClass", "targetClass", "isVarArgs", "returnType", "parameters", "paramTags", "returnTag", "throwsTags"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "lab02-lab02-1312098-1312311", "private" : true, "dependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ARCHS": {"type": "string"}, "CODE_SIGN_IDENTITY": {"type": "string"}, "COMBINE_HIDPI_IMAGES": {"type": "string"}, "DEBUG_INFORMATION_FORMAT": {"type": "string"}, "GCC_INLINES_ARE_PRIVATE_EXTERN": {"type": "string"}, "GCC_SYMBOLS_PRIVATE_EXTERN": {"type": "string"}, "ONLY_ACTIVE_ARCH": {"type": "string"}, "SDKROOT": {"type": "string"}, "SUPPORTED_PLATFORMS": {"type": "string"}, "TARGETED_DEVICE_FAMILY": {"type": "string"}, "USE_HEADERMAP": {"type": "string"}, "VALID_ARCHS": {"type": "array", "items": {"type": "string"}}}, "required": ["ARCHS", "CODE_SIGN_IDENTITY", "COMBINE_HIDPI_IMAGES", "DEBUG_INFORMATION_FORMAT", "GCC_INLINES_ARE_PRIVATE_EXTERN", "GCC_SYMBOLS_PRIVATE_EXTERN", "ONLY_ACTIVE_ARCH", "SDKROOT", "SUPPORTED_PLATFORMS", "TARGETED_DEVICE_FAMILY", "USE_HEADERMAP", "VALID_ARCHS"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ARCHS" : "arm64", "CODE_SIGN_IDENTITY" : "iPhone Developer", "COMBINE_HIDPI_IMAGES" : "Yes", "DEBUG_INFORMATION_FORMAT" : "dwarf", "GCC_INLINES_ARE_PRIVATE_EXTERN" : "No", "GCC_SYMBOLS_PRIVATE_EXTERN" : "No", "ONLY_ACTIVE_ARCH" : "No", "SDKROOT" : "appletvos9.2", "SUPPORTED_PLATFORMS" : "appletvos", "TARGETED_DEVICE_FAMILY" : "3", "USE_HEADERMAP" : "No", "VALID_ARCHS" : ["arm64"]} | json_instruct | {"type": "object", "properties": {"ARCHS": {"type": "string"}, "CODE_SIGN_IDENTITY": {"type": "string"}, "COMBINE_HIDPI_IMAGES": {"type": "string"}, "DEBUG_INFORMATION_FORMAT": {"type": "string"}, "GCC_INLINES_ARE_PRIVATE_EXTERN": {"type": "string"}, "GCC_SYMBOLS_PRIVATE_EXTERN": {"type": "string"}, "ONLY_ACTIVE_ARCH": {"type": "string"}, "SDKROOT": {"type": "string"}, "SUPPORTED_PLATFORMS": {"type": "string"}, "TARGETED_DEVICE_FAMILY": {"type": "string"}, "USE_HEADERMAP": {"type": "string"}, "VALID_ARCHS": {"type": "array", "items": {"type": "string"}}}, "required": ["ARCHS", "CODE_SIGN_IDENTITY", "COMBINE_HIDPI_IMAGES", "DEBUG_INFORMATION_FORMAT", "GCC_INLINES_ARE_PRIVATE_EXTERN", "GCC_SYMBOLS_PRIVATE_EXTERN", "ONLY_ACTIVE_ARCH", "SDKROOT", "SUPPORTED_PLATFORMS", "TARGETED_DEVICE_FAMILY", "USE_HEADERMAP", "VALID_ARCHS"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"_id": {"type": "string"}, "_isa": {"type": "string"}}, "required": ["_id", "_isa"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "unsure", "_isa" : "option:unsure"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "_isa": {"type": "string"}}, "required": ["_id", "_isa"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"dotnet-test-explorer.testArguments": {"type": "string"}, "coverage-gutters.showLineCoverage": {"type": "boolean"}, "coverage-gutters.lcovname": {"type": "string"}}, "required": ["dotnet-test-explorer.testArguments", "coverage-gutters.showLineCoverage", "coverage-gutters.lcovname"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dotnet-test-explorer.testArguments" : "/p:CollectCoverage=true /p:CoverletOutputFormat=lcov", "coverage-gutters.showLineCoverage" : true, "coverage-gutters.lcovname" : "coverage.info"} | json_instruct | {"type": "object", "properties": {"dotnet-test-explorer.testArguments": {"type": "string"}, "coverage-gutters.showLineCoverage": {"type": "boolean"}, "coverage-gutters.lcovname": {"type": "string"}}, "required": ["dotnet-test-explorer.testArguments", "coverage-gutters.showLineCoverage", "coverage-gutters.lcovname"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"extensions": {"type": "object", "properties": {"python.details": {"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}, "role": {"type": "string"}}, "required": ["email", "name", "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"]}, "extras": {"type": "array", "items": {}}, "generator": {"type": "string"}, "license": {"type": "string"}, "metadata_version": {"type": "string"}, "name": {"type": "string"}, "run_requires": {"type": "array", "items": {"type": "object", "properties": {"requires": {"type": "array", "items": {"type": "string"}}}, "required": ["requires"]}}, "summary": {"type": "string"}, "version": {"type": "string"}}, "required": ["extensions", "extras", "generator", "license", "metadata_version", "name", "run_requires", "summary", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extensions" : {"python.details" : {"contacts" : [{"email" : "[email protected]", "name" : "Andrew Porter", "role" : "author"}], "document_names" : {"description" : "DESCRIPTION.rst"}, "project_urls" : {"Home" : "https://github.com/AndrewRPorter/pyqt-finance"}}}, "extras" : [], "generator" : "bdist_wheel (0.29.0)", "license" : "MIT License", "metadata_version" : "2.0", "name" : "pyqt-finance", "run_requires" : [{"requires" : ["matplotlib", "pandas", "requests", "setuptools", "yahoo-historical"]}], "summary" : "Custom QWidget for display historical stock data", "version" : "0.0.1"} | json_instruct | {"type": "object", "properties": {"extensions": {"type": "object", "properties": {"python.details": {"type": "object", "properties": {"contacts": {"type": "array", "items": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}, "role": {"type": "string"}}, "required": ["email", "name", "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"]}, "extras": {"type": "array", "items": {}}, "generator": {"type": "string"}, "license": {"type": "string"}, "metadata_version": {"type": "string"}, "name": {"type": "string"}, "run_requires": {"type": "array", "items": {"type": "object", "properties": {"requires": {"type": "array", "items": {"type": "string"}}}, "required": ["requires"]}}, "summary": {"type": "string"}, "version": {"type": "string"}}, "required": ["extensions", "extras", "generator", "license", "metadata_version", "name", "run_requires", "summary", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "predeploy": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["dev", "build", "predeploy", "deploy"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gh-pages": {"type": "string"}, "live-server": {"type": "string"}}, "required": ["gh-pages", "live-server"]}}, "required": ["name", "version", "description", "main", "homepage", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "rush", "version" : "1.0.0", "description" : "Rush Hour simulation", "main" : "app.js", "homepage" : "schlegelflegel.github.io/rush", "scripts" : {"dev" : "live-server .", "build" : "mkdir -p ./dist && cp *.js *.html *.css ./dist", "predeploy" : "npm run build", "deploy" : "gh-pages -d ./dist"}, "keywords" : [], "author" : "", "license" : "ISC", "devDependencies" : {"gh-pages" : "^3.2.3", "live-server" : "^1.2.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "predeploy": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["dev", "build", "predeploy", "deploy"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"gh-pages": {"type": "string"}, "live-server": {"type": "string"}}, "required": ["gh-pages", "live-server"]}}, "required": ["name", "version", "description", "main", "homepage", "scripts", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "build-babel": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["clean", "build-babel", "dev", "build", "start"]}, "dependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/plugin-transform-runtime": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/runtime": {"type": "string"}, "compression": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "helmet": {"type": "string"}, "hpp": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["@babel/cli", "@babel/plugin-transform-runtime", "@babel/preset-env", "@babel/runtime", "compression", "cors", "express", "helmet", "hpp", "nodemon"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/node": {"type": "string"}, "babel-eslint": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-loader": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "prettier": {"type": "string"}, "pretty-quick": {"type": "string"}}, "required": ["@babel/core", "@babel/node", "babel-eslint", "eslint", "eslint-config-airbnb", "eslint-config-prettier", "eslint-loader", "eslint-plugin-import", "eslint-plugin-prettier", "prettier", "pretty-quick"]}}, "required": ["name", "version", "main", "license", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "nodest-scaffolding", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "scripts" : {"clean" : "rm -rf build && mkdir build", "build-babel" : "babel -d ./build ./src -s", "dev" : "nodemon --exec babel-node src/server.js", "build" : "yarn clean && yarn build-babel", "start" : "yarn build && node ./build/server.js"}, "dependencies" : {"@babel/cli" : "^7.8.4", "@babel/plugin-transform-runtime" : "^7.8.3", "@babel/preset-env" : "^7.8.7", "@babel/runtime" : "^7.8.7", "compression" : "^1.7.4", "cors" : "^2.8.5", "express" : "^4.17.1", "helmet" : "^3.21.3", "hpp" : "^0.2.3", "nodemon" : "^2.0.2"}, "devDependencies" : {"@babel/core" : "^7.8.7", "@babel/node" : "^7.8.7", "babel-eslint" : "^10.1.0", "eslint" : "^6.8.0", "eslint-config-airbnb" : "^18.0.1", "eslint-config-prettier" : "^6.10.0", "eslint-loader" : "^3.0.3", "eslint-plugin-import" : "^2.20.1", "eslint-plugin-prettier" : "^3.1.2", "prettier" : "^1.19.1", "pretty-quick" : "^2.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "build-babel": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}}, "required": ["clean", "build-babel", "dev", "build", "start"]}, "dependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/plugin-transform-runtime": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/runtime": {"type": "string"}, "compression": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "helmet": {"type": "string"}, "hpp": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["@babel/cli", "@babel/plugin-transform-runtime", "@babel/preset-env", "@babel/runtime", "compression", "cors", "express", "helmet", "hpp", "nodemon"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/node": {"type": "string"}, "babel-eslint": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-loader": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "prettier": {"type": "string"}, "pretty-quick": {"type": "string"}}, "required": ["@babel/core", "@babel/node", "babel-eslint", "eslint", "eslint-config-airbnb", "eslint-config-prettier", "eslint-loader", "eslint-plugin-import", "eslint-plugin-prettier", "prettier", "pretty-quick"]}}, "required": ["name", "version", "main", "license", "scripts", "dependencies", "devDependencies"], "$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.