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": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"appid" : 24670, "name" : "Trainz Simulator 12", "windows" : true, "mac" : false, "linux" : false, "early_access" : false, "lookup_time" : 1490964678}
json_instruct
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"classifiers": {"type": "array", "items": {"type": "string"}}, "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"]}, "generator": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "metadata_version": {"type": "string"}, "name": {"type": "string"}, "platform": {"type": "string"}, "summary": {"type": "string"}, "version": {"type": "string"}}, "required": ["classifiers", "extensions", "generator", "keywords", "license", "metadata_version", "name", "platform", "summary", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"classifiers" : ["Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Multimedia :: Graphics :: Graphics Conversion", "Topic :: Software Development :: Libraries", "Topic :: Text Processing", "Topic :: Printing", "Topic :: Utilities"], "extensions" : {"python.details" : {"contacts" : [{"email" : "pmaupin@gmail.com", "name" : "Patrick Maupin", "role" : "author"}], "document_names" : {"description" : "DESCRIPTION.rst"}, "project_urls" : {"Home" : "https://github.com/pmaupin/pdfrw"}}}, "generator" : "bdist_wheel (0.29.0)", "keywords" : ["pdf", "vector", "graphics", "PDF", "nup", "watermark", "split", "join", "merge"], "license" : "MIT", "metadata_version" : "2.0", "name" : "pdfrw", "platform" : "Independent", "summary" : "PDF file reader/writer library", "version" : "0.4"}
json_instruct
{"type": "object", "properties": {"classifiers": {"type": "array", "items": {"type": "string"}}, "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"]}, "generator": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "metadata_version": {"type": "string"}, "name": {"type": "string"}, "platform": {"type": "string"}, "summary": {"type": "string"}, "version": {"type": "string"}}, "required": ["classifiers", "extensions", "generator", "keywords", "license", "metadata_version", "name", "platform", "summary", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"artist_id" : "ARCBX6B1187FB5AB20", "artist_latitude" : 40.65507, "artist_location" : "Brooklyn, NY", "artist_longitude" : -73.94888, "artist_name" : "The Paragons", "duration" : 145.24036, "num_songs" : 1, "song_id" : "SOCDPCZ12AC9618566", "title" : "Two Hearts Are Better Than One", "year" : 0}
json_instruct
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "serviceworker": {"type": "object", "properties": {"src": {"type": "string"}, "use_cache": {"type": "boolean"}, "scope": {"type": "string"}}, "required": ["src", "use_cache", "scope"]}, "payment": {"type": "object", "properties": {"supported_delegations": {"type": "array", "items": {"type": "string"}}}, "required": ["supported_delegations"]}}, "required": ["name", "short_name", "icons", "serviceworker", "payment"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Pay with KylePay", "short_name" : "KylePay", "icons" : [{"src" : "icon.png", "sizes" : "48x48", "type" : "image/png"}], "serviceworker" : {"src" : "app.js", "use_cache" : false, "scope" : "/webpay"}, "payment" : {"supported_delegations" : ["shippingAddress", "payerName", "payerEmail", "payerPhone"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "serviceworker": {"type": "object", "properties": {"src": {"type": "string"}, "use_cache": {"type": "boolean"}, "scope": {"type": "string"}}, "required": ["src", "use_cache", "scope"]}, "payment": {"type": "object", "properties": {"supported_delegations": {"type": "array", "items": {"type": "string"}}}, "required": ["supported_delegations"]}}, "required": ["name", "short_name", "icons", "serviceworker", "payment"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 6108090, "parent" : 6108, "name" : "EMBALOH HILIR", "latitude" : "0.94723984750004", "longitude" : "112.6362914765", "postal" : [78754], "children" : [6108090001, 6108090002, 6108090006, 6108090007, 6108090008, 6108090009, 6108090010, 6108090011, 6108090012]}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "Greg, Carsten - thanks for your help. I really appreciate it. I just\nwanted to make sure I was understanding things correctly, so forgive\nthese two questions:\n\n\nAs I understand it now, there are three ways to wind up with illum\nsources in your .oct file:\n1. Use the illum material type. Run 'oconv' as normal.\n2. Use rad and place all of the 'illums' (using whatever secondary\nmaterial) into a separate file. This runs mkillum automatically.\n3. Use mkillum manually. (This is the same as 2 above?)\nAs I type this out it makes perfect sense. Perhaps I have a tendency to\noverthink things. \n\n\nOne thing I noticed is that the window_dist type is replaced with a\nsimple glass type. Is this because the reflectance/appearance of the\nskylight doesn't matter due to it being mostly hidden? Is it correct to\nassume that if I had a sidelight window in my final scene, I would\ninclude the \"skyfunc brightfunc window_dist 2 winxmit winxmit.cal 0 0\"\nbit to make the window appear as a real window?\n\n\nCheers,\n\n\nMark Shewfelt\nEnermodal Engineering Ltd.\nKitchener Ontario Canada\n\n\n\n\n\n\n\n\n-----Original Message-----\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2006-December/004130.html).</sup>", "attachments" : [], "created_by_name" : "Mark Shewfelt", "created_at" : "December 08, 2006 at 05:24PM", "created_by" : "Mark_Shewfelt", "parent_id" : "radiance-general_004126", "id" : "radiance-general_004130"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"fail-fast": {"type": "boolean"}, "rules": {"type": "object", "properties": {"drop-not-null-require-column-data-type": {"type": "boolean"}}, "required": ["drop-not-null-require-column-data-type"]}}, "required": ["fail-fast", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"fail-fast" : true, "rules" : {"drop-not-null-require-column-data-type" : true}}
json_instruct
{"type": "object", "properties": {"fail-fast": {"type": "boolean"}, "rules": {"type": "object", "properties": {"drop-not-null-require-column-data-type": {"type": "boolean"}}, "required": ["drop-not-null-require-column-data-type"]}}, "required": ["fail-fast", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "link": {"type": "string"}}, "required": ["name", "link"]}}}, "required": ["classes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"classes" : [{"name" : "Dial", "link" : "/reference/standard-nodes/ui/dial"}]}
json_instruct
{"type": "object", "properties": {"classes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "link": {"type": "string"}}, "required": ["name", "link"]}}}, "required": ["classes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"react-virtualized.js": {"type": "string"}, "react-virtualized.min.js": {"type": "string"}}, "required": ["react-virtualized.js", "react-virtualized.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"react-virtualized.js" : "sha256-I15hhzE7gpKFCQH72w3zxYm0fAm6bXHDQeKnqnk1zbM=", "react-virtualized.min.js" : "sha256-9X+rOWfsOxIAu0W+LohvU3SQrbn9d9kcz3Uxzo1IEV0="}
json_instruct
{"type": "object", "properties": {"react-virtualized.js": {"type": "string"}, "react-virtualized.min.js": {"type": "string"}}, "required": ["react-virtualized.js", "react-virtualized.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"ObjectID": {"type": "object", "properties": {"$oid": {"type": "string"}}, "required": ["$oid"]}, "customerID": {"type": "string"}, "FirstName": {"type": "string"}, "LastName": {"type": "string"}, "Email": {"type": "string"}, "Postal": {"type": "string"}, "Phone": {"type": "string"}, "Updated": {"type": "string"}}, "required": ["ObjectID", "customerID", "FirstName", "LastName", "Email", "Postal", "Phone", "Updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ObjectID" : {"$oid" : "5cc0db8a1b98a3264d574b81"}, "customerID" : "e0533352-1010-4508-ab55-5d30f4fc95eb", "FirstName" : "Pam", "LastName" : "Weber", "Email" : "pamweber@emoltra.com", "Postal" : "28189-6501", "Phone" : "(850) 503-3790", "Updated" : "2016-08-04T05:25:27 +07:00"}
json_instruct
{"type": "object", "properties": {"ObjectID": {"type": "object", "properties": {"$oid": {"type": "string"}}, "required": ["$oid"]}, "customerID": {"type": "string"}, "FirstName": {"type": "string"}, "LastName": {"type": "string"}, "Email": {"type": "string"}, "Postal": {"type": "string"}, "Phone": {"type": "string"}, "Updated": {"type": "string"}}, "required": ["ObjectID", "customerID", "FirstName", "LastName", "Email", "Postal", "Phone", "Updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "article": {"type": "string"}, "questions": {"type": "string"}, "options": {"type": "object", "properties": {"model": {"type": "array", "items": {"type": "string"}}, "human": {"type": "array", "items": {"type": "string"}}}, "required": ["model", "human"]}, "answer": {"type": "object", "properties": {"model": {"type": "integer"}, "human": {"type": "integer"}}, "required": ["model", "human"]}}, "required": ["id", "article", "questions", "options", "answer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "4395", "article" : "Franklin ' s ships had everything they needed . They had enough food in tins for three years and thousands of litres of lemon juice to stop disease . They also had two libraries with 3 , 000 books , excellent maps , scientific instruments , musical instruments and a new invention : a camera . Franklin and his men left Engand on May 19th , 1845 and they sailed without problems across the Atlantic towards Canada . When Franklin arrived at Baffin Bay in July 1845 , things were going very well for the expedition . On July 26th , some sailors saw Franklin ' s ships when they were entering the bay . That was the last time that anyone saw Franklin and his men alive . The British government became very worried when they heard nothing from Framklin . They sent expeditions to 1ook for him , but the expeditions all returned without any news . The government offered PS20 , 000 to anybody who could help Franklin or anybody who had information about Frailklin . Nobody came with information . Then , in August 1850 some sailors found the first signs of the Franklin Expedition while they were searching on Devon Island : some old food tins , some papers , and , something very strange , the graves of three men . The men all died in January 1846 while Franklin was waiting in Baffin Bay for the ice to melt . But why did they die ? The three men were all young and three deaths in the first months of the expedition were very strange . What happened to them ? And where were the ships and all the other sailors ? The mystery of the Franklin Expedition was growing stronger . . .", "questions" : "The best title of the passage is", "options" : {"model" : ["the history of the franklin triangle", "the mystery of the franklin expedition"], "human" : ["Franklin ' s Ships", "The Mystery of the Franklin Expedition"]}, "answer" : {"model" : 1, "human" : 1}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "article": {"type": "string"}, "questions": {"type": "string"}, "options": {"type": "object", "properties": {"model": {"type": "array", "items": {"type": "string"}}, "human": {"type": "array", "items": {"type": "string"}}}, "required": ["model", "human"]}, "answer": {"type": "object", "properties": {"model": {"type": "integer"}, "human": {"type": "integer"}}, "required": ["model", "human"]}}, "required": ["id", "article", "questions", "options", "answer"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"cookieConsent::texts.message": {"type": "string"}, "cookieConsent::texts.agree": {"type": "string"}}, "required": ["cookieConsent::texts.message", "cookieConsent::texts.agree"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cookieConsent::texts.message" : "Informuojame, kad \u0161ioje svetain\u0117je naudojami slapukai. Sutikdami, paspauskite mygtuk\u0105 \u201eSutinku\u201c arba nar\u0161ykite toliau.", "cookieConsent::texts.agree" : "Sutinku"}
json_instruct
{"type": "object", "properties": {"cookieConsent::texts.message": {"type": "string"}, "cookieConsent::texts.agree": {"type": "string"}}, "required": ["cookieConsent::texts.message", "cookieConsent::texts.agree"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"predicate": {"type": "string"}, "value": {"type": "array", "items": {"type": "integer"}}}, "required": ["predicate", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"predicate" : "within", "value" : [1]}
json_instruct
{"type": "object", "properties": {"predicate": {"type": "string"}, "value": {"type": "array", "items": {"type": "integer"}}}, "required": ["predicate", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-86.600818, 34.743389], [-86.599322, 34.748599], [-86.589463, 34.762066], [-86.577317, 34.761756], [-86.573659, 34.760919], [-86.583993, 34.741072], [-86.585702, 34.739001], [-86.597668, 34.740931], [-86.600244, 34.740236], [-86.600818, 34.743389]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 690}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"default_graph_file0": {"type": "string"}, "default_graph_file": {"type": "string"}, "default_graph_file2": {"type": "string"}, "default_graph_file3": {"type": "string"}, "default_graph_file4": {"type": "string"}, "render": {"type": "object", "properties": {"font": {"type": "string"}, "font_height_px": {"type": "integer"}, "v_margin": {"type": "integer"}, "h_margin": {"type": "integer"}}, "required": ["font", "font_height_px", "v_margin", "h_margin"]}, "io": {"type": "object", "properties": {"name_over_label": {"type": "boolean"}}, "required": ["name_over_label"]}, "github": {"type": "object", "properties": {"image": {"type": "string"}, "link": {"type": "string"}}, "required": ["image", "link"]}, "mqtt": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "integer"}, "client": {"type": "string"}, "subscribe": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["host", "port", "client", "subscribe", "enabled"]}}, "required": ["default_graph_file0", "default_graph_file", "default_graph_file2", "default_graph_file3", "default_graph_file4", "render", "io", "github", "mqtt"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"default_graph_file0" : "./data/GraphSON_blueprints.json", "default_graph_file" : "./data/GraphSON_Tinker.json", "default_graph_file2" : "./data/LesMiserables.graphml", "default_graph_file3" : "./data/hello_world.gv", "default_graph_file4" : "./data/smart_home.json", "render" : {"font" : "Verdana", "font_height_px" : 16, "v_margin" : 5, "h_margin" : 10}, "io" : {"name_over_label" : false}, "github" : {"image" : "./media/github.png", "link" : "https://github.com/NetworkGraphs/graphysics"}, "mqtt" : {"host" : "10.0.0.42", "port" : 1884, "client" : "graphysics", "subscribe" : "graph/#", "enabled" : true}}
json_instruct
{"type": "object", "properties": {"default_graph_file0": {"type": "string"}, "default_graph_file": {"type": "string"}, "default_graph_file2": {"type": "string"}, "default_graph_file3": {"type": "string"}, "default_graph_file4": {"type": "string"}, "render": {"type": "object", "properties": {"font": {"type": "string"}, "font_height_px": {"type": "integer"}, "v_margin": {"type": "integer"}, "h_margin": {"type": "integer"}}, "required": ["font", "font_height_px", "v_margin", "h_margin"]}, "io": {"type": "object", "properties": {"name_over_label": {"type": "boolean"}}, "required": ["name_over_label"]}, "github": {"type": "object", "properties": {"image": {"type": "string"}, "link": {"type": "string"}}, "required": ["image", "link"]}, "mqtt": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "integer"}, "client": {"type": "string"}, "subscribe": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["host", "port", "client", "subscribe", "enabled"]}}, "required": ["default_graph_file0", "default_graph_file", "default_graph_file2", "default_graph_file3", "default_graph_file4", "render", "io", "github", "mqtt"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/active/weapons/whip/ropewhip.activeitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/active/weapons/whip/ropewhip.activeitem"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}, "Rus": {"type": "string"}}, "required": ["Eng", "Rus"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"DeniedAlternatives" : [], "Files" : {"items/active/weapons/whip/ropewhip.activeitem" : ["/description"]}, "Texts" : {"Eng" : "A rope fashioned into a whip. Get cracking!", "Rus" : "\u041a\u043d\u0443\u0442, \u0441\u043f\u043b\u0435\u0442\u0451\u043d\u043d\u044b\u0439 \u0438\u0437 \u0432\u0435\u0440\u0451\u0432\u043a\u0438. \u0425\u043b\u043e\u043f\u043d\u0438!"}}, {"DeniedAlternatives" : [], "Files" : {"items/active/weapons/whip/ropewhip.activeitem" : ["/shortdescription"]}, "Texts" : {"Eng" : "Rope Whip", "Rus" : "\u0412\u0435\u0440\u0451\u0432\u043e\u0447\u043d\u044b\u0439 \u043a\u043d\u0443\u0442"}}, {"DeniedAlternatives" : [], "Files" : {"items/active/weapons/whip/ropewhip.activeitem" : ["/upgradeParameters/shortdescription"]}, "Texts" : {"Eng" : "Rope Whip ^yellow;\ue024^reset;", "Rus" : "\u0412\u0435\u0440\u0451\u0432\u043e\u0447\u043d\u044b\u0439 \u043a\u043d\u0443\u0442 ^yellow;\ue024^reset;"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/active/weapons/whip/ropewhip.activeitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/active/weapons/whip/ropewhip.activeitem"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}, "Rus": {"type": "string"}}, "required": ["Eng", "Rus"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "angular": {"type": "string"}, "font-awesome": {"type": "string"}, "angular-ui-router": {"type": "string"}, "angular-bootstrap": {"type": "string"}, "angular-messages": {"type": "string"}}, "required": ["bootstrap", "angular", "font-awesome", "angular-ui-router", "angular-bootstrap", "angular-messages"]}}, "required": ["name", "homepage", "description", "main", "authors", "license", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "csr-ticketing-system", "homepage" : "https://github.com/riyasspalackal/csr-ticketing-system", "description" : "A ticketing system for customer service representative.", "main" : "", "authors" : ["riyasspalackal@gmial.com"], "license" : "MIT", "private" : true, "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"bootstrap" : "^3.3.7", "angular" : "^1.6.4", "font-awesome" : "^4.7.0", "angular-ui-router" : "^1.0.3", "angular-bootstrap" : "^2.5.0", "angular-messages" : "^1.6.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "angular": {"type": "string"}, "font-awesome": {"type": "string"}, "angular-ui-router": {"type": "string"}, "angular-bootstrap": {"type": "string"}, "angular-messages": {"type": "string"}}, "required": ["bootstrap", "angular", "font-awesome", "angular-ui-router", "angular-bootstrap", "angular-messages"]}}, "required": ["name", "homepage", "description", "main", "authors", "license", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01016899": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01016899"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Topology", "objects" : {"E01016899" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00085296", "LAD11CD" : "E06000043"}, "arcs" : [[0, 1]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00085325", "LAD11CD" : "E06000043"}, "arcs" : [[-1, 2, 3, 4]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00172917", "LAD11CD" : "E06000043"}, "arcs" : [[-4, 5]]}]}}, "arcs" : [[[3501, 1823], [83, -159], [-334, -171], [67, -191], [-114, -174], [-225, -62]], [[2978, 1066], [-153, 206], [175, 104], [-106, 66], [25, 186], [19, 197], [-422, 46], [-378, 288], [266, 192], [132, 350], [143, 150], [382, -876], [440, -152]], [[3501, 1823], [148, 106], [134, -113]], [[3783, 1816], [273, -149], [253, -678], [-684, -53], [-190, -276]], [[3435, 660], [-194, 25], [19, 186], [-292, 41], [10, 154]], [[3783, 1816], [-68, 214], [-57, 337], [523, 197], [-504, 1149], [-1083, 1178], [-366, 244], [-504, 100], [-446, 511], [-877, 260], [-136, 100], [-230, 924], [-35, 896], [1283, 315], [1062, -508], [1731, -384], [382, 204], [-260, 866], [1746, 916], [-138, 453], [257, 211], [730, -666], [118, 115], [2534, -1732], [-315, -968], [392, -988], [477, -725], [-341, -251], [230, -1775], [-1655, -365], [-509, -231], [-1324, -812], [-263, -713], [-625, -499], [-1131, -128], [-697, -261], [-323, 477], [74, 183]]], "transform" : {"scale" : [3.7228056523505348e-06, 2.114080870708025e-06], "translate" : [-0.120117520536418, 50.856812234936704]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01016899": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01016899"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"value" : 3}
json_instruct
{"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "alias": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "active": {"type": "integer"}, "order": {"type": "integer"}, "providers": {"type": "array", "items": {"type": "string"}}, "aliases": {"type": "object", "properties": {}, "required": []}, "files": {"type": "array", "items": {}}}, "required": ["name", "alias", "description", "version", "keywords", "active", "order", "providers", "aliases", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Rubros", "alias" : "rubros", "description" : "", "version" : "v0.1", "keywords" : [], "active" : 1, "order" : 1, "providers" : ["Modules\\Rubros\\Providers\\RubrosServiceProvider", "Modules\\Rubros\\Providers\\RouteServiceProvider"], "aliases" : {}, "files" : []}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alias": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "active": {"type": "integer"}, "order": {"type": "integer"}, "providers": {"type": "array", "items": {"type": "string"}}, "aliases": {"type": "object", "properties": {}, "required": []}, "files": {"type": "array", "items": {}}}, "required": ["name", "alias", "description", "version", "keywords", "active", "order", "providers", "aliases", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"label" : "Person", "normalizedVertices" : [{"x" : 0.7378824, "y" : 0.3922353}, {"x" : 0.95176464, "y" : 0.3922353}, {"x" : 0.95176464, "y" : 0.6512942}, {"x" : 0.7378824, "y" : 0.6512942}], "score" : 0.6887236}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"divisionCode": {"type": "integer"}, "post": {"type": "string"}, "divisionName": {"type": "string"}, "isLeaf": {"type": "integer"}}, "required": ["divisionCode", "post", "divisionName", "isLeaf"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"divisionCode" : 131128100, "post" : "053700", "divisionName" : "\u961c\u57ce\u9547", "isLeaf" : 1}, {"divisionCode" : 131128101, "post" : "053700", "divisionName" : "\u53e4\u57ce\u9547", "isLeaf" : 1}, {"divisionCode" : 131128102, "post" : "053700", "divisionName" : "\u7801\u5934\u9547", "isLeaf" : 1}, {"divisionCode" : 131128103, "post" : "053700", "divisionName" : "\u971e\u53e3\u9547", "isLeaf" : 1}, {"divisionCode" : 131128104, "post" : "053700", "divisionName" : "\u5d14\u5bb6\u5e99\u9547", "isLeaf" : 1}, {"divisionCode" : 131128200, "post" : "053700", "divisionName" : "\u6f2b\u6cb3\u4e61", "isLeaf" : 1}, {"divisionCode" : 131128201, "post" : "053700", "divisionName" : "\u5efa\u6865\u4e61", "isLeaf" : 1}, {"divisionCode" : 131128202, "post" : "053700", "divisionName" : "\u848b\u574a\u4e61", "isLeaf" : 1}, {"divisionCode" : 131128203, "post" : "053700", "divisionName" : "\u5927\u767d\u4e61", "isLeaf" : 1}, {"divisionCode" : 131128204, "post" : "053700", "divisionName" : "\u738b\u96c6\u4e61", "isLeaf" : 1}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"divisionCode": {"type": "integer"}, "post": {"type": "string"}, "divisionName": {"type": "string"}, "isLeaf": {"type": "integer"}}, "required": ["divisionCode", "post", "divisionName", "isLeaf"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\uc774\ub984" : "\ucd5c\ud0dc\uaddc", "\ud55c\ubb38\uba85" : "\u5d14\u6cf0\u594e", "\uc0dd\ub144\uc6d4\uc77c" : "1920-03-20", "\uc815\ub2f9" : "\ubb34\uc18c\uc18d", "\uc120\uac70\uad6c" : "\uac15\uc6d0 \uc815\uc120", "\ub2f9\uc120\ud69f\uc218" : "\ucd08\uc120", "\ub2f9\uc120\ub300\uc218" : "\ud5cc"}
json_instruct
{"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type": "string"}}, "required": ["\uc774\ub984", "\ud55c\ubb38\uba85", "\uc0dd\ub144\uc6d4\uc77c", "\uc815\ub2f9", "\uc120\uac70\uad6c", "\ub2f9\uc120\ud69f\uc218", "\ub2f9\uc120\ub300\uc218"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.f83ce6f2.chunk.js": {"type": "string"}, "static/js/2.f83ce6f2.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.f6bae8ff0215406fcf155c8df9312f6a.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/js/2.f83ce6f2.chunk.js.LICENSE.txt": {"type": "string"}}, "required": ["main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.f83ce6f2.chunk.js", "static/js/2.f83ce6f2.chunk.js.map", "index.html", "precache-manifest.f6bae8ff0215406fcf155c8df9312f6a.js", "service-worker.js", "static/js/2.f83ce6f2.chunk.js.LICENSE.txt"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files" : {"main.js" : "/js/snapshot/static/js/main.eda1b487.chunk.js", "main.js.map" : "/js/snapshot/static/js/main.eda1b487.chunk.js.map", "runtime-main.js" : "/js/snapshot/static/js/runtime-main.55425ccb.js", "runtime-main.js.map" : "/js/snapshot/static/js/runtime-main.55425ccb.js.map", "static/js/2.f83ce6f2.chunk.js" : "/js/snapshot/static/js/2.f83ce6f2.chunk.js", "static/js/2.f83ce6f2.chunk.js.map" : "/js/snapshot/static/js/2.f83ce6f2.chunk.js.map", "index.html" : "/js/snapshot/index.html", "precache-manifest.f6bae8ff0215406fcf155c8df9312f6a.js" : "/js/snapshot/precache-manifest.f6bae8ff0215406fcf155c8df9312f6a.js", "service-worker.js" : "/js/snapshot/service-worker.js", "static/js/2.f83ce6f2.chunk.js.LICENSE.txt" : "/js/snapshot/static/js/2.f83ce6f2.chunk.js.LICENSE.txt"}, "entrypoints" : ["static/js/runtime-main.55425ccb.js", "static/js/2.f83ce6f2.chunk.js", "static/js/main.eda1b487.chunk.js"]}
json_instruct
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.f83ce6f2.chunk.js": {"type": "string"}, "static/js/2.f83ce6f2.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.f6bae8ff0215406fcf155c8df9312f6a.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/js/2.f83ce6f2.chunk.js.LICENSE.txt": {"type": "string"}}, "required": ["main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.f83ce6f2.chunk.js", "static/js/2.f83ce6f2.chunk.js.map", "index.html", "precache-manifest.f6bae8ff0215406fcf155c8df9312f6a.js", "service-worker.js", "static/js/2.f83ce6f2.chunk.js.LICENSE.txt"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"v": {"type": "array", "items": {"type": "string"}}, "l": {"type": "array", "items": {"type": "integer"}}, "c": {"type": "array", "items": {"type": "integer"}}, "m": {"type": "array", "items": {"type": "null"}}}, "required": ["v", "l", "c", "m"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"v" : ["gey"], "l" : [2], "c" : [45], "m" : [null]}
json_instruct
{"type": "object", "properties": {"v": {"type": "array", "items": {"type": "string"}}, "l": {"type": "array", "items": {"type": "integer"}}, "c": {"type": "array", "items": {"type": "integer"}}, "m": {"type": "array", "items": {"type": "null"}}}, "required": ["v", "l", "c", "m"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"adenabled": {"type": "boolean"}, "statusad": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "type", "url"]}, "spacedot": {"type": "string"}, "textad": {"type": "string"}}, "required": ["adenabled", "statusad", "spacedot", "textad"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"adenabled" : true, "statusad" : {"name" : "Im An Good Tamil Music Singer", "type" : "PLAYING", "url" : "https://twitch.tv/#"}, "spacedot" : "\u30fb", "textad" : "> ***[tamilanmessi Development](https://discord.gg/FQGXbypRf8) partnered with:***\n> [**messi-Host.de**](https://messi.tamilanmessi.eu)"}
json_instruct
{"type": "object", "properties": {"adenabled": {"type": "boolean"}, "statusad": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "type", "url"]}, "spacedot": {"type": "string"}, "textad": {"type": "string"}}, "required": ["adenabled", "statusad", "spacedot", "textad"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"top": {"type": "string"}, "front": {"type": "string"}, "side": {"type": "string"}}, "required": ["top", "front", "side"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "minecraft:block/orientable", "textures" : {"top" : "random_content:block/infinite_furnace_top", "front" : "random_content:block/infinite_furnace_front_on", "side" : "random_content:block/infinite_furnace_side"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"top": {"type": "string"}, "front": {"type": "string"}, "side": {"type": "string"}}, "required": ["top", "front", "side"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1502051003", "district_id" : "1502051", "name" : "MUARO PANCO BARAT"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"$schema": {"type": "string"}, "components": {"type": "object", "properties": {"c1": {"type": "object", "properties": {"class": {"type": "string"}}, "required": ["class"]}}, "required": ["c1"]}}, "required": ["$schema", "components"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$schema" : "http://byx2000.gitee.io/byxcontainer/schema/schema.json", "components" : {"c1" : {"class" : "java.lang.String1"}}}
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "components": {"type": "object", "properties": {"c1": {"type": "object", "properties": {"class": {"type": "string"}}, "required": ["class"]}}, "required": ["c1"]}}, "required": ["$schema", "components"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Time" : "2021-05-10T23:00:00Z", "Temp" : 19.8, "RelHum" : 88, "WindSpeed" : 0.4, "WindDir" : 336}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"derivation" : "from G303 (\u1f00\u03bd\u03b1\u03c4\u03af\u03b8\u03b5\u03bc\u03b1\u03b9) and the middle voice of G5087 (\u1f00\u03bd\u03b1\u03c4\u03af\u03b8\u03b5\u03bc\u03b1\u03b9);", "kjv_def" : "communicate, declare", "lemma" : "\u1f00\u03bd\u03b1\u03c4\u03af\u03b8\u03b5\u03bc\u03b1\u03b9", "frequency" : 2, "strongs_def" : " to set forth (for oneself), i.e propound", "outline" : "<ol><li> to set forth (in words), communicate</li></ol>"}
json_instruct
{"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"moduleName": {"type": "null"}, "summaries": {"type": "array", "items": {"type": "object", "properties": {"symbol": {"type": "object", "properties": {"__symbol": {"type": "integer"}, "members": {"type": "array", "items": {}}}, "required": ["__symbol", "members"]}, "metadata": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "string"}}, "value": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "expression": {"type": "object", "properties": {"__symbol": {"type": "integer"}, "members": {"type": "array", "items": {}}}, "required": ["__symbol", "members"]}, "arguments": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "expression": {"type": "object", "properties": {"__symbol": {"type": "integer"}, "members": {"type": "array", "items": {}}}, "required": ["__symbol", "members"]}, "arguments": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "message": {"type": "string"}, "fileName": {"type": "string"}}, "required": ["__symbolic", "message", "fileName"]}}}, "required": ["__symbolic", "expression", "arguments"]}}}, "required": ["__symbolic", "expression", "arguments"]}}, "required": ["__symbolic", "parameters", "value"]}}, "required": ["symbol", "metadata"]}}, "symbols": {"type": "array", "items": {"type": "object", "properties": {"__symbol": {"type": "integer"}, "name": {"type": "string"}, "filePath": {"type": "string"}}, "required": ["__symbol", "name", "filePath"]}}}, "required": ["moduleName", "summaries", "symbols"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"moduleName" : null, "summaries" : [{"symbol" : {"__symbol" : 0, "members" : []}, "metadata" : {"__symbolic" : "function", "parameters" : ["observablesFactory"], "value" : {"__symbolic" : "call", "expression" : {"__symbol" : 1, "members" : []}, "arguments" : [{"__symbolic" : "call", "expression" : {"__symbol" : 2, "members" : []}, "arguments" : [{"__symbolic" : "error", "message" : "Lambda not supported", "fileName" : "modules/effects/src/concat_latest_from.ts"}]}]}}}], "symbols" : [{"__symbol" : 0, "name" : "concatLatestFrom", "filePath" : "./concat_latest_from"}, {"__symbol" : 1, "name" : "pipe", "filePath" : "rxjs"}, {"__symbol" : 2, "name" : "concatMap", "filePath" : "rxjs/operators/index"}]}
json_instruct
{"type": "object", "properties": {"moduleName": {"type": "null"}, "summaries": {"type": "array", "items": {"type": "object", "properties": {"symbol": {"type": "object", "properties": {"__symbol": {"type": "integer"}, "members": {"type": "array", "items": {}}}, "required": ["__symbol", "members"]}, "metadata": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "string"}}, "value": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "expression": {"type": "object", "properties": {"__symbol": {"type": "integer"}, "members": {"type": "array", "items": {}}}, "required": ["__symbol", "members"]}, "arguments": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "expression": {"type": "object", "properties": {"__symbol": {"type": "integer"}, "members": {"type": "array", "items": {}}}, "required": ["__symbol", "members"]}, "arguments": {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "message": {"type": "string"}, "fileName": {"type": "string"}}, "required": ["__symbolic", "message", "fileName"]}}}, "required": ["__symbolic", "expression", "arguments"]}}}, "required": ["__symbolic", "expression", "arguments"]}}, "required": ["__symbolic", "parameters", "value"]}}, "required": ["symbol", "metadata"]}}, "symbols": {"type": "array", "items": {"type": "object", "properties": {"__symbol": {"type": "integer"}, "name": {"type": "string"}, "filePath": {"type": "string"}}, "required": ["__symbol", "name", "filePath"]}}}, "required": ["moduleName", "summaries", "symbols"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "mubble:block/hard_block/smb/snow/night"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"skyblock_id": {"type": "string"}, "quantity": {"type": "string"}, "item_name": {"type": "string"}}, "required": ["skyblock_id", "quantity", "item_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"skyblock_id" : "SNOW_BLOCK", "quantity" : "16", "item_name" : "Snow block"}, {"skyblock_id" : "SNOW_BLOCK", "quantity" : "16", "item_name" : "Snow block"}, {"skyblock_id" : "SNOW_BLOCK", "quantity" : "16", "item_name" : "Snow block"}, {"skyblock_id" : "SNOW_BLOCK", "quantity" : "16", "item_name" : "Snow block"}, {"skyblock_id" : "SNOW_GENERATOR_3", "quantity" : "1", "item_name" : "Snow generator 3"}, {"skyblock_id" : "SNOW_BLOCK", "quantity" : "16", "item_name" : "Snow block"}, {"skyblock_id" : "SNOW_BLOCK", "quantity" : "16", "item_name" : "Snow block"}, {"skyblock_id" : "SNOW_BLOCK", "quantity" : "16", "item_name" : "Snow block"}, {"skyblock_id" : "SNOW_BLOCK", "quantity" : "16", "item_name" : "Snow block"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"skyblock_id": {"type": "string"}, "quantity": {"type": "string"}, "item_name": {"type": "string"}}, "required": ["skyblock_id", "quantity", "item_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"generated_at" : "2017-01-27T09:37:37.141508", "required_by" : ["trac.por", "penelope.trac", "por.trac"], "requires" : [], "package" : "penelope.core"}
json_instruct
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}, "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": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[-2.99247, 56.43762], [-2.99811, 56.43663], [-3.01339, 56.43447], [-3.0158, 56.43475], [-3.02725, 56.43391], [-3.04442, 56.43478], [-3.05268, 56.43307], [-3.06419, 56.42983], [-3.07375, 56.42746], [-3.08109, 56.42185], [-3.06257, 56.4066], [-3.06395, 56.3929], [-3.0562, 56.38777], [-3.05382, 56.38751], [-3.03812, 56.39331], [-3.03527, 56.39988], [-3.03374, 56.40041], [-3.01467, 56.39549], [-3.0069, 56.39155], [-2.9977, 56.39384], [-2.98658, 56.39502], [-2.98423, 56.39347], [-2.98168, 56.38823], [-2.97578, 56.38075], [-2.95273, 56.3867], [-2.95175, 56.38876], [-2.95501, 56.39344], [-2.95361, 56.39826], [-2.94812, 56.40155], [-2.93943, 56.40233], [-2.9379, 56.40206], [-2.92491, 56.40501], [-2.92326, 56.40793], [-2.92362, 56.40921], [-2.93764, 56.41442], [-2.93814, 56.41497], [-2.92395, 56.41875], [-2.91708, 56.41917], [-2.90917, 56.42336], [-2.90157, 56.4197], [-2.88887, 56.41649], [-2.88245, 56.41765], [-2.87344, 56.41411], [-2.85924, 56.40437], [-2.81822, 56.42367], [-2.77357, 56.43727], [-2.77431, 56.43758], [-2.80321, 56.44582], [-2.81037, 56.44699], [-2.82532, 56.45008], [-2.84437, 56.45313], [-2.85352, 56.45397], [-2.86066, 56.4539], [-2.87399, 56.45644], [-2.87961, 56.4586], [-2.89027, 56.45976], [-2.89235, 56.46054], [-2.90131, 56.46057], [-2.91151, 56.45882], [-2.91431, 56.45769], [-2.93139, 56.45712], [-2.93547, 56.45589], [-2.93973, 56.45567], [-2.94903, 56.45238], [-2.95346, 56.45036], [-2.96068, 56.44546], [-2.98235, 56.4398], [-2.99247, 56.43762]]]}, "properties" : {"name" : "DD6"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "geometry", "properties"], "$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"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "serve": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "serve", "build"]}, "keywords": {"type": "array", "items": {}}, "prettier": {"type": "string"}, "babel": {"type": "object", "properties": {"presets": {"type": "array", "items": {"type": "string"}}}, "required": ["presets"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@fortawesome/fontawesome-svg-core": {"type": "string"}, "@fortawesome/free-solid-svg-icons": {"type": "string"}, "babel-loader": {"type": "string"}, "clean-webpack-plugin": {"type": "string"}, "css-loader": {"type": "string"}, "css-minimizer-webpack-plugin": {"type": "string"}, "file-loader": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "mini-css-extract-plugin": {"type": "string"}, "prettier-airbnb-config": {"type": "string"}, "sass": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@fortawesome/fontawesome-svg-core", "@fortawesome/free-solid-svg-icons", "babel-loader", "clean-webpack-plugin", "css-loader", "css-minimizer-webpack-plugin", "file-loader", "html-webpack-plugin", "mini-css-extract-plugin", "prettier-airbnb-config", "sass", "sass-loader", "style-loader", "webpack", "webpack-cli", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "author", "license", "scripts", "keywords", "prettier", "babel", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "vanjsapp-scaffold", "version" : "0.1.0", "description" : "Vanilla JS Application Scaffolding", "main" : "app.js", "author" : "Michelle Rogers", "license" : "ISC", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "serve" : "webpack serve --mode development", "build" : "webpack --mode production"}, "keywords" : [], "prettier" : "prettier-airbnb-config", "babel" : {"presets" : ["@babel/preset-env"]}, "devDependencies" : {"@babel/core" : "^7.16.0", "@babel/preset-env" : "^7.16.4", "@fortawesome/fontawesome-svg-core" : "^1.2.36", "@fortawesome/free-solid-svg-icons" : "^5.15.4", "babel-loader" : "^8.2.3", "clean-webpack-plugin" : "^4.0.0", "css-loader" : "^6.5.1", "css-minimizer-webpack-plugin" : "^3.2.0", "file-loader" : "^6.2.0", "html-webpack-plugin" : "^5.5.0", "mini-css-extract-plugin" : "^2.4.5", "prettier-airbnb-config" : "^1.0.0", "sass" : "^1.44.0", "sass-loader" : "^12.3.0", "style-loader" : "^3.3.1", "webpack" : "^5.64.4", "webpack-cli" : "^4.9.1", "webpack-dev-server" : "^4.6.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "serve": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "serve", "build"]}, "keywords": {"type": "array", "items": {}}, "prettier": {"type": "string"}, "babel": {"type": "object", "properties": {"presets": {"type": "array", "items": {"type": "string"}}}, "required": ["presets"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@fortawesome/fontawesome-svg-core": {"type": "string"}, "@fortawesome/free-solid-svg-icons": {"type": "string"}, "babel-loader": {"type": "string"}, "clean-webpack-plugin": {"type": "string"}, "css-loader": {"type": "string"}, "css-minimizer-webpack-plugin": {"type": "string"}, "file-loader": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "mini-css-extract-plugin": {"type": "string"}, "prettier-airbnb-config": {"type": "string"}, "sass": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "@fortawesome/fontawesome-svg-core", "@fortawesome/free-solid-svg-icons", "babel-loader", "clean-webpack-plugin", "css-loader", "css-minimizer-webpack-plugin", "file-loader", "html-webpack-plugin", "mini-css-extract-plugin", "prettier-airbnb-config", "sass", "sass-loader", "style-loader", "webpack", "webpack-cli", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "author", "license", "scripts", "keywords", "prettier", "babel", "devDependencies"], "$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": {"0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["0.1"], "meta" : {"description" : "Replay log files simply and easily", "homepage" : "https://github.com/apgwoz/recat", "license" : "GPLv3"}, "versions" : {"0.1" : {"sha256" : "d26d88aa457656a2a2c4f150fed6cd3071ad320e6c6e278294c33ef0ad4dd668", "url" : "https://files.pythonhosted.org/packages/69/6c/570397fa602eaf4c00434b2b299ed82baa27f4b6a81d58770a22aac701e6/recat-0.1.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": {"0.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1"]}}, "required": ["latest_version", "meta", "versions"], "$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": {"dev": {"type": "string"}, "build:dev": {"type": "string"}, "build:prod": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev", "build:dev", "build:prod", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "css-loader": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "jest": {"type": "string"}, "style-loader": {"type": "string"}, "ts-jest": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@types/jest", "@types/react", "@types/react-dom", "css-loader", "html-webpack-plugin", "jest", "style-loader", "ts-jest", "ts-loader", "typescript", "webpack", "webpack-cli", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["react", "react-dom"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "react-ts-starter", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"dev" : "cross-env NODE_ENV=development webpack-dev-server", "build:dev" : "cross-env NODE_ENV=development webpack --config webpack.config.js", "build:prod" : "cross-env NODE_ENV=production webpack --config webpack.config.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/FrolovFrontend/react-ts-starter.git"}, "author" : "Maxim Frolov", "license" : "MIT", "bugs" : {"url" : "https://github.com/FrolovFrontend/react-ts-starter/issues"}, "homepage" : "https://github.com/FrolovFrontend/react-ts-starter#readme", "devDependencies" : {"@types/jest" : "^26.0.13", "@types/react" : "^16.9.49", "@types/react-dom" : "^16.9.8", "css-loader" : "^4.3.0", "html-webpack-plugin" : "^4.4.1", "jest" : "^26.4.2", "style-loader" : "^1.2.1", "ts-jest" : "^26.3.0", "ts-loader" : "^8.0.3", "typescript" : "^4.0.2", "webpack" : "^4.44.1", "webpack-cli" : "^3.3.12", "webpack-dev-server" : "^3.11.0"}, "dependencies" : {"react" : "^16.13.1", "react-dom" : "^16.13.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build:dev": {"type": "string"}, "build:prod": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev", "build:dev", "build:prod", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "css-loader": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "jest": {"type": "string"}, "style-loader": {"type": "string"}, "ts-jest": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@types/jest", "@types/react", "@types/react-dom", "css-loader", "html-webpack-plugin", "jest", "style-loader", "ts-jest", "ts-loader", "typescript", "webpack", "webpack-cli", "webpack-dev-server"]}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["react", "react-dom"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id_0257": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_0257"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_0257" : {"publicdate" : "2006-05-03 10:12:48", "title" : "Ragged Dick"}}
json_instruct
{"type": "object", "properties": {"id_0257": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_0257"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Preheat an oven to 375 degrees F (190 degrees C).", "Place the chicken pieces into a glass baking dish, and cover with the cranberry sauce. Sprinkle evenly with the cornflake crumbs.", "Cook the chicken until no longer pink at the bone and the juices run clear, about 30 minutes. An instant-read thermometer inserted near the bone should read 165 degrees F (74 degrees C)."], "ingredients" : ["1 whole chicken, cut into pieces", "1 (14.5 ounce) can whole berry cranberry sauce", "1 cup cornflake crumbs"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Three-Minute Prep Baked Crispy Cranberry Chicken", "url" : "http://allrecipes.com/recipe/214574/three-minute-prep-baked-crispy-cranbe/"}
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "8106040017", "district_id" : "8106040", "name" : "KASIE"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build:bundles": {"type": "string"}, "build:types": {"type": "string"}, "test": {"type": "string"}, "typecheck": {"type": "string"}}, "required": ["build", "build:bundles", "build:types", "test", "typecheck"]}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}, "styled-components": {"type": "string"}}, "required": ["react", "react-dom", "styled-components"]}, "gitHead": {"type": "string"}}, "required": ["name", "version", "description", "author", "license", "main", "module", "types", "publishConfig", "scripts", "peerDependencies", "gitHead"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@omilia/theme", "version" : "1.2.3", "description" : "The theme package contains all the design tokens of the omilia design system.", "author" : "Nikolas Vourlakis <nvourlakis@omilia.com>", "license" : "MIT", "main" : "index.cjs.js", "module" : "index.es.js", "types" : "./types/index.d.ts", "publishConfig" : {"access" : "public"}, "scripts" : {"build" : "yarn build:types && yarn build:bundles", "build:bundles" : "rollup -c ../../rollup.config.js", "build:types" : "tsc --emitDeclarationOnly --project tsconfig.build.json", "test" : "echo \"Error: no test specified\" && exit 1", "typecheck" : "tsc --noEmit --project tsconfig.json"}, "peerDependencies" : {"react" : ">= 16.8.0", "react-dom" : ">= 16.8.0", "styled-components" : "^4.2.0"}, "gitHead" : "afc232a2b7507179a184d7cb58df6a1b0e40cac7"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build:bundles": {"type": "string"}, "build:types": {"type": "string"}, "test": {"type": "string"}, "typecheck": {"type": "string"}}, "required": ["build", "build:bundles", "build:types", "test", "typecheck"]}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}, "styled-components": {"type": "string"}}, "required": ["react", "react-dom", "styled-components"]}, "gitHead": {"type": "string"}}, "required": ["name", "version", "description", "author", "license", "main", "module", "types", "publishConfig", "scripts", "peerDependencies", "gitHead"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "main", "version", "homepage", "authors", "description", "keywords", "license", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "jquery.toggleAria", "main" : "jquery.toggleAria.js", "version" : "0.1.0", "homepage" : "https://github.com/marcus-herrmann/jquery.toggleAria", "authors" : ["Marcus Herrmann <github@marcus-herrmann.com>"], "description" : "Small utility plugin for toggling ARIA states", "keywords" : ["wai-aria", "toggle", "jquery-plugin", "ecosystem:jquery"], "license" : "MIT", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "main", "version", "homepage", "authors", "description", "keywords", "license", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Id": {"type": "string"}, "ProductId": {"type": "string"}, "UserId": {"type": "string"}, "ProfileName": {"type": "string"}, "HelpfulnessNumerator": {"type": "integer"}, "HelpfulnessDenominator": {"type": "integer"}, "Score": {"type": "integer"}, "Time": {"type": "string"}, "Summary": {"type": "string"}, "text": {"type": "string"}}, "required": ["Id", "ProductId", "UserId", "ProfileName", "HelpfulnessNumerator", "HelpfulnessDenominator", "Score", "Time", "Summary", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Id" : "70224", "ProductId" : "P1000-05", "UserId" : "AO9UNKQG83BUP", "ProfileName" : "Book Fan", "HelpfulnessNumerator" : 2, "HelpfulnessDenominator" : 2, "Score" : 2, "Time" : "1336521600", "Summary" : "They forgot to mention the Sucralose", "text" : "They keep saying \"naturally sweetened with honey\", but it is like sweetener overkill with sucralose. Way too sweet, overwhelms any berry flavor that is there, and no green tea flavor is discernable. Diluting it makes the oversweetened taste become obvious as the berry flavor recedes in the distance, with still too much sweetener. (Though if you like things extra sweet, you may enjoy this).<br /><br />Too bad. Try the True Lemon family of unsweetened dehydrated citrus juice packets instead."}
json_instruct
{"type": "object", "properties": {"Id": {"type": "string"}, "ProductId": {"type": "string"}, "UserId": {"type": "string"}, "ProfileName": {"type": "string"}, "HelpfulnessNumerator": {"type": "integer"}, "HelpfulnessDenominator": {"type": "integer"}, "Score": {"type": "integer"}, "Time": {"type": "string"}, "Summary": {"type": "string"}, "text": {"type": "string"}}, "required": ["Id", "ProductId", "UserId", "ProfileName", "HelpfulnessNumerator", "HelpfulnessDenominator", "Score", "Time", "Summary", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"url": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}, "issue": {"type": "string"}, "email": {"type": "string"}}, "required": ["url", "abbr", "name", "issue", "email"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"url" : "https://mirror.lzu.edu.cn", "abbr" : "LZU", "name" : "\u5170\u5dde\u5927\u5b66\u5f00\u6e90\u793e\u533a\u955c\u50cf\u7ad9", "issue" : "https://github.com/LZUOSS/Mirror", "email" : "oss.lzu.edu.cn at gmail.com"}
json_instruct
{"type": "object", "properties": {"url": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}, "issue": {"type": "string"}, "email": {"type": "string"}}, "required": ["url", "abbr", "name", "issue", "email"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"year" : 1915, "sex" : "M", "n" : 5, "prop" : 5.68e-06}, {"year" : 1916, "sex" : "M", "n" : 5, "prop" : 5.42e-06}, {"year" : 1918, "sex" : "M", "n" : 5, "prop" : 4.77e-06}, {"year" : 1922, "sex" : "M", "n" : 5, "prop" : 4.44e-06}, {"year" : 1926, "sex" : "M", "n" : 6, "prop" : 5.24e-06}, {"year" : 1928, "sex" : "M", "n" : 7, "prop" : 6.13e-06}, {"year" : 1932, "sex" : "M", "n" : 6, "prop" : 5.59e-06}, {"year" : 1934, "sex" : "M", "n" : 7, "prop" : 6.59e-06}, {"year" : 1935, "sex" : "M", "n" : 5, "prop" : 4.68e-06}, {"year" : 1937, "sex" : "M", "n" : 8, "prop" : 7.32e-06}, {"year" : 1939, "sex" : "M", "n" : 6, "prop" : 5.29e-06}, {"year" : 1941, "sex" : "M", "n" : 7, "prop" : 5.58e-06}, {"year" : 1943, "sex" : "M", "n" : 6, "prop" : 4.13e-06}, {"year" : 1944, "sex" : "M", "n" : 5, "prop" : 3.6e-06}, {"year" : 1946, "sex" : "M", "n" : 5, "prop" : 3.03e-06}, {"year" : 1949, "sex" : "M", "n" : 5, "prop" : 2.77e-06}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "f25b73a9-f508-460c-9990-fa5c8c460fcc", "name" : "Bussing"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"d3": {"type": "string"}, "jsdom": {"type": "string"}, "svg2png": {"type": "string"}}, "required": ["d3", "jsdom", "svg2png"]}}, "required": ["repository", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"repository" : {"type" : "git", "url" : "https://github.com/leocamelo/bk-charts.git"}, "license" : "MIT", "scripts" : {"start" : "node main.js"}, "dependencies" : {"d3" : "^6.5.0", "jsdom" : "^16.4.0", "svg2png" : "^4.1.1"}}
json_instruct
{"type": "object", "properties": {"repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"d3": {"type": "string"}, "jsdom": {"type": "string"}, "svg2png": {"type": "string"}}, "required": ["d3", "jsdom", "svg2png"]}}, "required": ["repository", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-76.195254, 42.639424], [-76.193015, 42.639548], [-76.192673, 42.640706], [-76.192763, 42.642606], [-76.193803, 42.643903], [-76.191835, 42.646712], [-76.19332, 42.647526], [-76.193566, 42.650042], [-76.178275, 42.6505], [-76.174787, 42.646474], [-76.176797, 42.632673], [-76.175088, 42.6321], [-76.17222, 42.628904], [-76.193011, 42.628014], [-76.191702, 42.637831], [-76.195057, 42.637747], [-76.195254, 42.639424]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 44720}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["path", "enabled"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"path" : "oe-cloud", "enabled" : true}, {"path" : "oe-metadata-ui", "enabled" : true}, {"path" : "./", "forceLoad" : "index.js", "enabled" : true}, {"path" : "./", "enabled" : true, "serverDir" : "test"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["path", "enabled"]}, "$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"}, "symbol": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "collection": {"type": "object", "properties": {"name": {"type": "string"}, "family": {"type": "string"}}, "required": ["name", "family"]}, "properties": {"type": "object", "properties": {"creators": {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}, "share": {"type": "integer"}}, "required": ["address", "share"]}}}, "required": ["creators"]}}, "required": ["name", "symbol", "description", "image", "edition", "date", "attributes", "collection", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "#63", "symbol" : "ASC", "description" : "Alien Sports Club", "image" : "ipfs://QmNfPMWLPTEbFpBtPFy4wkYEHRVWcz8dzjziTcPbebzF53/63.png", "edition" : 63, "date" : 1632830229262, "attributes" : [{"trait_type" : "Background", "value" : "Light Gray"}, {"trait_type" : "Skin", "value" : "Green"}, {"trait_type" : "Eyes", "value" : "Yellow Stoned"}, {"trait_type" : "Clothing", "value" : "Ice Hockey Jersey"}, {"trait_type" : "Chain", "value" : "Missing"}, {"trait_type" : "Teeth", "value" : "Pearly Whites"}, {"trait_type" : "Headwear", "value" : "BJJ Belt"}, {"trait_type" : "Item", "value" : "Tennis Racket"}], "collection" : {"name" : "Alien Sports Club", "family" : "Alien Metaverse"}, "properties" : {"creators" : [{"address" : "FaM3xBSsXY8tTT3BEZhAsxUQ8Tn7svcawWGkVdBfDJuH", "share" : 50}, {"address" : "BPsjnkbqMf4Lccow55VUKunrmMELHMNvFUDMLTN1x1G", "share" : 50}]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "collection": {"type": "object", "properties": {"name": {"type": "string"}, "family": {"type": "string"}}, "required": ["name", "family"]}, "properties": {"type": "object", "properties": {"creators": {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}, "share": {"type": "integer"}}, "required": ["address", "share"]}}}, "required": ["creators"]}}, "required": ["name", "symbol", "description", "image", "edition", "date", "attributes", "collection", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"apiVersion": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "location": {"type": "string"}, "properties": {"type": "object", "properties": {"diskSizeGB": {"type": "string"}, "creationData": {"type": "string"}}, "required": ["diskSizeGB", "creationData"]}, "sku": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "copy": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "string"}}, "required": ["name", "count"]}}, "required": ["apiVersion", "name", "type", "location", "properties", "sku", "copy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"apiVersion" : "2018-09-30", "name" : "[parameters('dataDiskResources')[copyIndex()].name]", "type" : "Microsoft.Compute/disks", "location" : "[variables('location')]", "properties" : {"diskSizeGB" : "[parameters('dataDiskResources')[copyIndex()].diskSizeGB]", "creationData" : "[parameters('dataDiskResources')[copyIndex()].creationData]"}, "sku" : {"name" : "[parameters('dataDiskResources')[copyIndex()].sku]"}, "copy" : {"name" : "managedDiskResources", "count" : "[length(parameters('dataDiskResources'))]"}}
json_instruct
{"type": "object", "properties": {"apiVersion": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "location": {"type": "string"}, "properties": {"type": "object", "properties": {"diskSizeGB": {"type": "string"}, "creationData": {"type": "string"}}, "required": ["diskSizeGB", "creationData"]}, "sku": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "copy": {"type": "object", "properties": {"name": {"type": "string"}, "count": {"type": "string"}}, "required": ["name", "count"]}}, "required": ["apiVersion", "name", "type", "location", "properties", "sku", "copy"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "test-plugin-import-json-develop-default", "type" : "module"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : {"id" : "t2_4c2bmlsx", "name" : "Gerry-of-Britain"}, "date" : {"day" : 1595721600, "full" : 1595755312, "month" : 1593561600, "week" : 1595721600}, "id" : "t3_hy3zcv", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 86987, "fullUrl" : "https://preview.redd.it/ollj8z8b66d51.jpg?auto=webp&s=105a70d6bc4d19190e93e2e44ceb6fdef649ce0f", "hash" : "43ceeebf30", "height" : 480, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAMABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAMEB//EAB4QAQEAAQQDAQAAAAAAAAAAAAECAwAEERIhMUET/8QAFAEBAAAAAAAAAAAAAAAAAAAABP/EABYRAAMAAAAAAAAAAAAAAAAAAAABE//aAAwDAQACEQMRAD8AybZZKduVz2yKi15ONMzJ+OXuksy8qckvj5q2drhkCZ6g8gPrRW2xXKXHYr2P3R5sXZH/2Q==", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/yKJslr5FLcc9Ij26cJMkNVqiapoqkKEAeIzLFnRga2g.jpg", "url" : "https://preview.redd.it/ollj8z8b66d51.jpg?width=640&crop=smart&auto=webp&s=f1a89cb4170c699dd3926c0398f15dd5a62fe37f", "width" : 640}, "score" : {"comments" : 0, "downs" : 0, "isCurated" : false, "ratio" : 0.99, "ups" : 65, "value" : 65}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["Building"], "title" : "A warehouse map I made for my game. I tried adding as many environmental factors as possible.", "url" : "https://www.reddit.com/r/dndmaps/comments/hy3zcv/a_warehouse_map_i_made_for_my_game_i_tried_adding/"}
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}, "sizes": {"type": "string"}}, "required": ["src", "type", "sizes"]}}, "start_url": {"type": "string"}, "display": {"type": "string"}, "theme_color": {"type": "string"}, "background_color": {"type": "string"}}, "required": ["short_name", "name", "description", "icons", "start_url", "display", "theme_color", "background_color"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"short_name" : "Atharv Chandratre | Portfolio", "name" : "Atharv Chandratre's Portfolio", "description" : "I'm a passionate technologist interested in web and blockchain technologies. I love to explore the disruptive potential of blockchain in present-day systems, especially at its intersection with finance. In my free time, I play badminton, do origami and overthink.", "icons" : [{"src" : "./favicon.png", "type" : "image/png", "sizes" : "192x192"}, {"src" : "./favicon.png", "type" : "image/png", "sizes" : "512x512"}], "start_url" : "./index.html", "display" : "standalone", "theme_color" : "#11cdef", "background_color" : "#11cdef"}
json_instruct
{"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}, "sizes": {"type": "string"}}, "required": ["src", "type", "sizes"]}}, "start_url": {"type": "string"}, "display": {"type": "string"}, "theme_color": {"type": "string"}, "background_color": {"type": "string"}}, "required": ["short_name", "name", "description", "icons", "start_url", "display", "theme_color", "background_color"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"Similarity" : "0.908", "Title" : "Adolescent Reasoning in Mathematics Exploring Middle School Students Strategic Approaches in Empirical Justifications", "Year" : 2011}, {"Similarity" : "0.899", "Title" : "Constructing internal diagrammatic proofs from external logic diagrams", "Year" : 2010}, {"Similarity" : "0.884", "Title" : "The Role of Strategies and Instructions in Relational Deductive Reasoning", "Year" : 2003}, {"Similarity" : "0.872", "Title" : "Teaching with Dialectic Arguments vs Didactic Explanations", "Year" : 2002}, {"Similarity" : "0.864", "Title" : "Efficacious Logic Instruction People Are Not Irremediablly Poor Deductive Reasoners", "Year" : 2001}, {"Similarity" : "0.86", "Title" : "When does a visual proof by induction serve a proof-like function in mathematics", "Year" : 2017}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "AccessComments": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "AccessComments", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "number"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "UsageTypeID", "AddressInfo", "Connections", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 111089, "UUID" : "B847B117-852A-41A8-946A-EA46C5D70C04", "DataProviderID" : 2, "DataProvidersReference" : "84648", "UsageTypeID" : 7, "AddressInfo" : {"ID" : 111435, "Title" : "Green Storage", "AddressLine1" : "11 Browning Ct", "Town" : "Bolton", "StateOrProvince" : "ON", "Postcode" : "L7E 1G8", "CountryID" : 44, "Latitude" : 43.861453, "Longitude" : -79.733013, "ContactTelephone1" : "905-951-6116", "AccessComments" : "8am-8pm daily; tenants only\r\nPublic - Call ahead", "RelatedURL" : "", "DistanceUnit" : 0}, "Connections" : [{"ID" : 156447, "ConnectionTypeID" : 1, "LevelID" : 2, "Amps" : 16, "Voltage" : 230, "PowerKW" : 3.7, "CurrentTypeID" : 10, "Quantity" : 1}], "DateLastStatusUpdate" : "2020-06-26T03:07:00Z", "DataQualityLevel" : 3, "DateCreated" : "2018-10-18T23:36:00Z", "SubmissionStatusTypeID" : 100}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "AccessComments": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "AccessComments", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "Amps": {"type": "integer"}, "Voltage": {"type": "integer"}, "PowerKW": {"type": "number"}, "CurrentTypeID": {"type": "integer"}, "Quantity": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "LevelID", "Amps", "Voltage", "PowerKW", "CurrentTypeID", "Quantity"]}}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "UsageTypeID", "AddressInfo", "Connections", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "dependencies": {"type": "object", "properties": {"@google/maps": {"type": "string"}, "axios": {"type": "string"}, "bcryptjs": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "geocoder": {"type": "string"}, "jwt-simple": {"type": "string"}, "node-geocoder": {"type": "string"}, "pg": {"type": "string"}, "sequelize": {"type": "string"}, "sequelize-cli": {"type": "string"}}, "required": ["@google/maps", "axios", "bcryptjs", "dotenv", "express", "geocoder", "jwt-simple", "node-geocoder", "pg", "sequelize", "sequelize-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "engines", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "backend-frontend", "version" : "1.0.0", "description" : "backend for airbnb optimal price app", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "engines" : {"node" : "10.10.0"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Air-bnb-Optimal-Price/Backend-Frontend.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/Air-bnb-Optimal-Price/Backend-Frontend/issues"}, "homepage" : "https://github.com/Air-bnb-Optimal-Price/Backend-Frontend#readme", "devDependencies" : {}, "dependencies" : {"@google/maps" : "^1.1.0", "axios" : "^0.19.2", "bcryptjs" : "^2.4.3", "dotenv" : "^8.2.0", "express" : "^4.17.1", "geocoder" : "^0.2.3", "jwt-simple" : "^0.5.6", "node-geocoder" : "^3.25.0", "pg" : "^7.18.1", "sequelize" : "^5.21.3", "sequelize-cli" : "^5.5.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "dependencies": {"type": "object", "properties": {"@google/maps": {"type": "string"}, "axios": {"type": "string"}, "bcryptjs": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "geocoder": {"type": "string"}, "jwt-simple": {"type": "string"}, "node-geocoder": {"type": "string"}, "pg": {"type": "string"}, "sequelize": {"type": "string"}, "sequelize-cli": {"type": "string"}}, "required": ["@google/maps", "axios", "bcryptjs", "dotenv", "express", "geocoder", "jwt-simple", "node-geocoder", "pg", "sequelize", "sequelize-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "engines", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"sn10.3:2.8": {"type": "string"}, "sn10.3:2.10": {"type": "string"}, "sn10.3:5.4": {"type": "string"}}, "required": ["sn10.3:2.8", "sn10.3:2.10", "sn10.3:5.4"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"sn10.3:2.8" : "p\u0101raga\u1e45g\u0101ya \u2192 p\u0101ra\u1e41 ga\u1e45g\u0101ya (mr)", "sn10.3:2.10" : "(\u2026) \u2192 (atha kho s\u016bcilomo yakkho bhagavanta\u1e41 g\u0101th\u0101ya ajjhabh\u0101si.) (bj, pts2ed)", "sn10.3:5.4" : "vitat\u0101 \u2192 vitthat\u0101 (sya-all, km)"}
json_instruct
{"type": "object", "properties": {"sn10.3:2.8": {"type": "string"}, "sn10.3:2.10": {"type": "string"}, "sn10.3:5.4": {"type": "string"}}, "required": ["sn10.3:2.8", "sn10.3:2.10", "sn10.3:5.4"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "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" : 9411055001, "parent" : 9411055, "name" : "KARUBATE", "latitude" : null, "longitude" : null, "postal" : [98914], "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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"background": {"type": "boolean"}}, "required": ["background"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "32110d76bef9abb055d3", "c" : {"background" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"background": {"type": "boolean"}}, "required": ["background"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"request": {"type": "object", "properties": {"body": {"type": "string"}, "headers": {"type": "object", "properties": {"Authorization": {"type": "string"}, "stream-auth-type": {"type": "string"}, "content-type": {"type": "string"}}, "required": ["Authorization", "stream-auth-type", "content-type"]}, "method": {"type": "string"}, "options": {"type": "array", "items": {}}, "request_body": {"type": "string"}, "url": {"type": "string"}}, "required": ["body", "headers", "method", "options", "request_body", "url"]}, "response": {"type": "object", "properties": {"binary": {"type": "boolean"}, "body": {"type": "string"}, "headers": {"type": "object", "properties": {"Date": {"type": "string"}, "Content-Type": {"type": "string"}, "Content-Length": {"type": "string"}, "Connection": {"type": "string"}, "Server": {"type": "string"}, "Access-Control-Allow-Headers": {"type": "string"}, "Access-Control-Allow-Methods": {"type": "string"}, "Access-Control-Allow-Origin": {"type": "string"}, "Access-Control-Max-Age": {"type": "string"}, "Cache-Control": {"type": "string"}, "X-Ratelimit-Limit": {"type": "string"}, "X-Ratelimit-Remaining": {"type": "string"}, "X-Ratelimit-Reset": {"type": "string"}}, "required": ["Date", "Content-Type", "Content-Length", "Connection", "Server", "Access-Control-Allow-Headers", "Access-Control-Allow-Methods", "Access-Control-Allow-Origin", "Access-Control-Max-Age", "Cache-Control", "X-Ratelimit-Limit", "X-Ratelimit-Remaining", "X-Ratelimit-Reset"]}, "status_code": {"type": "integer"}, "type": {"type": "string"}}, "required": ["binary", "body", "headers", "status_code", "type"]}}, "required": ["request", "response"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"request" : {"body" : "{\"activities\":[{\"verb\":\"like\",\"object\":\"Elixir\",\"foreign_id\":\"tony:elixir\",\"custom_field\":\"custom_value\",\"actor\":\"Tony\"}]}", "headers" : {"Authorization" : "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY3Rpb24iOiIqIiwiYXVkIjoiSm9rZW4iLCJleHAiOjE1OTU0MDg5NDgsImZlZWRfaWQiOiIqIiwiaWF0IjoxNTk1NDAxNzQ4LCJpc3MiOiJKb2tlbiIsImp0aSI6IjJvaTAyczBmYjU0dWd2YTZmMDAwMDAyMSIsIm5iZiI6MTU5NTQwMTc0OCwicmVzb3VyY2UiOiIqIn0.ZaTcc944_OE3cFZe_Hy9dJPzcDuxftRHQu0_6SBq5iY", "stream-auth-type" : "jwt", "content-type" : "application/json"}, "method" : "post", "options" : [], "request_body" : "", "url" : "https://api.stream-io-api.com/api/v1.0/feed/user/eric/?api_key=bxfd3qv7c56c"}, "response" : {"binary" : false, "body" : "{\"activities\":[{\"actor\":\"Tony\",\"custom_field\":\"custom_value\",\"foreign_id\":\"tony:elixir\",\"id\":\"3cbe986c-cbea-11ea-a922-06daca4b5df0\",\"object\":\"Elixir\",\"origin\":null,\"target\":\"\",\"time\":\"2020-07-22T07:09:09.013105\",\"verb\":\"like\"}],\"duration\":\"20.77ms\"}\n", "headers" : {"Date" : "Wed, 22 Jul 2020 07:09:09 GMT", "Content-Type" : "application/json;charset=utf-8", "Content-Length" : "250", "Connection" : "keep-alive", "Server" : "nginx", "Access-Control-Allow-Headers" : "x-requested-with, content-type, accept, origin, authorization, x-csrftoken, x-stream-client, stream-auth-type", "Access-Control-Allow-Methods" : "GET, POST, PUT, PATCH, DELETE, OPTIONS", "Access-Control-Allow-Origin" : "*", "Access-Control-Max-Age" : "86400", "Cache-Control" : "no-cache", "X-Ratelimit-Limit" : "1000", "X-Ratelimit-Remaining" : "996", "X-Ratelimit-Reset" : "1595401800"}, "status_code" : 201, "type" : "ok"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"request": {"type": "object", "properties": {"body": {"type": "string"}, "headers": {"type": "object", "properties": {"Authorization": {"type": "string"}, "stream-auth-type": {"type": "string"}, "content-type": {"type": "string"}}, "required": ["Authorization", "stream-auth-type", "content-type"]}, "method": {"type": "string"}, "options": {"type": "array", "items": {}}, "request_body": {"type": "string"}, "url": {"type": "string"}}, "required": ["body", "headers", "method", "options", "request_body", "url"]}, "response": {"type": "object", "properties": {"binary": {"type": "boolean"}, "body": {"type": "string"}, "headers": {"type": "object", "properties": {"Date": {"type": "string"}, "Content-Type": {"type": "string"}, "Content-Length": {"type": "string"}, "Connection": {"type": "string"}, "Server": {"type": "string"}, "Access-Control-Allow-Headers": {"type": "string"}, "Access-Control-Allow-Methods": {"type": "string"}, "Access-Control-Allow-Origin": {"type": "string"}, "Access-Control-Max-Age": {"type": "string"}, "Cache-Control": {"type": "string"}, "X-Ratelimit-Limit": {"type": "string"}, "X-Ratelimit-Remaining": {"type": "string"}, "X-Ratelimit-Reset": {"type": "string"}}, "required": ["Date", "Content-Type", "Content-Length", "Connection", "Server", "Access-Control-Allow-Headers", "Access-Control-Allow-Methods", "Access-Control-Allow-Origin", "Access-Control-Max-Age", "Cache-Control", "X-Ratelimit-Limit", "X-Ratelimit-Remaining", "X-Ratelimit-Reset"]}, "status_code": {"type": "integer"}, "type": {"type": "string"}}, "required": ["binary", "body", "headers", "status_code", "type"]}}, "required": ["request", "response"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible 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" : "/* This file is generated by createIcons.js any changes will be lost. */\nimport createIcon from '../createIcon';\nvar UserCircleIcon = createIcon({\n name: 'UserCircleIcon',\n height: 512,\n width: 496,\n svgPath: 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 96c48.6 0 88 39.4 88 88s-39.4 88-88 88-88-39.4-88-88 39.4-88 88-88zm0 344c-58.7 0-111.3-26.6-146.5-68.2 18.8-35.4 55.6-59.8 98.5-59.8 2.4 0 4.8.4 7.1 1.1 13 4.2 26.6 6.9 40.9 6.9 14.3 0 28-2.7 40.9-6.9 2.3-.7 4.7-1.1 7.1-1.1 42.9 0 79.7 24.4 98.5 59.8C359.3 421.4 306.7 448 248 448z',\n yOffset: '',\n xOffset: '',\n transform: ''\n});\nexport default UserCircleIcon;", "map" : null, "metadata" : {}, "sourceType" : "module"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"main": {"type": "string"}}, "required": ["main"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"main" : "PokemonType.js"}
json_instruct
{"type": "object", "properties": {"main": {"type": "string"}}, "required": ["main"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "integer"}, "code": {"type": "string"}, "debug": {"type": "string"}, "description": {"type": "string"}, "filename": {"type": "string"}, "function": {"type": "string"}, "lineno": {"type": "integer"}, "title": {"type": "string"}, "type": {"type": "string"}}, "required": ["address", "code", "debug", "description", "filename", "function", "lineno", "title", "type"]}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x16cfdd5effccd86a1f06bffd6bdd45e3609bbef4", "tool" : "mythril", "start" : 1563682238.1676402, "end" : 1563682244.3440678, "duration" : 6.176427602767944, "analysis" : {"error" : null, "issues" : [{"address" : 397, "code" : "iver] += amount;\n ret", "debug" : "calldata_jvCoin_32 + 4: 0xc290137095b13347e55005a6dc184559e0489f1233480050d0fb4bba17d34179\nstorage_keccac_1461501637330902918203684832716283019655932542975_&\n1461501637330902918203684832716283019655932542975_&\n1461501637330902918203684832716283019655932542975_&\ncalldata_jvCoin_4: 0x9c9efb7ae5acd378025256a3945f5859076e809243093d9ecae2636c9fd28979\nstorage_keccac_1461501637330902918203684832716283019655932542975_&\n1461501637330902918203684832716283019655932542975_&\ncaller: 0xc290137095b13347e55005a6dc184559e0489f1233480050d0fb4bba17d34179\ncalldata_jvCoin_0: 0x90b98a1100000000000000000000000000000000000000000000000000000000\ncalldatasize_jvCoin: 0x4\ncallvalue: 0x0\n", "description" : "A possible integer overflow exists in the function `sendCoin(address,uint256)`.\nThe addition or multiplication may result in a value higher than the maximum representable integer.", "filename" : "/unique_chucks/34/0x16cfdd5effccd86a1f06bffd6bdd45e3609bbef4.sol", "function" : "sendCoin(address,uint256)", "lineno" : 14, "title" : "Integer Overflow ", "type" : "Warning"}], "success" : true}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "integer"}, "code": {"type": "string"}, "debug": {"type": "string"}, "description": {"type": "string"}, "filename": {"type": "string"}, "function": {"type": "string"}, "lineno": {"type": "integer"}, "title": {"type": "string"}, "type": {"type": "string"}}, "required": ["address", "code", "debug", "description", "filename", "function", "lineno", "title", "type"]}}, "success": {"type": "boolean"}}, "required": ["error", "issues", "success"]}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"src": {"type": "string"}, "trg": {"type": "string"}, "pred": {"type": "string"}, "gleu": {"type": "number"}}, "required": ["src", "trg", "pred", "gleu"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"src" : "break sprout thighs snout", "trg" : "comedogenic foods make me break out? acne pimples determined to sprout. greasy pizza and fries send some fat to my thighs and some oil to the tip of my snout.", "pred" : "i break the sun and sprout from my thighs and my snout.", "gleu" : 10.96}
json_instruct
{"type": "object", "properties": {"src": {"type": "string"}, "trg": {"type": "string"}, "pred": {"type": "string"}, "gleu": {"type": "number"}}, "required": ["src", "trg", "pred", "gleu"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-76.632024, 39.150156], [-76.631432, 39.152882], [-76.626856, 39.151287], [-76.620771, 39.150961], [-76.614555, 39.153689], [-76.597445, 39.134819], [-76.603015, 39.135121], [-76.615354, 39.139469], [-76.625738, 39.140554], [-76.631556, 39.144788], [-76.632024, 39.150156]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 84049}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "benchmark": {"type": "string"}}, "required": ["test", "benchmark"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "dotenv": {"type": "string"}, "undici": {"type": "string"}}, "required": ["axios", "dotenv", "undici"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "keywords", "author", "license", "repository", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "fut-funcaptcha", "version" : "4.1.18", "description" : "Easily get and interact with fifa ultimate team funcaptchas.", "main" : "main.js", "directories" : {"lib" : "lib"}, "scripts" : {"test" : "node test/roblox-funcaptcha", "benchmark" : "node test/benchmark"}, "keywords" : ["fut", "funcaptcha"], "author" : "mynameisvasco", "license" : "MIT", "repository" : "mynameisvasco/fut-funcaptcha", "dependencies" : {"axios" : "^0.26.1", "dotenv" : "^16.0.0", "undici" : "^4.12.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "benchmark": {"type": "string"}}, "required": ["test", "benchmark"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "dotenv": {"type": "string"}, "undici": {"type": "string"}}, "required": ["axios", "dotenv", "undici"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "keywords", "author", "license", "repository", "dependencies"], "$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"}, "scripts": {"type": "object", "properties": {"pretest": {"type": "string"}, "test": {"type": "string"}, "jest": {"type": "string"}, "build": {"type": "string"}, "watch": {"type": "string"}, "clean": {"type": "string"}, "release": {"type": "string"}}, "required": ["pretest", "test", "jest", "build", "watch", "clean", "release"]}, "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": {"@babel/preset-env": {"type": "string"}, "@glennsl/bs-jest": {"type": "string"}, "bs-platform": {"type": "string"}, "enzyme-adapter-react-16": {"type": "string"}, "jest": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "reason-react": {"type": "string"}, "standard-version": {"type": "string"}}, "required": ["@babel/preset-env", "@glennsl/bs-jest", "bs-platform", "enzyme-adapter-react-16", "jest", "react", "react-dom", "reason-react", "standard-version"]}, "dependencies": {"type": "object", "properties": {"enzyme": {"type": "string"}, "react-test-renderer": {"type": "string"}}, "required": ["enzyme", "react-test-renderer"]}, "peerDependencies": {"type": "object", "properties": {"bs-platform": {"type": "string"}, "reason-react": {"type": "string"}}, "required": ["bs-platform", "reason-react"]}}, "required": ["name", "version", "description", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bs-enzyme", "version" : "0.6.1", "description" : "Bucklescript bindings for Enzyme", "scripts" : {"pretest" : "npm run build", "test" : "jest", "jest" : "jest --watch", "build" : "bsb -make-world", "watch" : "bsb -make-world -w", "clean" : "bsb -clean-world", "release" : "standard-version"}, "repository" : {"type" : "git", "url" : "git+https://github.com/rpowelll/bs-enzyme.git"}, "keywords" : ["bucklescript", "enzyme", "testing"], "author" : "Rhys Powell", "license" : "MIT", "bugs" : {"url" : "https://github.com/rpowelll/bs-enzyme/issues"}, "homepage" : "https://github.com/rpowelll/bs-enzyme#readme", "devDependencies" : {"@babel/preset-env" : "7.10.4", "@glennsl/bs-jest" : "0.5.1", "bs-platform" : "8.0.3", "enzyme-adapter-react-16" : "1.15.2", "jest" : "26.1.0", "react" : "16.13.1", "react-dom" : "16.13.1", "reason-react" : "0.9.1", "standard-version" : "8.0.2"}, "dependencies" : {"enzyme" : "3.11.0", "react-test-renderer" : "16.13.1"}, "peerDependencies" : {"bs-platform" : ">=8.0.0", "reason-react" : ">=0.9.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"pretest": {"type": "string"}, "test": {"type": "string"}, "jest": {"type": "string"}, "build": {"type": "string"}, "watch": {"type": "string"}, "clean": {"type": "string"}, "release": {"type": "string"}}, "required": ["pretest", "test", "jest", "build", "watch", "clean", "release"]}, "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": {"@babel/preset-env": {"type": "string"}, "@glennsl/bs-jest": {"type": "string"}, "bs-platform": {"type": "string"}, "enzyme-adapter-react-16": {"type": "string"}, "jest": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "reason-react": {"type": "string"}, "standard-version": {"type": "string"}}, "required": ["@babel/preset-env", "@glennsl/bs-jest", "bs-platform", "enzyme-adapter-react-16", "jest", "react", "react-dom", "reason-react", "standard-version"]}, "dependencies": {"type": "object", "properties": {"enzyme": {"type": "string"}, "react-test-renderer": {"type": "string"}}, "required": ["enzyme", "react-test-renderer"]}, "peerDependencies": {"type": "object", "properties": {"bs-platform": {"type": "string"}, "reason-react": {"type": "string"}}, "required": ["bs-platform", "reason-react"]}}, "required": ["name", "version", "description", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies", "peerDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"js/sql-debug.js": {"type": "string"}, "js/sql.js": {"type": "string"}, "js/worker.sql.js": {"type": "string"}}, "required": ["js/sql-debug.js", "js/sql.js", "js/worker.sql.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"js/sql-debug.js" : "sha256-WI6fQ2PbRwabrVK2y/Inqtko5om1rl8D16q60ip9iwI=", "js/sql.js" : "sha256-1ar+Q6NCSc7ww6Do+RA2HM4AAFAXNP82qxKeHub8KXo=", "js/worker.sql.js" : "sha256-dJwPh/GRYtoffpimbQG+yFA5deHuapbHqgkeDt67NQ4="}
json_instruct
{"type": "object", "properties": {"js/sql-debug.js": {"type": "string"}, "js/sql.js": {"type": "string"}, "js/worker.sql.js": {"type": "string"}}, "required": ["js/sql-debug.js", "js/sql.js", "js/worker.sql.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "short_name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "options_page": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "background": {"type": "object", "properties": {"persistent": {"type": "boolean"}, "scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["persistent", "scripts"]}, "browser_action": {"type": "object", "properties": {"default_title": {"type": "string"}, "default_icon": {"type": "object", "properties": {"19": {"type": "string"}, "38": {"type": "string"}}, "required": ["19", "38"]}}, "required": ["default_title", "default_icon"]}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]}}, "required": ["manifest_version", "name", "short_name", "description", "version", "options_page", "permissions", "background", "browser_action", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"manifest_version" : 2, "name" : "xvg", "short_name" : "xvg", "description" : "An extension for debugging SVG paths by converting them to outlines and displaying anchors, control points, handles and arc ellipses", "version" : "1.2.0", "options_page" : "index.html", "permissions" : ["activeTab", "storage"], "background" : {"persistent" : false, "scripts" : ["xvg-injector.js"]}, "browser_action" : {"default_title" : "xvg", "default_icon" : {"19" : "icon19.png", "38" : "icon38.png"}}, "icons" : {"16" : "icon16.png", "48" : "icon48.png", "128" : "icon128.png"}}
json_instruct
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "short_name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "options_page": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "background": {"type": "object", "properties": {"persistent": {"type": "boolean"}, "scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["persistent", "scripts"]}, "browser_action": {"type": "object", "properties": {"default_title": {"type": "string"}, "default_icon": {"type": "object", "properties": {"19": {"type": "string"}, "38": {"type": "string"}}, "required": ["19", "38"]}}, "required": ["default_title", "default_icon"]}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]}}, "required": ["manifest_version", "name", "short_name", "description", "version", "options_page", "permissions", "background", "browser_action", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "usingComponents": {"type": "object", "properties": {"hch-poster": {"type": "string"}}, "required": ["hch-poster"]}}, "required": ["navigationBarTitleText", "usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"navigationBarTitleText" : "\u6bcf\u65e5\u4e00\u7b7e", "usingComponents" : {"hch-poster" : "/components/hch-poster/hch-poster"}}
json_instruct
{"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "usingComponents": {"type": "object", "properties": {"hch-poster": {"type": "string"}}, "required": ["hch-poster"]}}, "required": ["navigationBarTitleText", "usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["530326003007", "\u9f99\u6f6d\u793e\u533a", "121", "0"], ["530326003008", "\u91d1\u949f\u793e\u533a", "122", "0"], ["530326003009", "\u77f3\u9f13\u5c45\u59d4\u4f1a", "122", "0"], ["530326003010", "\u4e4c\u9f99\u5c45\u59d4\u4f1a", "122", "0"], ["530326003011", "\u9c7c\u6d1e\u793e\u533a", "220", "0"], ["530326003012", "\u4ee5\u5219\u793e\u533a", "122", "0"], ["530326003013", "\u4ee5\u793c\u793e\u533a", "122", "0"], ["530326003207", "\u7af9\u56ed\u6751\u59d4\u4f1a", "220", "0"], ["530326003208", "\u9ea6\u5730\u6751\u59d4\u4f1a", "220", "0"], ["530326003209", "\u4e09\u5bb6\u5858\u6751\u59d4\u4f1a", "220", "0"], ["530326003210", "\u677e\u5c71\u6751\u59d4\u4f1a", "220", "0"], ["530326003211", "\u6e29\u6cc9\u6751\u59d4\u4f1a", "122", "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": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"first": {"type": "string"}, "prev": {"type": "string"}, "next": {"type": "string"}, "title": {"type": "string"}, "singlepanel": {"type": "null"}, "filename": {"type": "string"}, "url": {"type": "string"}, "fluid": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {"relativePath": {"type": "string"}, "childImageSharp": {"type": "object", "properties": {"fluid": {"type": "object", "properties": {"originalName": {"type": "string"}, "aspectRatio": {"type": "number"}, "base64": {"type": "string"}, "sizes": {"type": "string"}, "src": {"type": "string"}, "srcSet": {"type": "string"}}, "required": ["originalName", "aspectRatio", "base64", "sizes", "src", "srcSet"]}}, "required": ["fluid"]}}, "required": ["relativePath", "childImageSharp"]}}, "required": ["node"]}}}, "required": ["first", "prev", "next", "title", "singlepanel", "filename", "url", "fluid"]}}, "required": ["pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"componentChunkName" : "component---src-templates-comic-js", "path" : "/comics/cat", "result" : {"pageContext" : {"first" : "/comics/friends", "prev" : "/comics/new_york", "next" : "/comics/optimism", "title" : "Cat", "singlepanel" : null, "filename" : "cat.jpg", "url" : "cat", "fluid" : [{"node" : {"relativePath" : "images/cat.jpg", "childImageSharp" : {"fluid" : {"originalName" : "cat.jpg", "aspectRatio" : 2.380952380952381, "base64" : "data:image/jpeg;base64,/9j/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wgARCAAIABQDASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAMF/8QAFAEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEAMQAAAB1QUB/8QAGBAAAgMAAAAAAAAAAAAAAAAAAAERIUH/2gAIAQEAAQUClm2f/8QAFBEBAAAAAAAAAAAAAAAAAAAAEP/aAAgBAwEBPwE//8QAFBEBAAAAAAAAAAAAAAAAAAAAEP/aAAgBAgEBPwE//8QAFhAAAwAAAAAAAAAAAAAAAAAAABAx/9oACAEBAAY/AiL/xAAbEAACAQUAAAAAAAAAAAAAAAAAAREhMUFR4f/aAAgBAQABPyHQuibyCuhUk//aAAwDAQACAAMAAAAQ88//xAAUEQEAAAAAAAAAAAAAAAAAAAAQ/9oACAEDAQE/ED//xAAUEQEAAAAAAAAAAAAAAAAAAAAQ/9oACAECAQE/ED//xAAbEAEBAAMAAwAAAAAAAAAAAAABEQAhMUHB8P/aAAgBAQABPxAB3rYK8eshNBmr95y2gcLc/9k=", "sizes" : "(max-width: 800px) 100vw, 800px", "src" : "/static/b20458d58301ccec7321d314048f207c/14b42/cat.jpg", "srcSet" : "/static/b20458d58301ccec7321d314048f207c/f836f/cat.jpg 200w,\n/static/b20458d58301ccec7321d314048f207c/2244e/cat.jpg 400w,\n/static/b20458d58301ccec7321d314048f207c/14b42/cat.jpg 800w,\n/static/b20458d58301ccec7321d314048f207c/47498/cat.jpg 1200w,\n/static/b20458d58301ccec7321d314048f207c/0e329/cat.jpg 1600w,\n/static/b20458d58301ccec7321d314048f207c/ea301/cat.jpg 2610w"}}}}]}}, "staticQueryHashes" : ["1778280346", "2817653224"]}
json_instruct
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"first": {"type": "string"}, "prev": {"type": "string"}, "next": {"type": "string"}, "title": {"type": "string"}, "singlepanel": {"type": "null"}, "filename": {"type": "string"}, "url": {"type": "string"}, "fluid": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {"relativePath": {"type": "string"}, "childImageSharp": {"type": "object", "properties": {"fluid": {"type": "object", "properties": {"originalName": {"type": "string"}, "aspectRatio": {"type": "number"}, "base64": {"type": "string"}, "sizes": {"type": "string"}, "src": {"type": "string"}, "srcSet": {"type": "string"}}, "required": ["originalName", "aspectRatio", "base64", "sizes", "src", "srcSet"]}}, "required": ["fluid"]}}, "required": ["relativePath", "childImageSharp"]}}, "required": ["node"]}}}, "required": ["first", "prev", "next", "title", "singlepanel", "filename", "url", "fluid"]}}, "required": ["pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"clientID": {"type": "string"}, "serverToken": {"type": "string"}, "clientToken": {"type": "string"}, "encKey": {"type": "string"}, "macKey": {"type": "string"}}, "required": ["clientID", "serverToken", "clientToken", "encKey", "macKey"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"clientID" : "l239o7PRag8ehO2w6odzgA==", "serverToken" : "1@7STOWLpfxRqjsFOKYr6u4sbPLaQPwufs0KmaQp42xZMdcm5Bwby/O75rtRS/u3Hj1piga/ts1wOr5w==", "clientToken" : "DZmEsRVSLWCY6loFO2o7fPtqzDw5kAZOBbofjyMxbE0=", "encKey" : "oFeV/0s4ml1cjYqDW6cYY2AE6NZx7khIURLO83sUOk4=", "macKey" : "EBF5a427t3UqNGOh3+/zVOCZMg4EBjeWpZTl+dLieZE="}
json_instruct
{"type": "object", "properties": {"clientID": {"type": "string"}, "serverToken": {"type": "string"}, "clientToken": {"type": "string"}, "encKey": {"type": "string"}, "macKey": {"type": "string"}}, "required": ["clientID", "serverToken", "clientToken", "encKey", "macKey"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Westricher Schule St\u00e4dt. Gem. Grundschule - Primarstufe -", "id" : "NRW-129677", "address" : "Sumbecks Holz 7-9, 44388 Dortmund", "school_type" : "Grundschule", "fax" : "0231 28672659", "phone" : "0231 28672630", "website" : " http://www.westricher-grundschule.de", "email" : " 129677@schule.nrw.de ", "state" : "NRW", "programs" : {"programs" : []}, "full_time_school" : false, "lon" : 7.357736, "lat" : 51.516627}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"ID": {"type": "string"}, "post_name": {"type": "string"}, "post_title": {"type": "string"}, "post_date_gmt": {"type": "string"}, "post_modified_gmt": {"type": "string"}, "post_status": {"type": "string"}, "comment_status": {"type": "string"}, "post_type": {"type": "string"}}, "required": ["ID", "post_name", "post_title", "post_date_gmt", "post_modified_gmt", "post_status", "comment_status", "post_type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ID" : "6912", "post_name" : "github-because-those-who-can-not-do-fork", "post_title" : "Fork.", "post_date_gmt" : "2016-12-15 12:08:35", "post_modified_gmt" : "2016-12-15 12:08:35", "post_status" : "publish", "comment_status" : "open", "post_type" : "post"}
json_instruct
{"type": "object", "properties": {"ID": {"type": "string"}, "post_name": {"type": "string"}, "post_title": {"type": "string"}, "post_date_gmt": {"type": "string"}, "post_modified_gmt": {"type": "string"}, "post_status": {"type": "string"}, "comment_status": {"type": "string"}, "post_type": {"type": "string"}}, "required": ["ID", "post_name", "post_title", "post_date_gmt", "post_modified_gmt", "post_status", "comment_status", "post_type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 53373, "cartId" : "704f973e-e7d7-485f-89de-c52e8a1ee078", "preferredProducts" : [1680, 4663, 4243, 2136, 557], "productReviews" : []}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"track" : "javascript", "exercise" : "two-fer", "id" : "a77d7abc31ca4b1fa14367c786355e53", "url" : "https://exercism.io/my/solutions/a77d7abc31ca4b1fa14367c786355e53", "handle" : "volcain-io", "is_requester" : true, "auto_approve" : false}
json_instruct
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
[1.0, 1.0, 12.0, 2.0, 2.0, 1.0, 2.0, 0.0, 2.0, 2.0, 5.0, 1.0, 3.0, 0.0, 1.0, 0.0, 3.0, 0.0, 4.0, 2.0, 2.0, 1.0, 2.0, 2.0, 1.0, 2.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0]
json_instruct
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "AND REGULATE THE SIGNIFICATION OF THEIR NAMES BY THE THINGS THEMSELVES, IF WE WILL HAVE OUR NAMES TO BE SIGNS OF THEM, AND STAND FOR THEM.", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/10951.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@iamtraction/google-translate": {"type": "string"}, "ascii-table": {"type": "string"}, "bing-translate-api": {"type": "string"}, "chalk": {"type": "string"}, "cron": {"type": "string"}, "discord.js": {"type": "string"}, "glob": {"type": "string"}, "moment": {"type": "string"}, "mongoose": {"type": "string"}, "ms": {"type": "string"}, "pretty-ms": {"type": "string"}, "random-number-csprng": {"type": "string"}, "reconlx": {"type": "string"}}, "required": ["@iamtraction/google-translate", "ascii-table", "bing-translate-api", "chalk", "cron", "discord.js", "glob", "moment", "mongoose", "ms", "pretty-ms", "random-number-csprng", "reconlx"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "niyuki-cli", "version" : "1.0.0", "description" : "", "main" : "src/index.js", "scripts" : {"start" : "node ."}, "keywords" : ["cli", "discord.js"], "author" : "Niyuki", "license" : "ISC", "dependencies" : {"@iamtraction/google-translate" : "^1.1.2", "ascii-table" : "^0.0.9", "bing-translate-api" : "^2.2.1", "chalk" : "^4.1.2", "cron" : "^1.8.2", "discord.js" : "^13.2.0", "glob" : "^7.1.7", "moment" : "^2.29.1", "mongoose" : "^6.0.2", "ms" : "^2.1.3", "pretty-ms" : "^7.0.1", "random-number-csprng" : "^1.0.2", "reconlx" : "^2.5.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@iamtraction/google-translate": {"type": "string"}, "ascii-table": {"type": "string"}, "bing-translate-api": {"type": "string"}, "chalk": {"type": "string"}, "cron": {"type": "string"}, "discord.js": {"type": "string"}, "glob": {"type": "string"}, "moment": {"type": "string"}, "mongoose": {"type": "string"}, "ms": {"type": "string"}, "pretty-ms": {"type": "string"}, "random-number-csprng": {"type": "string"}, "reconlx": {"type": "string"}}, "required": ["@iamtraction/google-translate", "ascii-table", "bing-translate-api", "chalk", "cron", "discord.js", "glob", "moment", "mongoose", "ms", "pretty-ms", "random-number-csprng", "reconlx"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "compression": {"type": "string"}, "connect": {"type": "string"}, "errorhandler": {"type": "string"}, "express": {"type": "string"}, "express-validator": {"type": "string"}, "morgan": {"type": "string"}, "urlencode": {"type": "string"}, "vash": {"type": "string"}, "winston": {"type": "string"}}, "required": ["body-parser", "compression", "connect", "errorhandler", "express", "express-validator", "morgan", "urlencode", "vash", "winston"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "nodelogger", "version" : "1.0.0", "description" : "Tool used for logging events", "main" : "server.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["winston", "node", "logging"], "author" : "Marco Moris", "license" : "MIT", "dependencies" : {"body-parser" : "^1.3.1", "compression" : "^1.0.7", "connect" : "^2.19.6", "errorhandler" : "^1.0.2", "express" : "^4.4.3", "express-validator" : "^2.3.0", "morgan" : "^1.1.1", "urlencode" : "^0.2.0", "vash" : "^0.7.12-1", "winston" : "^0.7.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "compression": {"type": "string"}, "connect": {"type": "string"}, "errorhandler": {"type": "string"}, "express": {"type": "string"}, "express-validator": {"type": "string"}, "morgan": {"type": "string"}, "urlencode": {"type": "string"}, "vash": {"type": "string"}, "winston": {"type": "string"}}, "required": ["body-parser", "compression", "connect", "errorhandler", "express", "express-validator", "morgan", "urlencode", "vash", "winston"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"description": {"type": "string"}, "duration": {"type": "integer"}, "published_at": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["description", "duration", "published_at", "recorded", "speakers", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "Apache Airflow is one of the most popular Data processing orchestration\nengines. After a long line of 1.10.x releases in December we wil be\nquickly approaching 2.0 release. The release is not backwards compatible\nand it will contain many improvement and changes. This talk will outline\nthe most important changes coming in Apache Airflow 2.0.\n\nJarek - as an Apache Airflow PMC member and one of the more active\nmembers of Apache Airflow community will talk about what is coming in\nApache Airflow 2.0. The Apache Airflow 2.0 is not backwards compatible\nand the community puts a lot of effort into cleaning up, refactoring and\nimproving the code and building functionaliities that are going to make\nlife easier for the users of this - one of the most popular -\norchestration engine for Data and Machine Learning processing jobs. Some\nof the most long-standing requests from the community, such as DAG\nserialisation to database and stateles webserver are only scratching the\nsurface of what's coming in Airflow 2.0.\n\nThis talk will be targeted mainly for Apache Airflow users who would\nlike to learn what can they do with the upcoming Airflow 2.0 as well as\nhow to migrate to Apache 2.0 i painlessly. It will also be a unique\nopportunity to provide feedback on early versions of Apache 2.0 that\nwill be available by then and discuss your proposals and questions with\nan Apache Airflow Commiter, so there will be plenty of time for\nquestions - during and after the talk.\n", "duration" : 1922, "published_at" : "2020-01-03T00:32:14.000Z", "recorded" : "2019-12-12", "speakers" : ["Jarek Potiuk"], "thumbnail_url" : "https://i.ytimg.com/vi/p6d3tr02exQ/hqdefault.jpg", "title" : "What's coming in Apache Airflow 2.0", "videos" : [{"type" : "youtube", "url" : "https://www.youtube.com/watch?v=p6d3tr02exQ"}]}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "duration": {"type": "integer"}, "published_at": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["description", "duration", "published_at", "recorded", "speakers", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "ilikewood:item/cika_fishing_rod", "textures" : {"layer0" : "ilikewood:item/fishing_rod/cast/cika"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "integer"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["AB", "AW", "SZ", "C", "SOL"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"AB" : ["ra", "qb", "qc", "rc", "rd", "re", "rf", "qf", "pg", "og", "ng", "mg", "lf", "kf", "oe", "od", "oc", "nb", "lb", "kb", "jb", "jc", "jd", "fc", "dp", "fq", "hq", "iq", "jr", "kr", "ls", "mr", "nr", "nq", "np", "oo", "po", "qo", "pp", "qm", "qq", "rq", "rr"], "AW" : ["dd", "df", "kc", "lc", "mc", "le", "mf", "nf", "of", "pf", "ne", "nd", "qe", "qd", "pd", "pc", "pb", "pa", "qa", "cn", "ip", "jq", "lq", "kq", "mq", "lr", "mo", "no", "on", "qp", "op", "oq", "or", "pq", "qr", "ps", "rs", "ms"], "SZ" : 19, "C" : "White to play", "SOL" : [["W", "ob", "", ""]]}
json_instruct
{"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "integer"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["AB", "AW", "SZ", "C", "SOL"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Solar.web": {"type": "object", "properties": {"domain": {"type": "string"}, "url": {"type": "string"}, "contact": {"type": "object", "properties": {"facebook": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["facebook", "twitter"]}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["domain", "url", "contact", "keywords"]}}, "required": ["Solar.web"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Solar.web" : {"domain" : "solarweb.com", "url" : "https://www.solarweb.com", "contact" : {"facebook" : "FroniusUSASolarEnergy", "twitter" : "FroniusUSASolar"}, "keywords" : ["iot"]}}
json_instruct
{"type": "object", "properties": {"Solar.web": {"type": "object", "properties": {"domain": {"type": "string"}, "url": {"type": "string"}, "contact": {"type": "object", "properties": {"facebook": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["facebook", "twitter"]}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["domain", "url", "contact", "keywords"]}}, "required": ["Solar.web"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"results" : [{"tech" : 4, "pts" : 3, "connections" : 26743, "capacity" : 3754050, "investments" : 3806650}, {"tech" : 7, "pts" : 7, "connections" : 244, "capacity" : 23920, "investments" : 261791}, {"tech" : 3, "pts" : 8724, "connections" : 253000, "capacity" : 50420772, "investments" : 277316685}, {"tech" : 5, "pts" : 1408, "connections" : 55339, "capacity" : 11037917, "investments" : 64716585}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2001", "provinceId" : "11", "regencyId" : "07", "districtId" : "18", "name" : "Mns Raya Paya"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"comment" : "", "definition" : "D-myo-Inositol 1,2-cyclic phosphate + H2O <=> Inositol 1-phosphate", "orthologs" : {}, "name" : "1D-myo-Inositol-1,2-cyclic-phosphate 2-inositolphosphohydrolase", "product_stoichiometries" : ["1"], "enzymes" : ["3.1.4.43"], "equation" : "C04299 + C00001 <=> C01177", "glycans" : false, "substrate_stoichiometries" : ["1", "1"], "rpairs" : {}, "entry_id" : "R03333", "pathways" : {}, "products" : ["C01177"], "substrates" : ["C04299", "C00001"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "metadata_version": {"type": "string"}, "generator": {"type": "string"}, "summary": {"type": "string"}, "version": {"type": "string"}, "extensions": {"type": "object", "properties": {"python.details": {"type": "object", "properties": {"project_urls": {"type": "object", "properties": {"Home": {"type": "string"}}, "required": ["Home"]}, "document_names": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}, "contacts": {"type": "array", "items": {"type": "object", "properties": {"role": {"type": "string"}, "email": {"type": "string"}, "name": {"type": "string"}}, "required": ["role", "email", "name"]}}}, "required": ["project_urls", "document_names", "contacts"]}}, "required": ["python.details"]}, "classifiers": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "metadata_version", "generator", "summary", "version", "extensions", "classifiers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "django-picklefield", "metadata_version" : "2.0", "generator" : "bdist_wheel (0.24.0)", "summary" : "Pickled object field for Django", "version" : "0.3.2", "extensions" : {"python.details" : {"project_urls" : {"Home" : "http://github.com/gintas/django-picklefield"}, "document_names" : {"description" : "DESCRIPTION.rst"}, "contacts" : [{"role" : "author", "email" : "gintautas@miliauskas.lt", "name" : "Gintautas Miliauskas"}]}}, "classifiers" : ["Development Status :: 5 - Production/Stable", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "metadata_version": {"type": "string"}, "generator": {"type": "string"}, "summary": {"type": "string"}, "version": {"type": "string"}, "extensions": {"type": "object", "properties": {"python.details": {"type": "object", "properties": {"project_urls": {"type": "object", "properties": {"Home": {"type": "string"}}, "required": ["Home"]}, "document_names": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}, "contacts": {"type": "array", "items": {"type": "object", "properties": {"role": {"type": "string"}, "email": {"type": "string"}, "name": {"type": "string"}}, "required": ["role", "email", "name"]}}}, "required": ["project_urls", "document_names", "contacts"]}}, "required": ["python.details"]}, "classifiers": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "metadata_version", "generator", "summary", "version", "extensions", "classifiers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["Arc_en_Cercles", "actionhero", "alinex-handlebars", "alinex-mailman", "altair-server", "apostrophe", "apostrophe-site", "app-localization", "arcabouco-js", "aweforms", "bagoftext", "bayon-core", "bedrock-i18n", "blogrh", "bm-email-templatizer", "bs-web-core", "butter", "butter-component-builder", "callsigns", "campsi-base-components", "cap.js", "capjs_framework", "catfish.js", "chang", "chaunli", "chopjs", "clout-i18n", "cody", "coral.js", "coraljs", "cortex-search-server", "ctartist621-sails", "digitopia-admin", "easy_time", "easyexpress", "elections", "eloquence", "ensemblejs", "ezseed", "form-validate", "generator-angular-nmi", "generator-direct", "generator-reactivity", "generator-webbooter", "gentle", "gibson", "gitbook-extra", "gitshu", "glazed", "grailed", "graojs", "grunt-gettext-static-build", "grunt-sqsp", "grunt-template-runner", "grunt-template-runner-custom", "grunt-we-ng-tpl", "grunt-xliff", "gulp-i18n-swig", "gulp-task-metalsmith", "hapi-i18n", "hapi-locale-i18n", "hbook", "health", "hex-api-server", "hublin", "i18n-node-hapi", "i18n-stream", "i18n-xlocale", "inkrato", "irisjs", "jade-i18n-cli", "jade-i18n.js", "jmailer", "josepoo", "karma-ng-i18n-preprocessor", "keystone-greeter", "laravel-queue", "light-framework", "linear", "local-media-server", "menturu_modules_worker", "metalsmith-i18n", "mysails", "n-gallery", "nell", "node-code-error", "node-form-validate", "nomade-core", "openparty", "origin001-api", "peppermint", "persona", "pimatic", "piratesbey", "ponyshow", "ponyshow-cli", "positron", "quizzer", "r0ten-sails", "riddles", "sails-angular2-isomorphic", "sails-core", "sails-gong", "sails-sequelize", "sails-with_extended_static", "siri", "siteboot", "static-i18n-jade-brunch", "staticbuild", "stellar-fw", "sting-builder", "stukko", "sushi-tool", "td.js", "themible", "toa-i18n", "twee-extensions", "twee-i18n-extension", "uirecorder", "venus", "volunteerily-web-core", "vulpejs", "wallaby-blog", "we-core", "web-twins"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d573-152", "text" : "Reverend A. J. Peterman, S.J.\nProfessor of Speech and Sacred Eloquence\nWest Baden College\nWest Baden Springs, Indiana\nDear Reverend Petermans\nIn answer to your letter of November 24, we would like to give you infor\u00ac\nmation regarding membership in the National Association of Educational\nBroadcasters.\nThe NAEB has categories of membership as follows:\nActive - Educational institutions, public service organizations, etc.\nowning and operating their own radio and/or TV stations.\nAssociate - Institutions (as above) not owning stations, but operating\nproduction centers and regularly producing programs over\na commercial outlet.\nAffiliate - Organizations interested in the general furtherance 0f\neducational broadcasting.\nIndividual - All persons interested in or seeking to promote educa\u00ac\ntional, cultural and public service broadcasting.\nFor Active members with radio and/or TV stations, dues in the Association\nare based on rated transmitter power as follows:\nRadio - AM\nClass A\n(5kv and over)\n$100.00\nClass B\n(1 to 4*9kw)\n50.00\nClass C\n(less than lkw)\n25.00\nRadio - FM\nClass A\n(10 kw and over)\n$100.00\nClass B\n(1 to 9.9 kw)\n50.00\nClass C\n(less than 1 kw)\n25.00\nTelevision\nClass A\n(5 kw and over)\n$150.00\nClass B\n(under 5 kw)\n75.00\nCombinations (multiple transmitters)\nAmr member operating more than one station (radio and/or\nTV) shall pay dues equal to the sum of the dues for each\nof the stations, but in no case over $200.00"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Token FUQs", "symbol" : "FUQsW", "decimals" : 6, "address" : "FUQsWQGWMPAGT8BsZQyzGZ7gfkM98agLicVXRkUFtNRD", "chainId" : 103}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-778x-386c-73gw", "modified" : "2022-01-08T00:00:41Z", "published" : "2021-12-30T00:00:23Z", "aliases" : ["CVE-2021-35035"], "details" : "A cleartext storage of sensitive information vulnerability in the Zyxel NBG6604 firmware could allow a remote, authenticated attacker to obtain sensitive information from the configuration file.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2021-35035"}, {"type" : "WEB", "url" : "https://www.zyxel.com/support/Zyxel_security_advisory_for_sensitive_information_vulnerabilities_of_NBG6604_home_router.shtml"}], "database_specific" : {"cwe_ids" : ["CWE-312"], "severity" : "MODERATE", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-96.640513, 40.754436], [-96.638848, 40.755247], [-96.606104, 40.755248], [-96.606228, 40.73644], [-96.60655, 40.735992], [-96.640513, 40.754436]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 37824}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"@context": {"type": "string"}, "@id": {"type": "string"}, "@type": {"type": "string"}, "associatedProcessor": {"type": "string"}, "comment": {"type": "string"}, "defaultModuleFilenameExtension": {"type": "string"}, "documentation": {"type": "string"}, "isActive": {"type": "boolean"}, "partOfPackage": {"type": "string"}, "label": {"type": "string"}, "learnMore": {"type": "string"}, "version": {"type": "integer"}}, "required": ["@context", "@id", "@type", "associatedProcessor", "comment", "defaultModuleFilenameExtension", "documentation", "isActive", "partOfPackage", "label", "learnMore", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"@context" : "context/core", "@id" : "core:component/transformer", "@type" : "core:class/Component", "associatedProcessor" : "core:computor/transformer", "comment" : "Responsible for running data transformations.", "defaultModuleFilenameExtension" : "jsonata", "documentation" : "reference:scale/core/component/Transformer", "isActive" : true, "partOfPackage" : "reference:scale/core", "label" : "Transformer", "learnMore" : "learn:scale/core/component/Transformer", "version" : 0}
json_instruct
{"type": "object", "properties": {"@context": {"type": "string"}, "@id": {"type": "string"}, "@type": {"type": "string"}, "associatedProcessor": {"type": "string"}, "comment": {"type": "string"}, "defaultModuleFilenameExtension": {"type": "string"}, "documentation": {"type": "string"}, "isActive": {"type": "boolean"}, "partOfPackage": {"type": "string"}, "label": {"type": "string"}, "learnMore": {"type": "string"}, "version": {"type": "integer"}}, "required": ["@context", "@id", "@type", "associatedProcessor", "comment", "defaultModuleFilenameExtension", "documentation", "isActive", "partOfPackage", "label", "learnMore", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["deploytool", "navy-admiral"]
json_instruct
{"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": {"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" : "Shallotte", "state_name" : "North Carolina", "state_abbrv" : "NC", "lat" : "33.9637", "long" : "-78.4064"}
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#"}