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...
{"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_...
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": "objec...
{"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"...
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": "str...
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"},...
{"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"}, "ti...
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": "str...
{"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": "ob...
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": ...
{"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": ...
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...
{"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 ...
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...
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", "rul...
{"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...
{"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":...
{"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"}, "...
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":...
{"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...
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"]}, "an...
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/d...
{"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" : "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...
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": "numbe...
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"...
{"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" : ...
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"}, ...
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": "s...
[{"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...
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"]}, ...
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"}, "p...
{"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_comp...
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": {"ty...
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"}, "propertie...
{"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", "properti...
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": "str...
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":...
{"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"}...
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"]}},...
[{"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", "normalizedVertice...
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"]},...
[{"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}, {"divisionCod...
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\uc...
{"\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...
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.f83ce6f...
{"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....
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": {"typ...
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" : ["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/draf...
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...
{"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": ["adenabl...
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", "text...
{"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/schem...
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": ["$schem...
{"$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": "...
{"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" : "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, "strong...
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"], "$sc...
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": {}}}, ...
{"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, "me...
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": ...
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/sc...
[{"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"}, {"s...
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_b...
{"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...
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...
{"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.063...
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": "ob...
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": ...
{"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 produ...
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"}, "...
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": ["des...
{"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/...
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": "obje...
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"}, ...
{"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....
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"...
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...
{"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", "ite...
{"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 therm...
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"}}, "r...
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"}, "ty...
{"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" :...
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", "propert...
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": {"...
{"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", "jq...
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": {"...
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": {"...
{"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 li...
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": {...
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...
{"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/sc...
[{"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", ...
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": ...
{"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...
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" : "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], ...
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": "numbe...
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",...
{"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" : "Ey...
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": "stri...
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": {"ty...
{"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')[copyInd...
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"]}, ...
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": {"typ...
{"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=105a70d...
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"}},...
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"...
{"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 fre...
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...
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...
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"...
{"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...
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": "in...
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": [...
{"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/Ba...
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": "stri...
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/sche...
{"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...
{"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", "n...
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": "st...
[{"request" : {"body" : "{\"activities\":[{\"verb\":\"like\",\"object\":\"Elixir\",\"foreign_id\":\"tony:elixir\",\"custom_field\":\"custom_value\",\"actor\":\"Tony\"}]}", "headers" : {"Authorization" : "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY3Rpb24iOiIqIiwiYXVkIjoiSm9rZW4iLCJleHAiOjE1OTU0MDg5NDgsImZlZWRfaWQiOiIqIiw...
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...
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", "...
{"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 96c...
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/s...
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": "nu...
{"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: 0xc290137095b...
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", "properti...
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"...
{"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...
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": "numbe...
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": ["l...
{"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" :...
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": "st...
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": "s...
{"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" : {...
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"}, "c...
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/dr...
{"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"}, "permissio...
{"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...
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": {"ty...
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", "usingCompon...
{"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", ...
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"...
{"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" : "...
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"}, "singlepa...
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"...
{"clientID" : "l239o7PRag8ehO2w6odzgA==", "serverToken" : "1@7STOWLpfxRqjsFOKYr6u4sbPLaQPwufs0KmaQp42xZMdcm5Bwby/O75rtRS/u3Hj1piga/ts1wOr5w==", "clientToken" : "DZmEsRVSLWCY6loFO2o7fPtqzDw5kAZOBbofjyMxbE0=", "encKey" : "oFeV/0s4ml1cjYqDW6cYY2AE6NZx7khIURLO83sUOk4=", "macKey" : "EBF5a427t3UqNGOh3+/zVOCZMg4EBjeWpZTl+dLie...
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/sch...
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": "s...
{"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 "...
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": ...
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...
{"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"}}, "require...
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", ...
{"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....
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" : "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_reques...
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...
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"]}, "keyword...
{"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",...
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"}}, "auth...
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...
{"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", "...
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...
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": "stri...
{"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 imp...
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": "arra...
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...
{"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", "it...
{"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", "n...
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"]...
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"}}, "re...
{"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", "item...
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"}, "inv...
[{"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"...
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", "pt...
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", "district...
{"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_stoichiometri...
[{"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, ...
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": "arr...
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": {"pytho...
{"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" : "DESCRI...
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"...
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...
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 Educ...
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...
{"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"}, "seve...
{"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 obta...
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": "a...
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", "...
{"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": "numbe...
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"}, ...
{"@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/Transfor...
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"}, ...
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...
{"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#"}