input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "7102171008", "district_id" : "7102171", "name" : "RUMENGKOR"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "module": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"typ...
{"name" : "lemholder", "version" : "1.0.0", "description" : "A template for kick starting a Cloudflare Workers + Emscripten + Wasm project", "module" : "./dist/index.mjs", "scripts" : {"build" : "rollup -c", "test" : "echo \"Error: no test specified\" && exit 1", "format" : "prettier --write '**/*.{js,css,json,md}'"}, ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "module": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "format": {"type": "string"}}, "required": ["build", "test",...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "link": {"type": "string"}, "club": {"type": "string"}, "class_classic": {"type": "string"}, "class_dnd": {"type": "string"}, "A": {"type": "string"}, "B": {"type": "string"...
{"id" : "04234", "name" : "\u0420\u043e\u0436\u043d\u0438\u043a\u043e\u0432\u0441\u043a\u0430\u044f \u041c\u0430\u0440\u0438\u044f \u0412\u0441\u0435\u0432\u043e\u043b\u043e\u0434\u043e\u0432\u043d\u0430 ", "link" : "pages/04234.html", "club" : "\u0414\u0432\u0438\u0436\u0435\u043d\u0438\u0435,\u0410\u043b\u044c\u0442\...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "link": {"type": "string"}, "club": {"type": "string"}, "class_classic": {"type": "string"}, "class_dnd": {"type": "string"}, "A": {"type": "string"}, "B": {"type": "string"}, "C": {"type": "string"}, "D": {"type": "string"}, "E": {...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"ty...
{"userId" : 72684, "cartId" : "28f8a199-7d1d-4d25-be20-f549f69bede3", "preferredProducts" : [2065, 3008, 1962, 3646, 818, 2490], "productReviews" : [{"productId" : 4668, "reviewText" : "My neighbor Forest has one of these. She works as a gardener and she says it looks nude.", "reviewDate" : "2019-12-27T10:31:57.2042967...
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "VatNumber": {"type": "string"}, "CountryCode": {"type": "string"}, "Iban": {"type": "array", "items": {"type": "string"}}, "CurrencyCode": {"type": "string...
[{"Name" : "KPN", "VatNumber" : "", "CountryCode" : "NL", "Iban" : ["NL45RABO6143537119"], "CurrencyCode" : "EUR", "VendorCustomerCode" : "", "DefaultLedgerCode" : "", "DefaultVatCode" : "", "DefaultVatScenarioCode" : "", "DefaultPaymentTermCode" : "", "Blocked" : false, "Id" : "0611e62c-ea19-4ec4-924b-acd200bfe25d", "...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "VatNumber": {"type": "string"}, "CountryCode": {"type": "string"}, "Iban": {"type": "array", "items": {"type": "string"}}, "CurrencyCode": {"type": "string"}, "VendorCustomerCode": {"type": "string"}, "DefaultLedgerCode": {"type":...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "propert...
{"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"condor9165" : {"title" : "Condor9165", "channel_id" : 143709907, "link" : "htt...
json_instruct
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"condor9165": {"type": "object", "properties": {"title": {"typ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required"...
{"name" : "Chrome Extension Local Google Auth Example", "version" : "0.1", "description" : "OAuth 2.0 for Client-side Web Applications", "icons" : {"16" : "icons/icon16.png", "48" : "icons/icon48.png", "128" : "icons/icon128.png"}, "default_locale" : "en", "web_accessible_resources" : ["src/auth.js"], "browser_action" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]}, "default_locale": {"type": "string"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"900339701": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900339702": {"type": "object", "properties...
{"900339701" : {"nama" : "TPS 01", "dapil" : [3307, 13310, 2330405]}, "900339702" : {"nama" : "TPS 02", "dapil" : [3307, 13310, 2330405]}, "900339703" : {"nama" : "TPS 03", "dapil" : [3307, 13310, 2330405]}, "900339704" : {"nama" : "TPS 04", "dapil" : [3307, 13310, 2330405]}, "900339705" : {"nama" : "TPS 05", "dapil" :...
json_instruct
{"type": "object", "properties": {"900339701": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900339702": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cSpell.words" : ["Fira"]}
json_instruct
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.words"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"development": {"type": "object", "properties": {"mongoHost": {"type": "string"}, "mongoPort": {"type": "string"}, "mongoDB": {"type": "string"}, "socketHost": {"type": "string"}, "socketPort": {"type": "string"}}, "required...
{"development" : {"mongoHost" : "127.0.0.1", "mongoPort" : "27017", "mongoDB" : "qoap-db", "socketHost" : "10.34.8.56", "socketPort" : "3000"}, "production" : {"mongoHost" : "127.0.0.1", "mongoPort" : "27017", "mongoDB" : "qoap-db", "socketHost" : "127.0.0.1", "socketPort" : "3000"}}
json_instruct
{"type": "object", "properties": {"development": {"type": "object", "properties": {"mongoHost": {"type": "string"}, "mongoPort": {"type": "string"}, "mongoDB": {"type": "string"}, "socketHost": {"type": "string"}, "socketPort": {"type": "string"}}, "required": ["mongoHost", "mongoPort", "mongoDB", "socketHost", "socket...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"...
{"id" : "353182719", "name" : "Stumpacre", "nodes" : [{"type" : "node", "id" : 3589487899, "lat" : 52.6005138, "lon" : -0.2859476}, {"type" : "node", "id" : 3589487900, "lat" : 52.6004986, "lon" : -0.2858285}], "volunteer_postcode" : "PE8 6QF", "closest_distance" : 16591}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunte...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "tablet", "long" : "<i>Meaning:</i> a \"tablet\" for writing (as \"bare\"); by analogy, a \"mirror\" (as a \"plate\").<br/><i>Usage:</i> glass, roll.<br/><i>Source:</i> or \"\u05d2\u05bc\u05b4\u05dc\u05b0\u05d9\u05d5\u05b9\u05df\"; from \"H1540\";"}
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "RTV Albrandswaard", "src" : "http://stream.rodney.it/rtvalbrandswaard?t=1526281757"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"val_acc": {"type": "array", "items": {"type": "number"}}, "val_loss": {"type": "array", "items": {"type": "number"}}, "loss": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type...
{"val_acc" : [0.8805, 0.9056, 0.9144, 0.9211, 0.928], "val_loss" : [0.5012781493663788, 0.35837216341495515, 0.3100268220901489, 0.2814645217418671, 0.26378552656173704], "loss" : [1.0415944384574891, 0.4356674352010091, 0.3488711521148682, 0.3090292826334635, 0.2833513373374939], "acc" : [0.7767166666348775, 0.8866833...
json_instruct
{"type": "object", "properties": {"val_acc": {"type": "array", "items": {"type": "number"}}, "val_loss": {"type": "array", "items": {"type": "number"}}, "loss": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}}, "required": ["val_acc", "val_loss", "loss", "acc"], "$s...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "arch": {"type": "string"}}, "required": ["name", "arch"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "A5X", "arch" : "armv7"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "arch": {"type": "string"}}, "required": ["name", "arch"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wo...
{"id" : 404357489, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "624d11fe45e2d1e2c06349bb864adefa", "wof:id" : 404357489, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [7.46778, 47.51944, 7.46778, 47.51944], "geometry" : {"coordinates"...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "n...
{"artist_id" : "ARI7RGN1187FB40849", "artist_latitude" : null, "artist_location" : "Atlanta, Georgia", "artist_longitude" : null, "artist_name" : "India.Arie", "duration" : 243.33016, "num_songs" : 1, "song_id" : "SOSPVCG12A8C14560E", "title" : "Long Goodbye", "year" : 2009}
json_instruct
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"resistors": {"type": "array", "items": {"type": "object", "properties": {"polygon": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", ...
{"resistors" : [{"polygon" : [{"x" : 213, "y" : 460}, {"x" : 382, "y" : 453}, {"x" : 383, "y" : 512}, {"x" : 209, "y" : 518}], "colors" : ["red", "red", "orange", "none", "gold", "none"]}]}
json_instruct
{"type": "object", "properties": {"resistors": {"type": "array", "items": {"type": "object", "properties": {"polygon": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "colors": {"type": "array", "items": {"type": "string"}}}, "r...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}...
{"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["170142"], "\uc81c\uc548\uc77c\uc790" : ["2004-07-05"], "\uc81c\uc548\uc790" : ["\uc758\uc7a5"], "\ubb38\uc11c" : ["\uc758\uc548\uc6d0\ubb38"], "\uc81c\uc548\ud68c\uae30" : ["\uc81c17\ub300(2004~2008)\uc81c248\ud68c"]}, "\ubcf8\ud68c\uc758 \uc2ec\...
json_instruct
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "s...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array"...
{"directions" : ["Preheat oven to 350 degrees F (175 degrees C).", "In a large bowl, stir together the flour, oatmeal, baking soda, baking powder, and salt.", "In another large bowl, beat the sugar with the shortening until smooth and creamy; mix in beaten eggs, molasses, and vanilla. Gradually mix in the dry ingredien...
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...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"active": {"type": "boolean"}, "name": {"type": "string"}, "slug": {"type": "string"}, "docsSlug": {"type": "string"}, "versions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "branch...
{"active" : true, "name" : "PHPCR ODM", "slug" : "phpcr-odm", "docsSlug" : "doctrine-phpcr-odm", "versions" : [{"name" : "master", "branchName" : "master", "slug" : "latest", "aliases" : ["current", "stable"]}]}
json_instruct
{"type": "object", "properties": {"active": {"type": "boolean"}, "name": {"type": "string"}, "slug": {"type": "string"}, "docsSlug": {"type": "string"}, "versions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "branchName": {"type": "string"}, "slug": {"type": "string"}, "ali...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"tha-ap226:0.1": {"type": "string"}, "tha-ap226:0.2": {"type": "string"}, "tha-ap226:0.3": {"type": "string"}, "tha-ap226:1.1": {"type": "string"}, "tha-ap226:1.2": {"type": "string"}, "tha-ap226:1.3": {"type": "string"}, "t...
{"tha-ap226:0.1" : "<article id='tha-ap226'><header><ul><li class='division'>{}</li>", "tha-ap226:0.2" : "<li>{}</li></ul>", "tha-ap226:0.3" : "<h1>{}</h1></header>", "tha-ap226:1.1" : "<blockquote class='gatha'><p>{}<br>", "tha-ap226:1.2" : "{}<br>", "tha-ap226:1.3" : "{}<br>", "tha-ap226:1.4" : "{}</p>", "tha-ap226:2...
json_instruct
{"type": "object", "properties": {"tha-ap226:0.1": {"type": "string"}, "tha-ap226:0.2": {"type": "string"}, "tha-ap226:0.3": {"type": "string"}, "tha-ap226:1.1": {"type": "string"}, "tha-ap226:1.2": {"type": "string"}, "tha-ap226:1.3": {"type": "string"}, "tha-ap226:1.4": {"type": "string"}, "tha-ap226:2.1": {"type": "...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"p" : "fa7329e3-2a24-40d6-b9f1-6fcf4addd7f1", "d" : 132}, {"p" : "967b2400-784b-4a95-a9d6-dacc16f78c22", "d" : 523}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {}}}, "required": ["authors"]}, "epsg-desc": {"type": "string"}, "epsg-i18n-welcome": {"type": "string"}, "epsg-test": {"type": "string"}, "ep...
{"@metadata" : {"authors" : []}, "epsg-desc" : "Conversion of geographical coordinates to various systems, useing epsg.io.", "epsg-i18n-welcome" : "Welcome to the localization file of the EPSG extension.", "epsg-test" : "Test EPSG", "epsg-test-intro" : "Welcome to the \"Test\" special page of the EPSG extension.", "eps...
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {}}}, "required": ["authors"]}, "epsg-desc": {"type": "string"}, "epsg-i18n-welcome": {"type": "string"}, "epsg-test": {"type": "string"}, "epsg-test-intro": {"type": "string"}, "epsgtest": {"type": "s...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"siteId": {"type": "string"}}, "required": ["siteId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"siteId" : "db493edc-99c0-4527-b50e-338e922b4e76"}
json_instruct
{"type": "object", "properties": {"siteId": {"type": "string"}}, "required": ["siteId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"version": {"type": "integer"}, "source": {"type": "string"}, "authorIds": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "title": {"type": "string"}, "link": {"type": "string"}, "tags...
{"version" : 1, "source" : "other", "authorIds" : ["dumazy"], "author" : "Fr\u00e9 Dumazy", "title" : "Firebase for Flutter in DartPad", "link" : "https://dev.to/dumazy/firebase-for-flutter-in-dartpad-5gi0", "tags" : ["firebase", "samples"]}
json_instruct
{"type": "object", "properties": {"version": {"type": "integer"}, "source": {"type": "string"}, "authorIds": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "title": {"type": "string"}, "link": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["versi...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"cpuInfo": {"type": "string"}, "lang": {"type": "string"}, "os": {"type": "string"}, "compiler": {"type": "string"}, "compilerVersion": {"type": "string"}, "test": {"type": "string"}, "code": {"type": "string"}, "input": {"type...
{"cpuInfo" : "[x86_64][2 cores] Intel(R) Xeon(R) Platinum 8370C CPU @ 2.80GHz", "lang" : "v", "os" : "linux", "compiler" : "v+gc+clang", "compilerVersion" : "latest", "test" : "pidigits", "code" : "1.v", "input" : "4000", "timeMS" : 1324.4599, "timeStdDevMS" : 45.613606668624875, "memBytes" : 2912256, "cpuTimeMS" : 159...
json_instruct
{"type": "object", "properties": {"cpuInfo": {"type": "string"}, "lang": {"type": "string"}, "os": {"type": "string"}, "compiler": {"type": "string"}, "compilerVersion": {"type": "string"}, "test": {"type": "string"}, "code": {"type": "string"}, "input": {"type": "string"}, "timeMS": {"type": "number"}, "timeStdDevMS":...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"content": {"type": "array", "items": {"type": "string"}}, "codeSectionDepth": {"type": "integer"}}, "required": ["content", "codeSectionDepth"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"content" : ["index.ts", "src/caching-proxy.ts"], "codeSectionDepth" : 4}
json_instruct
{"type": "object", "properties": {"content": {"type": "array", "items": {"type": "string"}}, "codeSectionDepth": {"type": "integer"}}, "required": ["content", "codeSectionDepth"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "source": {"type": "string"}, "title": {"type": "string"}, "shortDescription": {"type": "string"}, "longDescription": {"type": "array", "items": {"type": "string"}}, "products": {"type": "...
{"name" : "pnp-sp-dev-spfx-extensions-react-application-breadcrumb", "source" : "pnp", "title" : "Breadcrumb application customizer", "shortDescription" : "This sample shows how to create a breadcrumb element and append it to your site via the SharePoint Framework Application Customizer extension.", "longDescription" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "source": {"type": "string"}, "title": {"type": "string"}, "shortDescription": {"type": "string"}, "longDescription": {"type": "array", "items": {"type": "string"}}, "products": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "array", "i...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon"...
{"id" : "92404977", "name" : "Ormond Place", "nodes" : [{"type" : "node", "id" : 1072654128, "lat" : 52.3551531, "lon" : -0.7039637}, {"type" : "node", "id" : 1072654180, "lat" : 52.3549631, "lon" : -0.7030394}, {"type" : "node", "id" : 1072654469, "lat" : 52.3549106, "lon" : -0.703682}, {"type" : "node", "id" : 107265...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunte...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "integer"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"value" : [4183212132, 4132741111, 4131835132, 4182833161, 4171156124, 4111431142, 4163732173, 4153342152]}
json_instruct
{"type": "object", "properties": {"value": {"type": "array", "items": {"type": "integer"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "it...
{"features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [13.534523871182266, 52.654810255840076]}, "properties" : {"TIMESTAMP UTC" : "2020-08-06T10:16:14", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [13.07802140812808, 52.4345047...
json_instruct
{"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properti...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "...
{"text" : {"0" : {"m1" : "\u0627\u0632 \u0639\u0634\u0642 \u0635\u0644\u06cc\u0628 \u0645\u0648\u06cc \u0631\u0648\u0645\u06cc \u0631\u0648\u06cc\u06cc", "m2" : "\u0627\u0628\u062e\u0627\u0632 \u0646\u0634\u06cc\u0646 \u06af\u0634\u062a\u0645 \u0648 \u06af\u0631\u062c\u06cc \u06a9\u0648\u06cc\u06cc"}, "1" : {"m1" : "\u...
json_instruct
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "requ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"x_min": {"type": "array", "items": {"type": "number"}}, "x_scale": {"type": "array", "items": {"type": "number"}}}, "required": ["x_min", "x_scale"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"x_min" : [1.5221531139987714], "x_scale" : [0.055238709690217117]}
json_instruct
{"type": "object", "properties": {"x_min": {"type": "array", "items": {"type": "number"}}, "x_scale": {"type": "array", "items": {"type": "number"}}}, "required": ["x_min", "x_scale"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "...
{"id" : 85921651, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "4a89334f45527c5125d9c8f69de2b40b", "wof:id" : 85921651, "wof:repo" : "whosonfirst-data-admin-tw"}, "bbox" : [120.310836, 22.6192, 120.310836, 22.6192], "geometry" : {"coordinate...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "Country": {"type": "string"}, "Language": {"type": "array", "items": {"type": "string"}}, "poster_image_url": {"type": "string"}, "Bio": {"type": "string"}, "rumtime": {"type": "integer"...
{"name" : "Baahubali 2: The Conclusion", "Country" : "India", "Language" : ["Telugu", "Tamil", "Hindi", "Malayalam"], "poster_image_url" : "https://m.media-amazon.com/images/M/MV5BOGNlNmRkMjctNDgxMC00NzFhLWIzY2YtZDk3ZDE0NWZhZDBlXkEyXkFqcGdeQXVyODIwMDI1NjM@._V1_UX182_CR0,0,182,268_AL__QL50.jpg", "Bio" : "\n ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "Country": {"type": "string"}, "Language": {"type": "array", "items": {"type": "string"}}, "poster_image_url": {"type": "string"}, "Bio": {"type": "string"}, "rumtime": {"type": "integer"}, "genre": {"type": "array", "items": {"type": "string"}}}, "required"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "p...
{"name" : "react-style-mods", "version" : "2.0.4", "description" : "React library for creating style modifiers props", "homepage" : "https://github.com/Resetand/react-style-mods", "main" : "dist/index.js", "types" : "dist/index.d.ts", "scripts" : {"build" : "tsc", "test" : "jest", "prepare" : "npm run test && npm run b...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "...
Generate a valid JSON object that conforms to the following schema: {"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"}...
{"schema_version" : "1.2.0", "id" : "GHSA-f4hm-g3r7-g3cc", "modified" : "2022-05-05T00:29:09Z", "published" : "2022-05-05T00:29:09Z", "aliases" : ["CVE-2013-1793"], "details" : "openstack-utils openstack-db has insecure password creation", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : ...
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...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"file"...
{"contract" : "0x0f6eeb1e5f74c406d12894489fcebeb042ad14f5", "tool" : "solhint", "start" : 1563229656.7401493, "end" : 1563229663.767163, "duration" : 7.027013778686523, "analysis" : [{"file" : "/unique_contracts/0x0f6eeb1e5f74c406d12894489fcebeb042ad14f5.sol", "line" : "126", "column" : "6", "message" : "Indentation is...
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"file": {"type": "string"}, "line": {"type": "string"}, "column":...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"expires_at": {"type": "integer"}, "file_url": {"type": "string"}}, "required": ["expires_at", "file_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"expires_at" : 1484593854, "file_url" : "https://www.example.com/template/files/url/here"}
json_instruct
{"type": "object", "properties": {"expires_at": {"type": "integer"}, "file_url": {"type": "string"}}, "required": ["expires_at", "file_url"], "$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"}, "manifest_version": {"type": "integer"}, "description": {"type": "string"}, "background": {"type": "object", "properties": {"scripts": {"type": "array...
{"name" : "Troy Custom Plugin", "version" : "2.0.0", "manifest_version" : 2, "description" : "troy\u79c1\u4eba\u5b9a\u5236Chrome\u63d2\u4ef6", "background" : {"scripts" : ["background.js"]}, "page_action" : {"default_icon" : {"19" : "icon_19.png", "38" : "icon_38.png"}}, "content_scripts" : [{"matches" : ["*://*.baidu....
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "description": {"type": "string"}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "page_action": {"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"_wrong_field_name": {"type": "boolean"}, "bidprice": {"type": "number"}, "poolUpdatePeriod": {"type": "integer"}, "awsCredentials": {"type": "object", "properties": {"awsAccessKeyId": {"type": "string"}, "awsSecret...
{"_wrong_field_name" : true, "bidprice" : 1.0, "poolUpdatePeriod" : 10, "awsCredentials" : {"awsAccessKeyId" : "aaa", "awsSecretAccessKey" : "key", "region" : "us-east-1"}}
json_instruct
{"type": "object", "properties": {"_wrong_field_name": {"type": "boolean"}, "bidprice": {"type": "number"}, "poolUpdatePeriod": {"type": "integer"}, "awsCredentials": {"type": "object", "properties": {"awsAccessKeyId": {"type": "string"}, "awsSecretAccessKey": {"type": "string"}, "region": {"type": "string"}}, "require...
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" : "email-info", "version" : "0.0.1", "description" : "Parse email addresses and get information about the used email provider.", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git@github.com:manuelbieh/email-info.git"}, "keywor...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"copyright": {"type": "string"}, "format": {"type": "string"}}, "required": ["copyright", "format"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"copyright" : "Paul Miller (http://paulmillr.com/)", "format" : "txt"}
json_instruct
{"type": "object", "properties": {"copyright": {"type": "string"}, "format": {"type": "string"}}, "required": ["copyright", "format"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"...
{"t" : "misangayangayan", "h" : [{"d" : [{"f" : "\u5efa\u9020\u6dbc\u4ead\u3002", "e" : ["\ufff9`Mi~`sangayangayan~ `kami~ `i~ `tatihi~`a~`n~ `no~ `lalan~.\ufffa\ufffb\u6211\u5011\u8981\u5728\u8def\u908a\u5efa\u6dbc\u4ead\u3002"]}]}], "stem" : "ngayangay"}
json_instruct
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "s...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "Us...
{"IsRecentlyVerified" : false, "ID" : 90210, "UUID" : "94172BF4-6329-4720-8156-627DA58E5AD3", "DataProviderID" : 1, "OperatorID" : 23, "OperatorsReference" : "30398", "UsageTypeID" : 4, "AddressInfo" : {"ID" : 90556, "Title" : "Sal de Mar", "AddressLine1" : "Calle Jose Maria Morelos 1360 Americana", "Town" : "Guadalaja...
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "p...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, ...
{"n_dim" : 5, "n_trials" : 80, "objective" : "markowitz_skew_on_cube", "white" : "pymoo_pattern", "black" : "platypus_moead", "traceback" : ["passing", "Black took 82 function evals when instructed to use 82"], "best_val" : [-0.06711964016570768, 0.24220824020826717], "best_x" : [[0.0, 0.0625, 0.12754691539156315, 0.60...
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"interface/itemdescriptions/chakram.itemdescription": {"type": "array", "items": {"type": "string"}}, "...
[{"DeniedAlternatives" : [], "Files" : {"interface/itemdescriptions/chakram.itemdescription" : ["/distanceTitleLabel/value"], "interface/tooltips/chakram.tooltip" : ["/distanceTitleLabel/value"]}, "Texts" : {"Chs" : "\u6700\u5927\u8ddd\u79bb\uff1a", "Eng" : "Max Distance:"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"interface/itemdescriptions/chakram.itemdescription": {"type": "array", "items": {"type": "string"}}, "interface/tooltips/chakram.tooltip": {"type": "array", "ite...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "ob...
{"name" : "root/sample", "authors" : [{"name" : "Cesar Augusto", "email" : "cezzaar@gmail.com"}], "require" : {"twig/twig" : "^1.28", "symfony/twig-bridge" : "^3.2", "symfony/asset" : "^3.2", "silex/silex" : "~2.0", "doctrine/orm" : "^2.5", "dflydev/doctrine-orm-service-provider" : "^2.0", "doctrine/data-fixtures" : "*...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"twig/twig": {"type": "string"}, "symfony/twig-bri...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "workspaces": {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}}, "required": ["packages"]}, "author": {"t...
{"name" : "root", "private" : true, "workspaces" : {"packages" : ["packages/*", "packages/presets/*", "packages/templates/*"]}, "author" : {"name" : "Romullo", "email" : "developermarsh@gmail.com", "url" : "https://hiukky.com"}, "bugs" : {"url" : "https://github.com/hiukky/minit/issues"}, "homepage" : "https://github.c...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "workspaces": {"type": "object", "properties": {"packages": {"type": "array", "items": {"type": "string"}}}, "required": ["packages"]}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "st...
{"name" : "CATAFLAM ORAL DROPS", "harga" : " Rp. 41.382/ kemasan", "golongan" : "http://medicastore.com/image_banner/obat_keras_dan_psikotropika.gif", "kandungan" : "Diclofenac / Diklofenak resinat.", "indikasi" : "Pengobatan artritis rematoid (radang sendi) anak-anak.", "kontraindikasi" : "Luka lambung dan usus aktif...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array",...
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [728.599, 208.004, 1, 751.882, 234.065, 1, 732.872, 236.046, 1, 722.169, 270.459, 1, 725.467, 297.169, 1, 775.65, 230.774, 1, 809.964, 269.28, 1, 795.132, 281.982, 1, 736.659, 312.631, 1, 725.801, 367.075, 1, 715.268, 432.884, 1, 766.287, 310.337, 1, 783.509, 368.408...
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/outpost/terramart/terramart.object": {"type": "array", "items": {"type": "string"...
[{"DeniedAlternatives" : [], "Files" : {"objects/outpost/terramart/terramart.object" : ["/slimepersonDescription"]}, "Texts" : {"Chs" : "\u4e00\u4e2a\u6709\u7528\u7684\u519c\u4e1a\u4f9b\u5e94\u6765\u6e90\uff0c\u53ef\u80fd\u4f1a\u5927\u6709\u88e8\u76ca\u3002", "Eng" : "A useful source of supplies for farming. Could be q...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/outpost/terramart/terramart.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/outpost/terramart/terramart.object"]}, "Texts...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"8942": {"type": "string"}, "8944": {"type": "string"}}, "required": ["8942", "8944"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"8942" : "8943", "8944" : "8945"}
json_instruct
{"type": "object", "properties": {"8942": {"type": "string"}, "8944": {"type": "string"}}, "required": ["8942", "8944"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "b...
{"contract" : "0xc75506deae7c01f47bcd330b324226ce9ba78e30", "tool" : "maian", "start" : 1565206727.2075553, "end" : 1565207168.4072366, "duration" : 441.19968128204346, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "i...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "b36faad9f81ff10eac5c", "c" : {"0" : false}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "511025132001", "text" : "\u9f99\u5c71\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "511025132201", "text" : "\u9f99\u5934\u6751\u59d4\u4f1a"}, {"id" : "511025132202", "text" : "\u4e1c\u5174\u6751\u59d4\u4f1a"}, {"id" : "511025132203", "text" : "\u9f99\u53e3\u6751\u59d4\u4f1a"}, {"id" : "511025132204", "text" : "\...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"widgets": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "color": {"type": "string"}, "size": {"type": "st...
{"widgets" : [{"id" : 1, "name" : "Small Red Widget", "description" : "A small, red widget.", "color" : "red", "size" : "small", "quantity" : 2}, {"id" : 2, "name" : "Medium Blue Widget", "description" : "A medium, blue widget.", "color" : "blue", "size" : "medium", "quantity" : 15}, {"id" : 3, "name" : "Large Green Wi...
json_instruct
{"type": "object", "properties": {"widgets": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "color": {"type": "string"}, "size": {"type": "string"}, "quantity": {"type": "integer"}}, "required": ["id", "name", "descr...
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" : "IT IS EVIDENT THAT IMMATERIAL THINKING THING MAY SOMETIMES PART WITH ITS PAST CONSCIOUSNESS, AND BE RESTORED TO IT AGAIN,", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/6393.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$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": {"test": {"type": "string"}, "check": {"type": "string"}, "cl...
{"name" : "globalgamejam2018", "version" : "0.0.1", "description" : "", "main" : "src/index.html", "scripts" : {"test" : "node build/src/testRunner", "check" : "gts check", "clean" : "gts clean", "compile" : "tsc -p .", "fix" : "gts fix", "prepare" : "npm run compile", "pretest" : "npm run compile", "posttest" : "npm r...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "check": {"type": "string"}, "clean": {"type": "string"}, "compile": {"type": "string"}, "f...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"plugins": {"type": "object", "properties": {"./plugin": {"type": "boolean"}}, "required": ["./plugin"]}}, "required": ["plugins"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"plugins" : {"./plugin" : true}}
json_instruct
{"type": "object", "properties": {"plugins": {"type": "object", "properties": {"./plugin": {"type": "boolean"}}, "required": ["./plugin"]}}, "required": ["plugins"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema...
[{"name" : "RYISA", "frequency" : 1, "gender" : "female"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "ot": {"type": "integer"}, "alias": {"type": "integer"}, "setcode": {"type": "integer"}, "type": {"type": "integer"}, "atk": {"type": "integer"}, "def": {"type": "integer"}, "level": {"type": "integer...
{"id" : 39477584, "ot" : 3, "alias" : 0, "setcode" : 53, "type" : 8225, "atk" : 3000, "def" : 2000, "level" : 10, "race" : 8, "attribute" : 16, "category" : 1040, "name" : "Fabled Leviathan", "desc" : "1 \"Fabled\" Tuner + 1 or more non-Tuner monsters\nWhen this card on the field is destroyed and sent to the Graveyard,...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "ot": {"type": "integer"}, "alias": {"type": "integer"}, "setcode": {"type": "integer"}, "type": {"type": "integer"}, "atk": {"type": "integer"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "race": {"type": "integer"}, "attribute": {"type": "int...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"first": {"type": "string"}, "second": {"type": "string"}, "similarity": {"type": "number"}}, "required": ["first", "second", "similarity"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"first" : "0e5f55676e01d8e41d77cdc43489da8381b68086", "second" : "5a199a75411047903b7ba7851bf705ec545f6da9", "similarity" : 0.0}, {"first" : "0e5f55676e01d8e41d77cdc43489da8381b68086", "second" : "7631f1db92e61504596790057ce674ee90570755", "similarity" : 0.24}, {"first" : "0e5f55676e01d8e41d77cdc43489da8381b68086", "...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"first": {"type": "string"}, "second": {"type": "string"}, "similarity": {"type": "number"}}, "required": ["first", "second", "similarity"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["t...
{"name" : "component", "version" : "1.0.0", "description" : "Write components with interface, events and observable model.", "main" : "component.js", "directories" : {"test" : "tests"}, "scripts" : {"test" : "jest"}, "repository" : {"type" : "git", "url" : "git+https://github.com/ytiurin/component.git"}, "keywords" : [...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"test": {"type": "...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "obje...
{"copyright_text" : "Standard YouTube License", "description" : "In the deployment of a short-course on electromagnetic geophysics, we have been developing strategies for developing an \u201ceducational stack.\u201d Web-based textbooks and interactive simulations built using Jupyter notebooks provide an entry-point for...
json_instruct
{"type": "object", "properties": {"copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "url": {"t...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"replace" : false, "values" : ["the_aether:spring_water", "the_aether:flowing_spring_water"]}
json_instruct
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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": "...
{"author" : {"id" : "t2_9yebdtbq", "name" : "TransportationSea551"}, "date" : {"day" : 1626652800, "full" : 1626715952, "month" : 1625097600, "week" : 1626566400}, "id" : "t3_oniw1n", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 122338, "fullUrl" : "https://preview.redd.it/yp9xl4m6g7c71.jpg?auto=webp&s=b9...
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"}},...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {...
{"userId" : 70461, "cartId" : "388b3108-c38e-464d-bfee-46174a8a8658", "preferredProducts" : [3725, 2588], "productReviews" : [{"productId" : 1289, "reviewText" : "i use it for 10 weeks when i'm in my sauna.", "reviewDate" : "2018-06-12T06:07:44.8337332+03:00"}, {"productId" : 2640, "reviewText" : "This Fantastic Plasti...
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integ...
{"nom" : "Lournand", "dpt" : "Sa\u00f4ne-et-Loire", "inscrits" : 256, "abs" : 45, "votants" : 211, "blancs" : 6, "nuls" : 2, "exp" : 203, "res" : [{"panneau" : "9", "voix" : 55}, {"panneau" : "3", "voix" : 46}, {"panneau" : "11", "voix" : 35}, {"panneau" : "2", "voix" : 31}, {"panneau" : "4", "voix" : 19}, {"panneau" :...
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"ColorSpace": {"type": "string"}, "ComponentsConfiguration": {"type": "string"}, "CreateDate": {"type": "string"}, "ExifIFDPointer": {"type": "string"}, "ExifImageHeight": {"type": "string"}, "ExifImageWidth": {"type...
{"ColorSpace" : "sRGB", "ComponentsConfiguration" : "Y, Cb, Cr, -", "CreateDate" : ": : : :", "ExifIFDPointer" : "214", "ExifImageHeight" : "1273", "ExifImageWidth" : "1909", "ExifVersion" : "0210", "FlashpixVersion" : "0101", "FocalPlaneResolutionUnit" : "0", "FocalPlaneXResolution" : "0", "FocalPlaneYResolution...
json_instruct
{"type": "object", "properties": {"ColorSpace": {"type": "string"}, "ComponentsConfiguration": {"type": "string"}, "CreateDate": {"type": "string"}, "ExifIFDPointer": {"type": "string"}, "ExifImageHeight": {"type": "string"}, "ExifImageWidth": {"type": "string"}, "ExifVersion": {"type": "string"}, "FlashpixVersion": {"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "window": {"type": "object", "properties": {"frame": {"type": "boolean"}, "toolbar": {"type": "boolean"}, "transparent": {"type": "boolean"}, ...
{"name" : "simpleclock5", "version" : "0.0.5", "main" : "index.html", "window" : {"frame" : false, "toolbar" : false, "transparent" : true, "show_in_taskbar" : false, "always-on-top" : true}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "window": {"type": "object", "properties": {"frame": {"type": "boolean"}, "toolbar": {"type": "boolean"}, "transparent": {"type": "boolean"}, "show_in_taskbar": {"type": "boolean"}, "always-on-top": ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-0...
{"id" : "170102150701", "variable1" : 0.8706, "variable2" : -0.2905, "variable3" : "C"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"includes": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}, "report": {"type": "object", "properties": {"html": {"type": "string"}, "csv": {"type": "string"}, "json"...
{"includes" : ["src"], "exclude" : ["tests", "proto", "thrift"], "report" : {"html" : "var/metrics", "csv" : "var/metrics/metrics.csv", "json" : "var/metrics/metrics.json", "violations" : "var/metrics/violations.xml"}, "groups" : [{"name" : "API", "match" : "!^OpenTelemetry\\\\API\\\\!i"}, {"name" : "Context", "match" ...
json_instruct
{"type": "object", "properties": {"includes": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}, "report": {"type": "object", "properties": {"html": {"type": "string"}, "csv": {"type": "string"}, "json": {"type": "string"}, "violations": {"type": "string"}}, "requ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "$collection": {"type": "string"}, "uuid": {"type": "string"}, "description": {"type": "string"}, "preference": {"type": "integer"}, "method": {"type": "string"}, "param": {"type": "string"...
{"name" : "MikroTik | RouterOS | HTTP", "$collection" : "sa.profilecheckrules", "uuid" : "f91a9bc4-5d67-44a0-b74c-370257db8600", "description" : "Examples:\n<h1>RouterOS v6.33</h1>", "preference" : 200, "method" : "http_get", "param" : "/", "match_method" : "re", "value" : "RouterOS\\s+v\\d+", "action" : "match", "prof...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "$collection": {"type": "string"}, "uuid": {"type": "string"}, "description": {"type": "string"}, "preference": {"type": "integer"}, "method": {"type": "string"}, "param": {"type": "string"}, "match_method": {"type": "string"}, "value": {"type": "string"}, "...
Create an example JSON object that satisfies this 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": {}}, ...
{"directions" : ["Preheat oven to 350 degrees F (175 degrees C). Grease a 2 quart baking dish.", "Arrange the peaches, apple, pear, blueberries, cherries, and plums in the prepared baking dish. In a medium bowl, beat egg, sugar, and milk. In a separate bowl, sift together flour, baking powder, and salt; stir into the e...
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...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3313040004", "district_id" : "3313040", "name" : "TUNGGULREJO"}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "license": {"type": "string"}, "reposito...
{"name" : "ng-BookList", "version" : "0.0.1", "author" : {"name" : "Brian Boyd", "url" : "dev.kcadventuro.us"}, "license" : "MIT", "repository" : {"github" : "https://github.com/briankboyd/ng-BookList"}, "devDependencies" : {"browser-sync" : "^1.8.0", "gulp" : "^3.8.10", "gulp-concat" : "^2.4.2", "gulp-jshint" : "^1.9....
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"github": {"type":...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"jquery.once.js": {"type": "string"}, "jquery.once.min.js": {"type": "string"}}, "required": ["jquery.once.js", "jquery.once.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jquery.once.js" : "sha256-Re5Lq2zQgR86EUz2N+jhO2xkTmTDeKJUxm6B3dQjtJI=", "jquery.once.min.js" : "sha256-BC1N3WvC17efkUpZf0B96fcpPfMcPJaJ48oLjnEBxqY="}
json_instruct
{"type": "object", "properties": {"jquery.once.js": {"type": "string"}, "jquery.once.min.js": {"type": "string"}}, "required": ["jquery.once.js", "jquery.once.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"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"}, "severit...
{"schema_version" : "1.2.0", "id" : "GHSA-rchf-vhrp-54gp", "modified" : "2022-05-01T17:54:40Z", "published" : "2022-05-01T17:54:40Z", "aliases" : ["CVE-2007-1550"], "details" : "Multiple SQL injection vulnerabilities in phpx 3.5.15 allow remote attackers to execute arbitrary SQL commands via the (1) image_id or (2) cat...
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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["baseObjects", "returnO...
{"baseObjects" : ["[705,655,59,627,783]", "[705,655,59,627,783]", "[705,655,59,627,783]", "[705,655,59,627,783]"], "returnObjects" : ["\"Error\"", "\"Error\"", "\"NaN705,655,59,627,783\"", "\"Error\""], "callbackArgs" : ["{\"1\":705,\"2\":0,\"3\":[705,655,59,627,783]}", "{\"1\":705,\"2\":0,\"3\":[705,655,59,627,783]}",...
json_instruct
{"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema....
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "outcomes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "condition": {"type": "string"}}, "required": ["name", "condition"]}}, "results": {"type...
{"name" : "Snooker", "outcomes" : [{"name" : "Win", "condition" : ">"}, {"name" : "Loss", "condition" : "<"}, {"name" : "Draw", "condition" : "="}], "results" : [{"name" : "Score", "description" : "Total points", "primary" : 1}], "performance" : ["1st Frame", "2nd Frame"], "columns" : [{"name" : "P", "equation" : "$eve...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "outcomes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "condition": {"type": "string"}}, "required": ["name", "condition"]}}, "results": {"type": "array", "items": {"type": "object", "properties": {"name": {"type...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "num...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[146.0, 42.666666666666664], [146.0, 42.75], [146.125, 42.75], [146.125, 42.666666666666664], [146.0, 42.666666666666664]]]}, "properties" : {"code" : 644600, "url" : "http://madefor.github.io/0410/api/v1/644600.geojson", "view" : "https://github....
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...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"contractName": {"type": "string"}, "abi": {"type": "array", "items": {}}, "bytecode": {"type": "string"}, "deployedBytecode": {"type": "string"}, "linkReferences": {"type": "object", "properties": {}, "required": []}, "depl...
{"contractName" : "ERC165Checker", "abi" : [], "bytecode" : "0x60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220df149c0ab8b...
json_instruct
{"type": "object", "properties": {"contractName": {"type": "string"}, "abi": {"type": "array", "items": {}}, "bytecode": {"type": "string"}, "deployedBytecode": {"type": "string"}, "linkReferences": {"type": "object", "properties": {}, "required": []}, "deployedLinkReferences": {"type": "object", "properties": {}, "req...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"PowderKegCrowd": {"type": "array", "items": {"type": "string"}}}, "required": ["PowderKegCrowd"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"PowderKegCrowd" : ["WorkingClassPeopleAreMorons", "LowerClassLout", "WavingSignsAround", "WhoWillBellTheCat", "RabbleRouser", "TorchesAndPitchforks", "OurWerewolvesAreDifferent", "ShapeshifterIdentityCrisis", "RoaringRampageOfRevenge", "RoaringRampageOfRevenge", "PoliceBrutality", "ProducePelting", "AngryMob", "TheBi...
json_instruct
{"type": "object", "properties": {"PowderKegCrowd": {"type": "array", "items": {"type": "string"}}}, "required": ["PowderKegCrowd"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"source_db": {"type": "string"}, "source_id": {"type": "string"}, "division_id": {"type": "integer"}, "section": {"type": "string"}, "text": {"type": "string"}}, "required": ["source_db", "source_id", "division_id", "section...
{"source_db" : "PMC", "source_id" : "2817507", "division_id" : 3, "section" : "2. Methods", "text" : "2.2. Induction of Intracerebral Hemorrhage\nSince most intracerebral hemorrhages occur in the basal ganglia clinically, in the present study, rat model of ICH was induced in left basal ganglia. Rats were anesthetized w...
json_instruct
{"type": "object", "properties": {"source_db": {"type": "string"}, "source_id": {"type": "string"}, "division_id": {"type": "integer"}, "section": {"type": "string"}, "text": {"type": "string"}}, "required": ["source_db", "source_id", "division_id", "section", "text"], "$schema": "http://json-schema.org/draft-07/schema...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"replace": {"type": "string"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"replace" : "false", "values" : ["super_block_world:yellow_flowerbed", "super_block_world:white_flowerbed", "super_block_world:hybrid_flowerbed", "super_block_world:blue_songflower", "super_block_world:pink_songflower", "super_block_world:yellow_songflower", "super_block_world:purple_songflower", "super_block_world:fi...
json_instruct
{"type": "object", "properties": {"replace": {"type": "string"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"typ...
{"source" : "http://lema.rae.es/drae/srv/search?val=suputar", "word" : "suputar", "infinitivo" : "suputar", "participio" : ["suputado"], "gerundio" : ["suputando"], "tenses" : {"3" : [["suputo"], ["suputas", "suput\u00e1s"], ["suputa"], ["suputamos"], ["suput\u00e1is", "suputan"], ["suputan"]], "4" : [["suput\u00e9"], ...
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "item...
Construct a JSON document that adheres to this schema specification: {"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", "...
{"place_name" : "Asbury", "state_name" : "Missouri", "state_abbrv" : "MO", "lat" : "37.2942", "long" : "-94.5655"}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "comment": {"type": "string"}, "uid": {"type": "integer"}, "gid": {"type": "integer"}, "home": {"type": "string"}, "shell": {"type": "string"}, "platform": {"type": "string"}}, "required": ["id", "commen...
{"id" : "user1", "comment" : "I am user1", "uid" : 100, "gid" : 1, "home" : "/home/user1", "shell" : "/bin/bash", "platform" : "centos"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "comment": {"type": "string"}, "uid": {"type": "integer"}, "gid": {"type": "integer"}, "home": {"type": "string"}, "shell": {"type": "string"}, "platform": {"type": "string"}}, "required": ["id", "comment", "uid", "gid", "home", "shell", "platform"], "$schema"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "properties": {"type": "object", "properties": {"annotations": {"type": "array", "items": {}}, "type": {"type": "string"}, "typeProperties": {"type": "object", "properties": {"workspaceID": {"type": "s...
{"name" : "PowerBIWorkspaceTripsFares", "properties" : {"annotations" : [], "type" : "PowerBIWorkspace", "typeProperties" : {"workspaceID" : "SynapseAccelerator", "tenantID" : "f91e4237-c9f5-4e12-b0c9-aa6ebcf618e6"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "properties": {"type": "object", "properties": {"annotations": {"type": "array", "items": {}}, "type": {"type": "string"}, "typeProperties": {"type": "object", "properties": {"workspaceID": {"type": "string"}, "tenantID": {"type": "string"}}, "required": ["w...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"label": {"type": "string"}, "position": {"type": "integer"}}, "required": ["label", "position"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"label" : "Interview Questions", "position" : 2}
json_instruct
{"type": "object", "properties": {"label": {"type": "string"}, "position": {"type": "integer"}}, "required": ["label", "position"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"rsuite.js": {"type": "string"}, "rsuite.min.js": {"type": "string"}, "styles/rsuite.css": {"type": "string"}, "styles/rsuite.min.css": {"type": "string"}}, "required": ["rsuite.js", "rsuite.min.js", "styles/rsuite....
{"rsuite.js" : "sha256-e00vKBQjRfJheEUIqvdIj54HOA0szM0inU+sVjFKTts=", "rsuite.min.js" : "sha256-GhWLzYEO9Pmr3J7esYeBkAocsC03VPL01kOYMaBLX2w=", "styles/rsuite.css" : "sha256-Vt21B/cabEKJNoH4t6HiNWclUKmsuTSifR9yte5ZZ88=", "styles/rsuite.min.css" : "sha256-kO+SxClqLTmk3TGDQiCIRtQ+qcahp/3cEiCu8MA6xCw="}
json_instruct
{"type": "object", "properties": {"rsuite.js": {"type": "string"}, "rsuite.min.js": {"type": "string"}, "styles/rsuite.css": {"type": "string"}, "styles/rsuite.min.css": {"type": "string"}}, "required": ["rsuite.js", "rsuite.min.js", "styles/rsuite.css", "styles/rsuite.min.css"], "$schema": "http://json-schema.org/draf...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "d...
{"name" : "CoinMetro", "symbol" : "XCM", "address" : "0x44E2ca91ceA1147f1B503e669f06CD11FB0C5490", "decimals" : 18, "dharmaVerificationStatus" : "VERIFIED"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.o...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"conditions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "recipeKey": {"type": "string"}}, "required": ["type", "recipeKey"]}}, "type": {"type": "string"}, "group": {"type": "str...
{"conditions" : [{"type" : "prefab:config_recipe", "recipeKey" : "Paper Lantern"}], "type" : "minecraft:crafting_shapeless", "group" : "Paper Lantern", "ingredients" : [{"item" : "prefab:item_coil_of_lanterns"}], "result" : {"item" : "prefab:item_string_of_lanterns", "count" : 9}}
json_instruct
{"type": "object", "properties": {"conditions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "recipeKey": {"type": "string"}}, "required": ["type", "recipeKey"]}}, "type": {"type": "string"}, "group": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "obj...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "selftext": {"type": "string"}}, "required": ["id", "title", "selftext"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "nsvpul", "title" : "Controller disconnected anyone else have this happen?", "selftext" : "As the title says. I was lucky really I nearly drowned in a lake haha. It disconnected for like 8 secs my battery was fullish too. Its never happened ever, even on other games. Just happy it reconnected I had been farming...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "selftext": {"type": "string"}}, "required": ["id", "title", "selftext"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "group": {"type": "string"}, "checksum": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "text": {"type": "st...
{"id" : "00187", "group" : "spam-2", "checksum" : {"type" : "MD5", "value" : "3fb9a7078bff0530ea52484a32c5d7e0"}, "text" : "From info@internationalfreecall.com Mon Jun 24 17:44:04 2002\nReturn-Path: dmeizys@host11.websitesource.com\nDelivery-Date: Fri Mar 29 05:42:27 2002\nReceived: from mandark.labs.netnoteinc.com ([...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "group": {"type": "string"}, "checksum": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "text": {"type": "string"}}, "required": ["id", "group", "checksum", "text"], "$schema": "http:...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"upper_left_x": {"type": "number"}, "upper_left_y": {"type": "integer"}, "bottom_right_x": {"type": "integer"}, "bottom_right_y": {"type": "integer"}, "time": {"type": "integer"}, "is_final": {"type": "boolean"}, "event_type": ...
{"upper_left_x" : 1129.0730038770193, "upper_left_y" : 0, "bottom_right_x" : 3000, "bottom_right_y" : 1953, "time" : 1480257517419, "is_final" : false, "event_type" : "zoom", "op_order" : 12, "id" : 12}
json_instruct
{"type": "object", "properties": {"upper_left_x": {"type": "number"}, "upper_left_y": {"type": "integer"}, "bottom_right_x": {"type": "integer"}, "bottom_right_y": {"type": "integer"}, "time": {"type": "integer"}, "is_final": {"type": "boolean"}, "event_type": {"type": "string"}, "op_order": {"type": "integer"}, "id": ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "strin...
{"id" : 89752, "name" : "Now TV - Stretch Player to Browser", "description" : "Stretches the Now TV player to fit the browser so that you can resize your videos as you see fit. Great for people who are doing other tasks whilst watching movies.", "user" : {"id" : 167604, "name" : "Now TV - Fit Video to Browser", "email"...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type"...
{"name" : "TVUploader", "version" : "0.1.1", "summary" : "Twitter Video Uploader + Format Validater", "description" : "TODO: Add long description of the pod here.", "homepage" : "http://noppelab.com", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Tomoya Hirano" : "cromteria@gmail.com"}, "source" : {"g...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"...