input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "scanUrl": {"type": "string"}}, "required": ["title", "text", "scanUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Lorien Protector (13S20)", "text" : "Set:\tBloodlines\nKind:\tFree People\nCulture:\tElven\nTwilight:\t2\nCard Type:\tCompanion \u2022 Elf\nStrength:\t6\nVitality:\t3\nResistance:\t6\nGame Text:\tWhile another companion is assigned to a skirmish, during each skirmish, prevent all wounds to this companion af... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "scanUrl": {"type": "string"}}, "required": ["title", "text", "scanUrl"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"fro": {"type": "string"}, "too": {"type": "string"}, "value": {"type": "integer"}, "date": {"type": "number"}, "sign": {"type": "string"}}, "required": ["fro", "too", "value", "date", "sign"], "$schema": "http://json... | {"fro" : "Judith", "too" : "Moritz", "value" : 350, "date" : 5099068800.0, "sign" : "3045022100ca4bdde5d0439a430726891177507a3892a37f0f6a5f6fe91bc27f2f1c750da4022006716de42fdb963957feed81a9ab9e74843dba17937ae28bc4f1d9dbf7d5e59b"} | json_instruct | {"type": "object", "properties": {"fro": {"type": "string"}, "too": {"type": "string"}, "value": {"type": "integer"}, "date": {"type": "number"}, "sign": {"type": "string"}}, "required": ["fro", "too", "value", "date", "sign"], "$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"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["star... | {"name" : "gopro_gps_ui", "version" : "1.0.0", "main" : "src/server.js", "license" : "MIT", "scripts" : {"start" : "node src/server.js"}, "dependencies" : {"express" : "^4.17.1", "gopro-telemetry" : "^1.1.36"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"express": {"type":... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m... | {"MRRm_new" : 0.15593623710955434, "MRm_new" : 265.26269404866696, "HITS@1m_new" : 0.08737070899934625, "HITS@3m_new" : 0.16655011314754375, "HITS@10m_new" : 0.293614111474622} | json_instruct | {"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.or... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Id": {"type": "string"}, "Name": {"type": "string"}, "ISOCode2": {"type": "string"}, "ISOCode3": {"type": "string"}}, "required": ["Id", "Name", "ISOCode2", "ISOCode3"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Id" : "c046ca0b-6dd9-459c-bf76-bd024363aaac", "Name" : "Pakistan", "ISOCode2" : "PK", "ISOCode3" : "PAK"} | json_instruct | {"type": "object", "properties": {"Id": {"type": "string"}, "Name": {"type": "string"}, "ISOCode2": {"type": "string"}, "ISOCode3": {"type": "string"}}, "required": ["Id", "Name", "ISOCode2", "ISOCode3"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"prettier.enable": {"type": "boolean"}, "editor.codeActionsOnSave": {"type": "object", "properties": {"source.fixAll.eslint": {"type": "boolean"}}, "required": ["source.fixAll.eslint"]}, "files.associations": {"type": "object", "... | {"prettier.enable" : false, "editor.codeActionsOnSave" : {"source.fixAll.eslint" : true}, "files.associations" : {"api-extractor.json" : "jsonc"}, "[markdown]" : {"editor.defaultFormatter" : "dbaeumer.vscode-eslint"}} | json_instruct | {"type": "object", "properties": {"prettier.enable": {"type": "boolean"}, "editor.codeActionsOnSave": {"type": "object", "properties": {"source.fixAll.eslint": {"type": "boolean"}}, "required": ["source.fixAll.eslint"]}, "files.associations": {"type": "object", "properties": {"api-extractor.json": {"type": "string"}}, ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "create:block/limestone_cobblestone_slab"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$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"}, "data": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "userDefined": {"type": "boolean"}}, "required": ["text", "... | [{"id" : "689d5f38-1a0f-4a7a-99dc-aead7f4da17d", "data" : [{"text" : "Gino Paoli", "userDefined" : false}], "isTemplate" : false, "count" : 0, "updated" : 0}, {"id" : "d71c72db-8355-47de-b47c-bda7f533fad0", "data" : [{"text" : "Ron", "userDefined" : false}], "isTemplate" : false, "count" : 0, "updated" : 0}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "userDefined": {"type": "boolean"}}, "required": ["text", "userDefined"]}}, "isTemplate": {"type": "boolean"}, "count": {"type": "intege... |
Construct a JSON document that adheres to this schema specification:
{"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/... | [{"year" : 2003, "sex" : "F", "n" : 9, "prop" : 4.49e-06}, {"year" : 2005, "sex" : "F", "n" : 9, "prop" : 4.44e-06}, {"year" : 2007, "sex" : "F", "n" : 7, "prop" : 3.31e-06}, {"year" : 2008, "sex" : "F", "n" : 12, "prop" : 5.77e-06}, {"year" : 2009, "sex" : "F", "n" : 7, "prop" : 3.46e-06}, {"year" : 2010, "sex" : "F",... | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"network": {"type": "string"}, "height": {"type": "integer"}, "hash": {"type": "string"}, "time": {"type": "integer"}, "tree": {"type": "string"}}, "required": ["network", "height", "hash", "time", "tree"], "$schema"... | {"network" : "test", "height" : 750000, "hash" : "000ec8c607a443b2b7b1606138eaa39017bc0eeca69ce4a5c8e9957c6265564b", "time" : 1578091226, "tree" : "0136607efe3d2ef836722fb389db88489672616f77f75796ad4cc0568d29a79603012163dd5d0a348c4e84de3d88971616fd534ca04bf0236bdcecb27cfd15f45e6f1001328e531bad80a311df69cd8c1f5c6a3ab0b2... | json_instruct | {"type": "object", "properties": {"network": {"type": "string"}, "height": {"type": "integer"}, "hash": {"type": "string"}, "time": {"type": "integer"}, "tree": {"type": "string"}}, "required": ["network", "height", "hash", "time", "tree"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "graphic": {"type": "integer"}, "type": {"type": "string"}, "hp": {"type": "integer"}, "maxdam": {"type": "integer"}, "accuracy": {"type": "integer"}, "exp": {... | {"id" : 69, "name" : "Birdman Worker", "graphic" : 47, "type" : "Passive", "hp" : 72, "maxdam" : 2, "accuracy" : 3, "exp" : 18} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "graphic": {"type": "integer"}, "type": {"type": "string"}, "hp": {"type": "integer"}, "maxdam": {"type": "integer"}, "accuracy": {"type": "integer"}, "exp": {"type": "integer"}}, "required": ["id", "name", "graphic", "type", "hp",... |
Construct a JSON document that adheres to this schema specification:
{"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" : "UMengFeedback", "version" : "1.4.2", "summary" : "UMeng's official Feedback SDK for iOS.", "description" : "UMeng Feedback SDK provide users and developers two way feedback communication.\n", "homepage" : "http://dev.umeng.com/feedback/ios/quick-start", "license" : {"type" : "Copyright", "text" : " Copy... | 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"}, "text": {"type": "string"}}, "required": ["type", "text"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "catharine wheel", "definition" : "See catherine wheel."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": ... | {"type" : "MultiPolygon", "coordinates" : [[[[-80.33225484299992, 36.11832729600007], [-80.33200691299992, 36.118325676000026], [-80.33186414499993, 36.11351440600003], [-80.3320497429999, 36.11352868200002], [-80.33206186899989, 36.111550306000076], [-80.33227286699989, 36.111624776000035], [-80.3334530799999, 36.1123... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {... |
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" : "1812060013", "district_id" : "1812060", "name" : "TERANG MULYA"} | 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#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"pname": {"type": "string"}, "bname": {"type": "string"}, "qty": {"type": "integer"}, "aisle": {"type": "integer"}, "diet": {"type": "string"}}, "required": ["pname", "bname", "qty", "aisle", "diet... | [{"pname" : "milk", "bname" : "Lucerne", "qty" : 2, "aisle" : 3, "diet" : "keto"}, {"pname" : "eggs", "bname" : "Lucerne", "qty" : 12, "aisle" : 3, "diet" : "keto"}, {"pname" : "deodorant", "bname" : "Degree", "qty" : 1, "aisle" : 5, "diet" : "NA"}, {"pname" : "peanuts", "bname" : "Planters", "qty" : 1, "aisle" : 3, "d... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"pname": {"type": "string"}, "bname": {"type": "string"}, "qty": {"type": "integer"}, "aisle": {"type": "integer"}, "diet": {"type": "string"}}, "required": ["pname", "bname", "qty", "aisle", "diet"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"$schema": {"type": "string"}, "$ref": {"type": "string"}, "definitions": {"type": "object", "properties": {"MessageOptions": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"ignore":... | {"$schema" : "http://json-schema.org/draft-04/schema#", "$ref" : "#/definitions/MessageOptions", "definitions" : {"MessageOptions" : {"properties" : {"ignore" : {"type" : "boolean", "description" : "Messages tagged with this will not be processed"}, "all_fields_required" : {"type" : "boolean", "description" : "Messages... | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "$ref": {"type": "string"}, "definitions": {"type": "object", "properties": {"MessageOptions": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"ignore": {"type": "object", "properties": {"type": {"type": "string"}, "descr... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"discord": {"type": "object", "properties": {"token": {"type": "string"}, "prefix": {"type": "string"}}, "required": ["token", "prefix"]}, "owners": {"type": "array", "items": {"type": "string"}}}, "required": ["discord", "o... | {"discord" : {"token" : "", "prefix" : "$"}, "owners" : ["your_discord_id"]} | json_instruct | {"type": "object", "properties": {"discord": {"type": "object", "properties": {"token": {"type": "string"}, "prefix": {"type": "string"}}, "required": ["token", "prefix"]}, "owners": {"type": "array", "items": {"type": "string"}}}, "required": ["discord", "owners"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["gpi"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"transactionDate": {"type": "string"}, "produceNumber": {"type": "string"}, "produceName": {"type": "string"}, "marketNumber": {"type": "string"}, "marketName": {"type": "string"}, "topPrice": {"type"... | [{"transactionDate" : "104.01.09", "produceNumber" : "C1", "produceName" : "\u692a\u67d1", "marketNumber" : "423", "marketName" : "\u6771\u52e2\u93ae", "topPrice" : "51.9", "middlePrice" : "38.2", "lowPrice" : "25.9", "averagePrice" : "38.4", "transactionAmount" : "3121.2", "number" : "C1", "main_category" : "fruit", "... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"transactionDate": {"type": "string"}, "produceNumber": {"type": "string"}, "produceName": {"type": "string"}, "marketNumber": {"type": "string"}, "marketName": {"type": "string"}, "topPrice": {"type": "string"}, "middlePrice": {"type": "string"}, "lowPrice":... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "dna": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type":... | {"name" : "Crypto BAYC #586", "description" : "", "image" : "ipfs://QmXZWjCdRevZ3J2AUd9PvTbwo4ef5re6oouoFBX7D2whfC/586.png", "dna" : "dd98e5dd4de2eecd33a71c9a1c3bb4f48d7996ed", "edition" : 586, "date" : 1645298552709, "attributes" : [{"trait_type" : "TYPE", "value" : "Dark Brown"}, {"trait_type" : "MOUTH", "value" : "S... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "dna": {"type": "string"}, "edition": {"type": "integer"}, "date": {"type": "integer"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "foreign_keys": {"type": "array", "items": {"type": "object", "proper... | {"fields" : [{"name" : "patient_id", "type" : "bigint#unsigned"}, {"name" : "doctor_id", "type" : "bigint#unsigned"}, {"name" : "pharmacy_id", "type" : "bigint#unsigned"}, {"name" : "description", "type" : "text"}, {"name" : "status", "type" : "enum", "options" : {"pending" : "Pending", "checked" : "Checked", "packing"... | json_instruct | {"type": "object", "properties": {"fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "foreign_keys": {"type": "array", "items": {"type": "object", "properties": {"column": {"type": "string"}, "references": {"typ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"socket.io.js": {"type": "string"}, "socket.io.min.js": {"type": "string"}}, "required": ["socket.io.js", "socket.io.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"socket.io.js" : "sha512-wh+WOloyetAeLbxprsWzsg+SlNlwfa9Rd0sOYsSm1rJ1GgKB0tFy7xPrQjvWVcsbH3m2b9Oy6USlbsdi834CpA==", "socket.io.min.js" : "sha512-Xzw+o2M9R0HCMNiTy7RqwiYjn6ECYlXZFu6pmI2/3yVBaRfqw4xhNRgIbGX6X5vDDhAFN3RONJOHkQ+BFy2oOw=="} | json_instruct | {"type": "object", "properties": {"socket.io.js": {"type": "string"}, "socket.io.min.js": {"type": "string"}}, "required": ["socket.io.js", "socket.io.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible 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": "number"... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[147.25, 27.666666666666668], [147.25, 27.75], [147.375, 27.75], [147.375, 27.666666666666668], [147.25, 27.666666666666668]]]}, "properties" : {"code" : 414742, "url" : "http://madefor.github.io/0410/api/v1/414742.geojson", "view" : "https://gith... | 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... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"definition": {"type": "string"}, "virus_id": {"type": "string"}, "isolate_id": {"type": "string"}, "_id": {"type": "string"}, "host": {"type": "string"}}, "required": ["definition", "... | [{"definition" : "Apple dimple fruit viroid isolate IRN1, complete sequence", "virus_id" : "39d3f3e7", "isolate_id" : "mepdwbvl", "_id" : "KX909575.1", "host" : "apple"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"definition": {"type": "string"}, "virus_id": {"type": "string"}, "isolate_id": {"type": "string"}, "_id": {"type": "string"}, "host": {"type": "string"}}, "required": ["definition", "virus_id", "isolate_id", "_id", "host"]}, "$schema": "http://json-schema.or... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "M1911A1 Rear Sight", "ShortName" : "M1911A1 RS", "Description" : "Standard rear sight for M1911A1, product by Colt.."} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"requests_sec": {"type": "number"}, "transfer_sec": {"type": "string"}, "avg_latency_ms": {"type": "number"}, "errors_sum": {"type": "number"}, "duration": {"type": "number"}, "requests": {"type": "number"}, "bytes": {"type": "... | {"requests_sec" : 19411.78, "transfer_sec" : "8.22MB", "avg_latency_ms" : 3.62, "errors_sum" : 0.0, "duration" : 5100304.0, "requests" : 99006.0, "bytes" : 43958664.0, "latency.min" : 532.0, "latency.max" : 35712.0, "latency.mean" : 3618.7, "latency.stdev" : 3025.56} | json_instruct | {"type": "object", "properties": {"requests_sec": {"type": "number"}, "transfer_sec": {"type": "string"}, "avg_latency_ms": {"type": "number"}, "errors_sum": {"type": "number"}, "duration": {"type": "number"}, "requests": {"type": "number"}, "bytes": {"type": "number"}, "latency.min": {"type": "number"}, "latency.max":... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id_6503": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "read... | {"id_6503" : {"title" : "George Washington", "language" : "English", "totaltime" : "2:02:53", "url_librivox" : "http://librivox.org/george-washington-by-calista-mccabe-courtenay/", "url_iarchive" : "http://archive.org/details/georgewashington_bb_librivox", "readers" : ["4788"], "authors" : "3038", "genres" : "General"}... | json_instruct | {"type": "object", "properties": {"id_6503": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"typ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationGroupId" : 9952612, "stations" : ["9952612"]} | json_instruct | {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published",... | {"published" : "2015-09-03T03:22:22Z", "media-type" : "Blog", "title" : "Leaked images confirm iPhone 6s and iPhone 6s Plus will be slightly thicker and larger", "id" : "41ee7af4-3148-4533-b169-af7ee6c3a324", "content" : "The latest set of iPhone 6s and iPhone 6s Plus photos received by\u00a0MacRumors\u00a0confirm what... | json_instruct | {"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-s... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"description": {"type": "string"}, "config": {"type": "object", "properties": {"disabledAdapters": {"type": "array", "items": {"type": "string"}}}, "required": ["disabledAdapters"]}, "mockBidRequest": {"type": "obje... | {"description" : "Bid request targeted towards a disabled adapter. We expect an error.", "config" : {"disabledAdapters" : ["appnexus"]}, "mockBidRequest" : {"id" : "some-request-id", "site" : {"page" : "test.somepage.com"}, "imp" : [{"id" : "my-imp-id", "video" : {"mimes" : ["video/mp4"]}, "ext" : {"appnexus" : {"place... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "config": {"type": "object", "properties": {"disabledAdapters": {"type": "array", "items": {"type": "string"}}}, "required": ["disabledAdapters"]}, "mockBidRequest": {"type": "object", "properties": {"id": {"type": "string"}, "site": {"type": "object"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"Y": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}... | {"type" : "forge:ore_shaped", "pattern" : ["X", "S", "Y"], "key" : {"Y" : {"item" : "#FEATHER"}, "X" : {"item" : "moreplanets:infected_purlonite_shard"}, "S" : {"item" : "galacticraftplanets:item_basic_mars", "data" : 1}}, "result" : {"item" : "moreplanets:infected_purlonite_arrow", "count" : 6}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"Y": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "X": {"type": "object", "properties": {"item": {"type": "string"}},... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["docpad-plugin-wakabamark"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "ite... | {"name" : "Free Time Coin", "symbol" : "FREE", "logoURI" : "https://freetimecoin.com/images/freelogo.png", "decimals" : 8, "address" : "5VbDmpeTUgMZvybfaq43FmxH1Be5nkpy2BEDLZyvxuQD", "chainId" : 101, "tags" : ["meme", "DApp"], "extensions" : {"website" : "https://freetimecoin.com/", "twitter" : "https://twitter.com/fre... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "extensions": {"type": "object", "properties"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"m... | {"manifest_version" : 2, "name" : "Caps off my Reddit", "description" : "Some scurrilous redditors choose all caps usernames (often vulgar) to attract attention. They don't deserve it.", "version" : "0.1.0", "content_scripts" : [{"matches" : ["*://*.reddit.com/*"], "css" : ["capsoff.css"]}]} | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "css": {"typ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["411628102001", "\u67a3\u96c6\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["411628102002", "\u675c\u4e54\u5c45\u59d4\u4f1a", "220", "0"], ["411628102003", "\u5b59\u5e97\u5c45\u59d4\u4f1a", "220", "0"], ["411628102004", "\u6f58\u5e84\u5c45\u59d4\u4f1a", "220", "0"], ["411628102200", "\u5218\u697c\u6751\u59d4\u4f1a", ... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"cbpro": {"type": "object", "properties": {"apiKey": {"type": "string"}, "apiPass": {"type": "string"}, "apiSecret": {"type": "string"}, "apiUrl": {"type": "string"}, "accountIds": {"type": "object", "properties": {"... | {"cbpro" : {"apiKey" : "", "apiPass" : "", "apiSecret" : "", "apiUrl" : "https://api.pro.coinbase.com", "accountIds" : {"ETH-BTC" : "example-account-id", "LTC-BTC" : "another-account-id"}, "stakeBTC" : "0.001"}, "s3" : {"bucketName" : "tradingbotbucket"}, "alpaca" : {"apiKey" : "", "apiPass" : "", "apiSecret" : ""}} | json_instruct | {"type": "object", "properties": {"cbpro": {"type": "object", "properties": {"apiKey": {"type": "string"}, "apiPass": {"type": "string"}, "apiSecret": {"type": "string"}, "apiUrl": {"type": "string"}, "accountIds": {"type": "object", "properties": {"ETH-BTC": {"type": "string"}, "LTC-BTC": {"type": "string"}}, "require... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produ... | {"userId" : 6959, "cartId" : "8f9760cf-858d-40c1-a805-97a0333b27e0", "preferredProducts" : [4055, 4683], "productReviews" : [{"productId" : 2494, "reviewText" : "this Georgia is vertical.", "reviewDate" : "2020-04-25T23:29:01.395163+03:00"}]} | 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": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"t... | {"\u5de5\u5ee0\u540d\u7a31" : "\u6210\u5955\u4f01\u696d\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99631698", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "07410005284928", "\u5de5\u5ee0\u5730\u5740" : "\u82d7\u6817\u7e23\u7af9\u5357\u93ae\u5d0e\u9802\u91cc\u4ec1\u611b\u8def\u4e00\u56db... | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"occupation": {"type": "string"}, "base": {"type": "string"}}, "required": ["occupation", "base"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"occupation" : "Inventor, former soldier", "base" : "Base of operations unknown"} | json_instruct | {"type": "object", "properties": {"occupation": {"type": "string"}, "base": {"type": "string"}}, "required": ["occupation", "base"], "$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"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string... | {"name" : "Cura", "description" : "3D printer / slicing GUI built on top of the Uranium framework", "license" : {"key" : "lgpl-3.0", "name" : "GNU Lesser General Public License v3.0", "spdx_id" : "LGPL-3.0", "url" : "https://api.github.com/licenses/lgpl-3.0"}, "starNum" : 661, "folkNum" : 381, "watchNum" : 661, "topic"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "string"}, "url": {"type": "string"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"typ... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "provi... | {"name" : "Kobe City University of Foreign Studies", "alt_name" : "Kobeshi Gaikokugo Daigaku", "country" : "Japan", "state" : null, "address" : {"street" : "9-1 Gakuen-higashi-machi, Nishi-ku", "city" : "Kobe-shi", "province" : "Hyogo", "postal_code" : "651-2187"}, "contact" : {"telephone" : "+81(78) 794-8121", "websit... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"replace": {"type": "string"}, "values": {"type": "array", "items": {}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"replace" : "false", "values" : []} | json_instruct | {"type": "object", "properties": {"replace": {"type": "string"}, "values": {"type": "array", "items": {}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"CRs": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "script": {"type": "string"}, "needAdminIndexPWD": {"type": "boolean"}, "data": {"type": "string"}}, "required": ["id", "script", ... | {"CRs" : [{"id" : "2016-0254", "script" : "2016-0254", "needAdminIndexPWD" : true, "data" : "2016-0254"}]} | json_instruct | {"type": "object", "properties": {"CRs": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "script": {"type": "string"}, "needAdminIndexPWD": {"type": "boolean"}, "data": {"type": "string"}}, "required": ["id", "script", "needAdminIndexPWD", "data"]}}}, "required": ["CRs"], "$schema... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"GENERAL_SETTINGS": {"type": "object", "properties": {"TITLE": {"type": "string"}, "SUBMIT": {"type": "string"}, "BACK": {"type": "string"}, "UPDATE": {"type": "object", "properties": {"ERROR": {"type": "string"... | {"GENERAL_SETTINGS" : {"TITLE" : "Configuraci\u00f3 del compte", "SUBMIT" : "Actualitzaci\u00f3 de la configuraci\u00f3", "BACK" : "Back", "UPDATE" : {"ERROR" : "No s'ha pogut actualitzar la configuraci\u00f3, torna-ho a provar!", "SUCCESS" : "La configuraci\u00f3 del compte s'ha actualitzat correctament"}, "FORM" : {"... | json_instruct | {"type": "object", "properties": {"GENERAL_SETTINGS": {"type": "object", "properties": {"TITLE": {"type": "string"}, "SUBMIT": {"type": "string"}, "BACK": {"type": "string"}, "UPDATE": {"type": "object", "properties": {"ERROR": {"type": "string"}, "SUCCESS": {"type": "string"}}, "required": ["ERROR", "SUCCESS"]}, "FORM... |
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" : "450103006001", "text" : "\u4e94\u5408\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "450103006002", "text" : "\u84c9\u8309\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "450103006003", "text" : "\u90a3\u8205\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "450103006004", "text" : "\u83ab\u6751\u793e\u533a\u5c45\u59d4\u4f1a"},... | 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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ConnectionStrings": {"type": "object", "properties": {"DefaultConnection": {"type": "string"}}, "required": ["DefaultConnection"]}}, "required": ["ConnectionStrings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ConnectionStrings" : {"DefaultConnection" : "Server=PIRO\\SQLEXPRESS2019;Database=CameraBazaarDb;Trusted_Connection=True;MultipleActiveResultSets=true"}} | json_instruct | {"type": "object", "properties": {"ConnectionStrings": {"type": "object", "properties": {"DefaultConnection": {"type": "string"}}, "required": ["DefaultConnection"]}}, "required": ["ConnectionStrings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type":... | {"title" : "Expert Finding for Community-Based Question Answering via Ranking Metric Network Learning.", "fields" : ["ranking", "user modeling", "question answering", "recurrent neural network", "embedding"], "abstract" : "Expert finding for question answering is a challenging problem in Community-based Question Answer... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"typ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "stri... | {"code" : "200", "messages" : "Successfully received data", "value" : [{"id" : "3502042001", "id_kecamatan" : "350204", "name" : "Gajah"}, {"id" : "3502042002", "id_kecamatan" : "350204", "name" : "Wringinanom"}, {"id" : "3502042003", "id_kecamatan" : "350204", "name" : "Ngadisanan"}, {"id" : "3502042004", "id_kecamata... | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kecamatan", "name"]}}}, "required": ["code... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", ... | {"builtin" : {"__set__" : true, "elements" : ["abc", "importlib", "io", "logging", "mmap", "pickle", "struct", "typing", "warnings", "zlib"]}, "questionable" : {"__set__" : true, "elements" : ["blosc", "numcodecs"]}, "relative" : {"__set__" : true, "elements" : ["_base", "chain", "codecs", "compat", "format", "read", "... | json_instruct | {"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "firebases"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "it... | {"ast" : null, "code" : "// Copyright 2017-2021 @polkadot/api authors & contributors\n// SPDX-License-Identifier: Apache-2.0\nexport { createSubmittable } from \"./createSubmittable.js\";\nexport { SubmittableResult } from \"./Result.js\";", "map" : {"version" : 3, "sources" : ["/home/spren/workspace/kitties-front-end/... | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesCont... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"roundProgress.js": {"type": "string"}, "roundProgress.min.js": {"type": "string"}}, "required": ["roundProgress.js", "roundProgress.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"roundProgress.js" : "sha256-Dl5Gzg1y4E4qr4pdAslasK61D3iDCr03N02269+uSt4=", "roundProgress.min.js" : "sha256-QR1qrusGlhiDscc3Li8koMYGxZBpSkDdmv3fQ8hM1o0="} | json_instruct | {"type": "object", "properties": {"roundProgress.js": {"type": "string"}, "roundProgress.min.js": {"type": "string"}}, "required": ["roundProgress.js", "roundProgress.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address"... | {"name" : "RICHARD CHEW SURGERY PTE LTD", "tel" : "62356088", "fax" : "64436616", "licensee" : "RICHARD CHEW SURGERY PTE LTD", "licensePeriod" : "30/04/2017 to 29/04/2019", "licenseClass" : "[ 2 Years ( 2A ) ]", "hciCode" : "15M0126", "address" : "1 FARRER PARK STATION ROAD, FARRER PARK MEDICAL CENTRE CONNEXION, #08-07... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "tel": {"type": "string"}, "fax": {"type": "string"}, "licensee": {"type": "string"}, "licensePeriod": {"type": "string"}, "licenseClass": {"type": "string"}, "hciCode": {"type": "string"}, "address": {"type": "string"}, "doctorInCharge": {"type": "array", "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200872727552000, "key" : "/static/535d1f8a57752280221e9a9f9a40c9fc/f93b5/traffic-lights_service-maps_APM.jpg", "val" : "4fc31423d2b079f610923ce5751f9e8b"} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Dashboard": {"type": "string"}, "Supplies": {"type": "string"}, "Login": {"type": "string"}}, "required": ["Dashboard", "Supplies", "Login"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Dashboard" : "/", "Supplies" : "supplies", "Login" : "/login"} | json_instruct | {"type": "object", "properties": {"Dashboard": {"type": "string"}, "Supplies": {"type": "string"}, "Login": {"type": "string"}}, "required": ["Dashboard", "Supplies", "Login"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"version": {"type": "string"}, "book": {"type": "string"}, "chapter": {"type": "integer"}, "verse": {"type": "integer"}, "word": {"type": "string"}}, "required": ["version", "book", "chapter", "verse", "word"], "$sc... | {"version" : "english_NIV", "book" : "2 Chronicles", "chapter" : 8, "verse" : 6, "word" : "as well as Baalath and all his store cities, and all the cities for his chariots and for his horses\u2014whatever he desired to build in Jerusalem, in Lebanon and throughout all the territory he ruled."} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "book": {"type": "string"}, "chapter": {"type": "integer"}, "verse": {"type": "integer"}, "word": {"type": "string"}}, "required": ["version", "book", "chapter", "verse", "word"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "postcode": {"t... | {"id" : "214a8842-4987-4c75-a4c2-28eb13cffe92", "name" : "Caistor CofE & Methodist Primary School", "code" : "A", "address" : {"addressLine1" : "Caistor", "addressLine2" : "Market Rasen", "postcode" : "LN7 6LY"}, "organisation" : {"id" : "d63dbf19-431b-48e2-9905-17ebff79d484", "code" : "1ES", "name" : "Harbour Learning... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "postcode... |
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": "null"}}, "required": ["contract", "tool", "start", "end",... | {"contract" : "0xe8f99aea488ab288f4d787f7fd75b158a5685f8a", "tool" : "securify", "start" : 1563816092.2247455, "end" : 1563816095.469135, "duration" : 3.244389533996582, "analysis" : null} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.or... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "i... | {"name" : "masnathan/object", "description" : "Super Object that can handle everything you throw at him... or almost everything.", "keywords" : ["object", "data", "handler"], "homepage" : "https://github.com/masnathan/object", "license" : "MIT", "authors" : [{"name" : "Andr\u00e9 Filipe", "email" : "andre.r.flip@gmail.... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, ... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "pr... | {"versionEnd" : {"versionNum" : 511, "commit" : "9ea8fd97bec4fa71c96a2955e142f39cd420691b", "date" : "2021-04-12T13:11:35.915Z"}, "versionStart" : {"versionNum" : 510, "commit" : "d1e083fe4a48f51e02f5fb5afee9cf596ac0d579", "date" : "2021-04-12T13:08:43.677Z"}, "changes" : ["blockchains/smartchain/assets/0xE3e8cC42DA487... | json_instruct | {"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type":... | {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Kinayan, Barobo, Surigao del Sur, Caraga (Region XIII), PH", "locale" : "ph.caraga-region-xiii.surigao-del-sur.barobo.kinayan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "5", "region_re... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"subreddit" : "TopMindsOfReddit", "hour" : "01", "avg" : 66.8452380952381}, {"subreddit" : "TopMindsOfReddit", "hour" : "02", "avg" : 142.80232558139534}, {"subreddit" : "TopMindsOfReddit", "hour" : "03", "avg" : 69.75268817204301}, {"subreddit" : "TopMindsOfReddit", "hour" : "04", "avg" : 138.24}, {"subreddit" : "To... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"africa_niamey": {"type": "object", "properties": {"abbreviations": {"type": "array", "items": {"type": "string"}}, "cca2": {"type": "string"}, "cca3": {"type": "string"}, "country_code": {"type": "string"}, "data_s... | {"africa_niamey" : {"abbreviations" : ["LMT", "WAT"], "cca2" : "NE", "cca3" : "NER", "country_code" : "NE", "data_sources" : ["timezonedb"], "record_type" : "timezone", "zone_id" : "273", "zone_name" : "Africa/Niamey"}} | json_instruct | {"type": "object", "properties": {"africa_niamey": {"type": "object", "properties": {"abbreviations": {"type": "array", "items": {"type": "string"}}, "cca2": {"type": "string"}, "cca3": {"type": "string"}, "country_code": {"type": "string"}, "data_sources": {"type": "array", "items": {"type": "string"}}, "record_type":... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "... | {"text" : "", "historical" : "Legislative History of Laws\n\nFor history of Law 18-378, see notes under \u00a7 29-101.01.\n\nDC CODE \u00a7 29-408.21\n\nCurrent through December 11, 2012", "credits" : "(July 2, 2011, D.C. Law 18-378, \u00a7 2, 58 DCR 1720.)", "sections" : [{"prefix" : "a", "text" : " A bylaw that incre... | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}}, "division": {"type": "objec... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"title": {"type": "object", "properties": {"zh": {"type": "string"}, "en": {"type": "string"}}, "required": ["zh", "en"]}, "demos": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "s... | {"title" : {"zh" : "\u57fa\u7840Tooltip", "en" : "Basic Tooltip"}, "demos" : [{"filename" : "basic.ts", "title" : {"zh" : "\u663e\u793a", "en" : "Basic Show"}, "screenshot" : "https://gw.alipayobjects.com/zos/antfincdn/UxpxDwbg2/8e48678a-c055-4c67-a2dc-3cd6fcb46b1f.png"}, {"filename" : "operation.ts", "title" : {"zh" :... | json_instruct | {"type": "object", "properties": {"title": {"type": "object", "properties": {"zh": {"type": "string"}, "en": {"type": "string"}}, "required": ["zh", "en"]}, "demos": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "title": {"type": "object", "properties": {"zh": {"type": "st... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "recalcitrate", "definition" : "To kick against; to show repugnance to; to rebuff. The more heartily did one disdain his disdain, and recalcitrate his tricks. De Quincey.\n\nTo kick back; to kick against anything; hence, to express repugnance or opposition."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"white_mist_cosmo_name": {"type": "string"}, "white_mist_cosmo_description": {"type": "string"}}, "required": ["white_mist_cosmo_name", "white_mist_cosmo_description"], "$schema": "http://json-schema.org/draft-0... | {"white_mist_cosmo_name" : "Brume blanche", "white_mist_cosmo_description" : "Les attributs principaux sont la d\u00e9fense physique et la d\u00e9fense cosmique; L'association de trois cosmos identiques donne un bonus d'augmentation de la r\u00e9sistance aux d\u00e9g\u00e2ts cosmiques de 10%."} | json_instruct | {"type": "object", "properties": {"white_mist_cosmo_name": {"type": "string"}, "white_mist_cosmo_description": {"type": "string"}}, "required": ["white_mist_cosmo_name", "white_mist_cosmo_description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "... | {"status" : 200, "data" : {"totalSubs" : 535, "subsInEachSource" : {"feedly" : 322, "inoreader" : 204, "feedsPub" : 9}, "failedSources" : {}}, "lastModified" : 1627862932283} | json_instruct | {"type": "object", "properties": {"status": {"type": "integer"}, "data": {"type": "object", "properties": {"totalSubs": {"type": "integer"}, "subsInEachSource": {"type": "object", "properties": {"feedly": {"type": "integer"}, "inoreader": {"type": "integer"}, "feedsPub": {"type": "integer"}}, "required": ["feedly", "in... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "license": ... | {"name" : "@simbo/generator-readme", "version" : "0.1.0", "description" : "A simple yeoman generator for my usual readme.", "author" : "Simon Lepel <simbo@simbo.de> (http://simbo.de)", "repository" : "simbo/generator-readme", "homepage" : "https://github.com/simbo/generator-readme#readme", "bugs" : "https://github.com/... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "license": {"type": "string"}, "publishConfig": {"type": "object", "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ticket": {"type": "object", "properties": {"iteration": {"type": "integer"}, "pkg": {"type": "string"}, "affected": {"type": "object", "properties": {"CVE-2018-5996": {"type": "object", "properties": {"branches... | {"ticket" : {"iteration" : 103, "pkg" : "p7zip-17.04", "affected" : {"CVE-2018-5996" : {"branches" : [{"name" : "nixos-21.05", "rev" : "0b8b127125e5271f5c8636680b6fe274844aaa9d"}], "score" : 7.8}, "CVE-2017-17969" : {"branches" : [{"name" : "nixos-21.05", "rev" : "0b8b127125e5271f5c8636680b6fe274844aaa9d"}], "score" : ... | json_instruct | {"type": "object", "properties": {"ticket": {"type": "object", "properties": {"iteration": {"type": "integer"}, "pkg": {"type": "string"}, "affected": {"type": "object", "properties": {"CVE-2018-5996": {"type": "object", "properties": {"branches": {"type": "array", "items": {"type": "object", "properties": {"name": {"t... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "license": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "version": {"type": "string"}, "re... | {"name" : "hre", "url" : "https://gitlab.com/demurgos/hre", "license" : "MIT", "tags" : ["cross", "utility", "regular-expression"], "description" : "Haxe Regular Expressions", "version" : "0.2.0", "releasenote" : "See CHANGELOG.md", "contributors" : ["demurgos"], "classPath" : "src", "dependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "license": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "version": {"type": "string"}, "releasenote": {"type": "string"}, "contributors": {"type": "array", "items": ... |
Please provide a valid JSON object following this schema:
{"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": ... | {"id" : 1209684275, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "3c63c48d745510c9e30463f1b2ee32aa", "wof:id" : 1209684275, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [27.5912, 47.33562, 27.5912, 47.33562], "geometry" : {"coordinates" : [27.5912, 4... | 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": ["... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "str... | {"name" : "Regent Business School", "alt_name" : "(RBS)", "country" : "South Africa", "state" : null, "address" : {"street" : "35 Samora Machel (Aliwal) Street", "city" : "Durban", "province" : "Kwazulu Natal", "postal_code" : "4001"}, "contact" : {"telephone" : "+27(31) 304-4626", "website" : "http://www.regent.ac.za"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["swt2ctx"] | 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": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type":... | {"ast" : null, "code" : "\"use strict\";\n\nvar _classCallCheck = require(\"/Users/gurvinderdehl/Documents/GitHub/New-React-Portifolio/node_modules/babel-preset-react-app/node_modules/@babel/runtime/helpers/classCallCheck\");\n\nvar _createClass = require(\"/Users/gurvinderdehl/Documents/GitHub/New-React-Portifolio/nod... | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesCont... |
Create an example JSON object that satisfies this schema:
{"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" : "7409100012", "district_id" : "7409100", "name" : "BURANGA"} | 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": "array", "items": {"type": "object", "properties": {"offenderNo": {"type": "string"}, "level": {"type": "string"}}, "required": ["offenderNo", "level"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"offenderNo" : "UNALLOC1", "level" : "high"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"offenderNo": {"type": "string"}, "level": {"type": "string"}}, "required": ["offenderNo", "level"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"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" : [[[25.983, 55.526], [26.013, 55.516], [26.109, 55.522], [26.107, 55.534], [26.184, 55.531], [26.228, 55.54], [26.222, 55.572], [26.273, 55.611], [26.318, 55.603], [26.408, 55.602], [26.39, 55.574], [26.415, 55.551], [26.467, 55.563], [26.526, 55.562... | 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... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$... | {"code" : "SOZ003", "lang" : "en", "description" : null, "name" : "Employees' social contributions", "type" : "Merkmal"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$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"}, "types": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "os": {"type": "a... | {"name" : "@waibrosports/bluetooth-hci-socket", "version" : "0.5.3-9", "description" : "Bluetooth HCI socket binding for Node.js", "main" : "index.js", "types" : "index.d.ts", "author" : "Sandeep Mistry <sandeep.mistry@gmail.com>", "license" : "MIT", "os" : ["linux"], "dependencies" : {"@mapbox/node-pre-gyp" : "^1.0.5"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "os": {"type": "array", "items": {"type": "string"}}, "dependencies": {"ty... |
Create a JSON structure that matches this 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"}, "wof:id": {"type... | {"id" : 101896127, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "a3562945d55aac2c7e2ef57954820329", "wof:id" : 101896127, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.55580361107366, 44.68104826834167, 1.5638997306051, 44.6904053959762],... | 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": ["... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {}, "required": []}, "hashing_algorithm": {"type": "string"}, "categories": {"type":... | {"id" : "mbitbooks", "symbol" : "mbit", "name" : "MBitBooks", "platforms" : {}, "hashing_algorithm" : "Scrypt", "categories" : [], "description" : {"en" : "MBitBooks is a P2P cryptocurrency which secures sharing of music and books by users on the blockchain. MBIT enables artists and authors to own and control their con... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {}, "required": []}, "hashing_algorithm": {"type": "string"}, "categories": {"type": "array", "items": {}}, "description": {"type": "object", "properties": ... |
Based on the schema below, produce a valid JSON object:
{"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"}}}}}, "requir... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[134.5, 27.916666666666668], [134.5, 28.0], [134.625, 28.0], [134.625, 27.916666666666668], [134.5, 27.916666666666668]]]}, "properties" : {"code" : 413474, "url" : "http://madefor.github.io/0410/api/v1/413474.geojson", "view" : "https://github.co... | 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": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "frustule", "definition" : "The siliceous shell of a diatom. It is composed of two valves, one overlapping the other, like a pill box and its cover."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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"}}}}}, "requ... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[145.875, 40.083333333333336], [145.875, 40.166666666666664], [146.0, 40.166666666666664], [146.0, 40.083333333333336], [145.875, 40.083333333333336]]]}, "properties" : {"code" : 604517, "url" : "http://madefor.github.io/0410/api/v1/604517.geojson... | 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 an example JSON object that satisfies this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "frequent", "definition" : "1. Often to be met with; happening at short intervals; often repeated or occurring; as, frequent visits. \"Frequent feudal towers.\" Byron. 2. Addicted to any course of conduct; inclined to indulge in any practice; habitual; persistent. He has been loud and frequent in declaring hi... | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"siteMetadata": {"type": "obj... | {"componentChunkName" : "component---src-templates-tag-template-js", "path" : "/author/pawlicka-k", "result" : {"data" : {"site" : {"siteMetadata" : {"title" : "Bioinformatics Institute Publications", "subtitle" : "Repository of all published Science Articles by our Researchers, their Group Members and Collaborators."}... | json_instruct | {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"title": {"type": "string"}, "subtitle... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Michael Wilde"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1922, 8], [1924, 11], [1925, 11], [1926, 7], [1927, 10], [1928, 5], [1933, 5], [1934, 7], [1935, 5], [1941, 6], [1958, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"version": {"type": "string"}, "configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "request": {"type": "string"}, "module": {"type":... | {"version" : "0.2.0", "configurations" : [{"name" : "Python: Upload AbuseDB", "type" : "python", "request" : "launch", "module" : "demisto_sdk", "cwd" : "${env:CONTENT}", "args" : ["upload", "-i", "${env:CONTENT}/Packs/AbuseDB/Integrations/AbuseDB"]}, {"name" : "Python: Lint AbuseDB with logs", "type" : "python", "requ... | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "request": {"type": "string"}, "module": {"type": "string"}, "cwd": {"type": "string"}, "args": {"type": "array", "items... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "latest_version": {"type": "string"}, "last_updated": {"type": "string"}, "vulnerabilities": {"type": "array", "items": {"type": "object", "properties": {"id": {... | {"slug" : "token-manager", "name" : "Token Manager", "latest_version" : "1.0.4", "last_updated" : "2018-03-27T18:59:12.136Z", "vulnerabilities" : [{"id" : "6697", "title" : "Token Manager 1.0.2 - \"tid\" Cross-Site Scripting Vulnerabilities", "created_at" : "2014-08-01T10:58:56Z", "updated_at" : "2015-05-15T13:48:01Z",... | json_instruct | {"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "latest_version": {"type": "string"}, "last_updated": {"type": "string"}, "vulnerabilities": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "created_at": {"type"... |
Following the schema specification below, generate a valid JSON instance:
{"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"... | {"artist_id" : "AREC2WV1187FB3C07D", "artist_latitude" : null, "artist_location" : "Denver, CO", "artist_longitude" : null, "artist_name" : "Sera Cahoone", "duration" : 255.45098, "num_songs" : 1, "song_id" : "SOUUNWV12A8C13C0D6", "title" : "Seven Hours Later (Album)", "year" : 2008} | 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"... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "350425400500", "text" : "\u6cfc\u6c34\u7ba1\u7406\u533a"}, {"id" : "350425400501", "text" : "\u516b\u5cf0\u7ba1\u7406\u533a"}, {"id" : "350425400502", "text" : "\u5927\u77f3\u5206\u573a"}] | 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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"ng-table.css": {"type": "string"}, "ng-table.js": {"type": "string"}, "ng-table.min.css": {"type": "string"}, "ng-table.min.js": {"type": "string"}}, "required": ["ng-table.css", "ng-table.js", "ng-table.min.css", ... | {"ng-table.css" : "sha512-WqzhcuLn/39SSdzPS5BfF+DjoPcBQ1AsgP5oYBED3kuOgddpJrv6UfAfFPZHZ9q1ncAH+nBOa92vms9nix0AJA==", "ng-table.js" : "sha512-xvhVo5pwpU3n35WT3qGhzTZ5I3Vkke+mxpISmFpWpxZlwBnE/rmhBs9IOCrnsIBBR7yAjBOO8EJSXsF2Ssx85g==", "ng-table.min.css" : "sha512-6fLqpjWxFMlFmqSBkCPuY4qxdxE9Rh0B+dHXBI1lzzYazIoq04SyfHIooSp... | json_instruct | {"type": "object", "properties": {"ng-table.css": {"type": "string"}, "ng-table.js": {"type": "string"}, "ng-table.min.css": {"type": "string"}, "ng-table.min.js": {"type": "string"}}, "required": ["ng-table.css", "ng-table.js", "ng-table.min.css", "ng-table.min.js"], "$schema": "http://json-schema.org/draft-07/schema#... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"$schema": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "example": {"type": "string"}, "required": {"type": "array", "items": {"type":... | {"$schema" : "http://json-schema.org/draft-04/schema#", "id" : "metadataRepository.json#", "type" : "object", "title" : "metadataRepository", "description" : "", "example" : "../examples/metadataRepository.json", "required" : ["repository"], "additionalProperties" : true, "properties" : {"repository" : {"type" : "strin... | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "example": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "additionalProperties": {"type": "boolean"}, "... |
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"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "UsageCo... | {"IsRecentlyVerified" : false, "ID" : 85515, "UUID" : "32F73774-6C95-4D95-9300-A35D9CD458A6", "DataProviderID" : 1, "OperatorID" : 45, "UsageTypeID" : 6, "UsageCost" : "ricarica gratuita parcheggio a pagamento", "AddressInfo" : {"ID" : 85861, "Title" : "ParkinGO NAPOLI", "AddressLine1" : "Prolungamento di Via Giaime Pi... | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "AddressInfo": {"type": "object", "properties... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "re... | {"contract" : "0xe171783da2c451186b4256727481fa30203fef86", "tool" : "manticore", "start" : 1564032226.3923411, "end" : 1564032248.189741, "duration" : 21.797399759292603, "analysis" : [[], [], [], [], [], [], [], [], []]} | 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": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "ana... |
Please provide a valid JSON object following this schema:
{"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": "str... | {"t" : "miraradiway", "h" : [{"d" : [{"f" : "\u6b63\u5728\u53cd\u5fa9\u6216\u4e0d\u505c\u5730\u5531\u8457\u3002", "e" : ["\ufff9`Miraradiw~`ay~ `i~ `ka~`k~`ilangan~ `ko~ `'ayam~.\ufffa\ufffb\u9ce5\u5728\u6a39\u6797\u88e1\u557c\u5531\u8457\u3002"]}, {"f" : "\u6307\u6b4c\u5531\u8005\uff0c\u8a60\u5531\u8005\u3002", "e" : ... | 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... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "path": {"type": "string"}}, "required": ["title", "path"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"title" : "Dashboard", "path" : "/dashboard"}, {"title" : "Teams", "path" : "/teams"}, {"title" : "Projects", "path" : "/projects"}, {"title" : "Chats", "path" : "/chats"}, {"title" : "Profile", "path" : "/profile"}, {"title" : "Settings", "path" : "/settings"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "path": {"type": "string"}}, "required": ["title", "path"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.