input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 7422, "date" : "2013-01-18 10:19:48", "user" : "vmhosts", "post" : "We are offering a special Cloud LEB promotion. Cost is \u00a34.40 GBP (plus VAT for customers in the EU)\r\n\r\nWe have recently replaced our infiniabnd network with a dedicated 10Gb network with hardware iSCSI HBA's. Our storage cluster now us... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gul... | {"name" : "jw-lighttwitterwidget", "version" : "1.0.0", "dependencies" : {}, "devDependencies" : {"gulp" : "*", "gulp-cssnano" : "*", "gulp-uglify" : "*", "gulp-rename" : "*", "gulp-sass" : "*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-cssnano": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"ty... | [{"c_ref" : "Belknap", "totals" : {"Cases" : 1694, "Deaths" : 42}, "daily" : {"Cases" : 32, "Deaths" : 1}}, {"c_ref" : "Carroll", "totals" : {"Cases" : 784, "Deaths" : 3}, "daily" : {"Cases" : 9, "Deaths" : 0}}, {"c_ref" : "Cheshire", "totals" : {"Cases" : 1143, "Deaths" : 6}, "daily" : {"Cases" : 13, "Deaths" : 0}}, {... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"__class__": {"type": "string"}, "category": {"type": "string"}, "package": {"type": "string"}, "flags": {"type": "array", "items": {"type": "string"}}}, "required": ["__class__", "category", "package", "flags"], "$sc... | {"__class__" : "MissingLocalUseDesc", "category" : "LocalUseCheck", "package" : "MissingLocalUseDesc", "flags" : ["empty", "whitespace"]} | json_instruct | {"type": "object", "properties": {"__class__": {"type": "string"}, "category": {"type": "string"}, "package": {"type": "string"}, "flags": {"type": "array", "items": {"type": "string"}}}, "required": ["__class__", "category", "package", "flags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "status": {"type": "integer"}, "headers": {"type": "object", "properties": {"content-type": {"type": "string"}}, "re... | {"responses" : [{"id" : 0, "status" : 404, "headers" : {"content-type" : "application/json"}, "body" : {"error" : {"code" : "no_handler", "message" : "No route handler was able to process this request", "target" : null, "details" : [], "innererror" : {}}}}]} | json_instruct | {"type": "object", "properties": {"responses": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "status": {"type": "integer"}, "headers": {"type": "object", "properties": {"content-type": {"type": "string"}}, "required": ["content-type"]}, "body": {"type": "object", "properties": ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "docker": {"type": "string"}, "start": {"type": "string"}, "start:graph-router": {"type": "string"}, "start:users": {"type... | {"name" : "apollo-federation-implementations", "scripts" : {"build" : "concurrently \"npm:build:*\"", "docker" : "concurrently \"npm:docker:*\"", "start" : "concurrently \"npm:start:*\"", "start:graph-router" : "node dist/graph-router.js", "start:users" : "node dist/subgraphs/users.js", "start:inventory" : "node dist/s... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "docker": {"type": "string"}, "start": {"type": "string"}, "start:graph-router": {"type": "string"}, "start:users": {"type": "string"}, "start:inventory": {"type": "string"}, "build:co... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"main": {"type": "string"}, "libPath": {"type": "string"}, "outdir": {"type": "string"}, "outCssFile": {"type": "string"}, "outJsFile": {"type": "string"}, "title": {"type": "string"}, "styles": {"type": "arra... | {"main" : "index.js", "libPath" : "../../../", "outdir" : "../", "outCssFile" : "samples.css", "outJsFile" : "samples.js", "title" : "Spotlight Samples", "styles" : ["*.less"], "assets" : ["assets/**/*.*"]} | json_instruct | {"type": "object", "properties": {"main": {"type": "string"}, "libPath": {"type": "string"}, "outdir": {"type": "string"}, "outCssFile": {"type": "string"}, "outJsFile": {"type": "string"}, "title": {"type": "string"}, "styles": {"type": "array", "items": {"type": "string"}}, "assets": {"type": "array", "items": {"type... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToProcessedPerformance": {"type": "object", "properties": {"9322e883-5305-4086-a2e9-b2ee90d95325": {"type": "integer"}, "e5c10f7e-61e9-4... | {"configuration" : ["UPSCALINGALGORITHM", "SKIPUPSCALING", "DOWNSCALINGALGORITHM", "SCALEMODE"], "regionsToProcessedPerformance" : {"9322e883-5305-4086-a2e9-b2ee90d95325" : -7293, "e5c10f7e-61e9-485d-8ccc-fccee29dfe52" : 1311566291, "dd633998-ffd1-45a9-8f5a-75a618ff5ca7" : -6570, "081c8632-590b-45cd-8fb8-54355461d1d8" ... | json_instruct | {"type": "object", "properties": {"configuration": {"type": "array", "items": {"type": "string"}}, "regionsToProcessedPerformance": {"type": "object", "properties": {"9322e883-5305-4086-a2e9-b2ee90d95325": {"type": "integer"}, "e5c10f7e-61e9-485d-8ccc-fccee29dfe52": {"type": "integer"}, "dd633998-ffd1-45a9-8f5a-75a618f... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"server1": {"type": "object", "properties": {"hostname": {"type": "null"}, "username": {"type": "null"}, "password": {"type": "null"}, "database": {"type": "null"}, "port": {"type": "null"}, "socket": {"type": "null"}}, "required... | {"server1" : {"hostname" : null, "username" : null, "password" : null, "database" : null, "port" : null, "socket" : null}, "server2" : {"hostname" : null, "username" : null, "password" : null, "database" : null, "port" : null, "socket" : null}} | json_instruct | {"type": "object", "properties": {"server1": {"type": "object", "properties": {"hostname": {"type": "null"}, "username": {"type": "null"}, "password": {"type": "null"}, "database": {"type": "null"}, "port": {"type": "null"}, "socket": {"type": "null"}}, "required": ["hostname", "username", "password", "database", "port... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "title": {"type": "string"}, "uploaded_by": {"type": "string"}, "upload_date": {"type": "string"}, "views": {"type": "integer"}, "likes": {"type": "integer"}, "t... | {"id" : "27", "url" : "https://www.youtube.com/watch?v=CG7lI5ZUdag", "title" : "How to use Grafana with Logsene", "uploaded_by" : "Sematext", "upload_date" : "2015-11-26", "views" : 5830, "likes" : 2, "tags" : ["grafana", "logging", "sematext", "logsene", "elasticsearch"]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "title": {"type": "string"}, "uploaded_by": {"type": "string"}, "upload_date": {"type": "string"}, "views": {"type": "integer"}, "likes": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number... | {"artist_id" : "ARHJHQX1187FB4503A", "artist_latitude" : 34.05349, "artist_location" : "Los Angeles, CA", "artist_longitude" : -118.24532, "artist_name" : "The Little Ones", "duration" : 216.78975, "num_songs" : 1, "song_id" : "SOSJZKG12A8C131A72", "title" : "Ordinary Song (Album Version)", "year" : 0} | json_instruct | {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "number"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "number"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "ti... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[2004, 9], [2005, 7]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["t... | {"name" : "mixpanel-parse", "version" : "0.0.1", "description" : "Mixpanel for Parse Cloud Code", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "http://github.com/brennanMKE/mixpanel-parse.git"}, "keywords" : ["mixpanel", "analytics", "a... | 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... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"css/ng-slider.min.css": {"type": "string"}, "ng-slider.min.js": {"type": "string"}}, "required": ["css/ng-slider.min.css", "ng-slider.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"css/ng-slider.min.css" : "sha256-NMqnwyajWZ+ayt1zaFUsdMJ7K+P+BF3k15zbkOHDm9w=", "ng-slider.min.js" : "sha256-DZyY8c8DyTJOyiITTaXf5Y0AeWLX2xAunwAdlgaYV9w="} | json_instruct | {"type": "object", "properties": {"css/ng-slider.min.css": {"type": "string"}, "ng-slider.min.js": {"type": "string"}}, "required": ["css/ng-slider.min.css", "ng-slider.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"new_version" : "2.2.3"} | json_instruct | {"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"scripts/Vidage.js": {"type": "string"}, "scripts/Vidage.min.js": {"type": "string"}, "styles/Vidage.css": {"type": "string"}, "styles/Vidage.min.css": {"type": "string"}}, "required": ["scripts/Vidage.js", "s... | {"scripts/Vidage.js" : "sha256-RVprQZgf/zUdQlGFOBGBgrIAJeoNFdZ+oq8Uy8bwWWQ=", "scripts/Vidage.min.js" : "sha256-qOc/LjDbOgHqPY4C2ZhB6aXNAipe+Mmd4HeLhailuXE=", "styles/Vidage.css" : "sha256-umQxmiOqeL02aAbcHyz91jd7FOqd8p1KEDEyv952V84=", "styles/Vidage.min.css" : "sha256-avVnkZwQAVsS08D6yz4PfgS6cJWvrgxQr5sqKrPWqa8="} | json_instruct | {"type": "object", "properties": {"scripts/Vidage.js": {"type": "string"}, "scripts/Vidage.min.js": {"type": "string"}, "styles/Vidage.css": {"type": "string"}, "styles/Vidage.min.css": {"type": "string"}}, "required": ["scripts/Vidage.js", "scripts/Vidage.min.js", "styles/Vidage.css", "styles/Vidage.min.css"], "$schem... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "1216082001", "nama" : "Batu Nagodang Siatas"}, {"id" : "1216082002", "nama" : "Onan Ganjang"}, {"id" : "1216082003", "nama" : "Parbotihan"}, {"id" : "1216082004", "nama" : "Sihikit"}, {"id" : "1216082005", "nama" : "Parnapa"}, {"id" : "1216082006", "nama" : "Janji Nagodang"}, {"id" : "1216082007", "nama" : "S... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft... | {"word" : "Noxious", "definitions" : ["Harmful, poisonous, or very unpleasant."], "parts-of-speech" : "Adjective"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"index": {"type": "integer"}, "lineNumber": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}, "description": {"type": "string"}}, "required": ["index", "lineNumber", "column", "message", "descript... | {"index" : 4, "lineNumber" : 1, "column" : 5, "message" : "Error: Line 1: Unexpected token let", "description" : "Unexpected token let"} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "lineNumber": {"type": "integer"}, "column": {"type": "integer"}, "message": {"type": "string"}, "description": {"type": "string"}}, "required": ["index", "lineNumber", "column", "message", "description"], "$schema": "http://json-schema.org/draft-07/schema... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"continent": {"type": "string"}, "countries": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "flag": {"type": "string"}}, "required": ["name", "fla... | [{"continent" : "Africa", "countries" : [{"name" : "Nigeria", "flag" : "\ud83c\uddf3\ud83c\uddec"}, {"name" : "Ethiopia", "flag" : "\ud83c\uddea\ud83c\uddf9"}, {"name" : "Egypt", "flag" : "\ud83c\uddea\ud83c\uddec"}, {"name" : "DR Congo", "flag" : "\ud83c\udde8\ud83c\udde9"}, {"name" : "South Africa", "flag" : "\ud83c\... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"continent": {"type": "string"}, "countries": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "flag": {"type": "string"}}, "required": ["name", "flag"]}}}, "required": ["continent", "countries"]}, "$schema": "http://js... |
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": {}}}, "required": ["userId", "cartId", "preferredPr... | {"userId" : 50061, "cartId" : "97194e5a-052b-4fc2-93a6-0c4bd40c0f89", "preferredProducts" : [685, 322, 2021, 4730, 1138, 4823], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.... |
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": {"start": {"type": "string"}}, "required": ["start"]}, "repos... | {"name" : "emo-db", "version" : "0.2.0", "description" : "JSON Based Database, Specifically For Normal Discord Bots", "main" : "emo-db.js", "scripts" : {"start" : "node emo-db.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/LegendaryEmoji/emo-db.git"}, "keywords" : ["JSON", "Database", "Emo"], "au... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "repository": {"type": "object", "properties": {"type": {"type": ... |
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" : ["Place the 2 cups water, tea bag, and bay leaf into a pot, and bring water to a boil. Reserving about 1/2 cup garbanzo beans, stir the beans into the boiling water. When beans are heated through, discard the tea bag and bay leaf. Remove from heat. Drain the beans, reserving water, and set aside.", "Hea... | 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... |
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" : "341623401001", "text" : "\u5f20\u5be8\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "341623401200", "text" : "\u8463\u8001\u5be8\u6751\u59d4\u4f1a"}, {"id" : "341623401201", "text" : "\u6768\u5927\u697c\u6751\u59d4\u4f1a"}, {"id" : "341623401202", "text" : "\u95eb\u96c6\u6751\u6751\u59d4\u4f1a"}, {"id" : "34162340... | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "cities_entry_css_selectors": {"type": "array", "items": {"type": "string"}}, "city_css_selector": {"type": "string"}, "city_select_form_selector": {"type": "str... | {"name" : "21 Cineplex", "url" : "http://www.21cineplex.com/", "cities_entry_css_selectors" : ["li.mn4 > a"], "city_css_selector" : "select#sl_city option", "city_select_form_selector" : "select#sl_city", "theaters_entry_css_selectors" : ["li.mn4 > a"], "theater_css_selector" : "table.table-theater tr[data-city='{{valu... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "cities_entry_css_selectors": {"type": "array", "items": {"type": "string"}}, "city_css_selector": {"type": "string"}, "city_select_form_selector": {"type": "string"}, "theaters_entry_css_selectors": {"type": "array", "items": {"ty... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"right": {"type": "number"}, "bottom": {"type": "number"}, "top":... | {"frame_id" : 5028, "walking" : "1", "video_id" : "VID_20161007_131547_reduced", "bbs" : [{"right" : 0.682455, "bottom" : 0.485571, "top" : 0.028857, "recognized" : false, "bb_big_enough" : true, "class" : "artwork", "left" : 0.289301}, {"artwork_id" : "david_bronzo_donatello", "right" : 0.486529, "bottom" : 0.763512, ... | json_instruct | {"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "recognized": {"type": "boolean"}, "... |
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"}, "type": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "type"], "... | {"name" : "Astatos Token", "symbol" : "ASTT", "address" : "0x7bbef2035c3bbe8d99e4ac027ba0eba501bf8957", "decimals" : 18, "type" : "ERC20"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "type": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "statue", "definition" : "1. The likeness of a living being sculptured or modeled in some solid substance, as marble, bronze, or wax; an image; as, a statue of Hercules, or of a lion. I will raise her statue in pure gold. Shak. 2. A portrait. [Obs.] Massinger.\n\nTo place, as a statue; to form a statue of; to... | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "7603081019", "district_id" : "7603081", "name" : "RANTETARIMA"} | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["pygmt"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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": "numb... | {"id" : "4651370", "name" : "Chelveston Way", "nodes" : [{"type" : "node", "id" : 29597234, "lat" : 52.584543, "lon" : -0.2685688}, {"type" : "node", "id" : 29597235, "lat" : 52.5845757, "lon" : -0.2678527}, {"type" : "node", "id" : 29597237, "lat" : 52.584615, "lon" : -0.2668773, "tags" : {"created_by" : "JOSM"}}, {"t... | 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": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"typ... | {"geometry" : {"type" : "Point", "coordinates" : [-76.79, 40.89]}, "type" : "Feature", "id" : "17857", "properties" : {"other_cities" : "Northumberlnd", "city" : "Northumberland", "state" : "PA", "county" : "Northumberland County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_c... |
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"}}, "required": ["test"]}, "reposit... | {"name" : "mockman", "version" : "0.5.0", "description" : "MockMan is a simple library to help create test mocks and stubs.", "main" : "index.js", "scripts" : {"test" : "node_modules/.bin/mocha --recursive tests/"}, "repository" : {"type" : "git", "url" : "https://github.com/JANorman/MockMan.git"}, "keywords" : ["testi... | 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... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"#": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "Y": {"t... | {"type" : "minecraft:crafting_shaped", "pattern" : ["#Y ", "G n", "YY "], "key" : {"#" : {"item" : "minecraft:redstone_lamp"}, "Y" : {"item" : "minecraft:yellow_concrete"}, "G" : {"item" : "minecraft:glass"}, "n" : {"item" : "minecraft:netherite_ingot"}}, "result" : {"item" : "nauticality:submarine", "count" : 1}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"#": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "Y": {"type": "object", "properties": {"item": {"type": "string"}},... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "run_at": {"type": "string"}, "find": {"type": "string"}, "severity": {"type": "integer"}, "options": {"type": "array", "items": {"type": "string"}}, "request": {"type": "null"}, "matche... | {"name" : "Server header exposure", "run_at" : "response", "find" : "once", "severity" : 1, "options" : ["passive"], "request" : null, "matches" : [{"type" : "exists", "location" : "headers", "match" : "server", "options" : ["ignore_case"]}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "run_at": {"type": "string"}, "find": {"type": "string"}, "severity": {"type": "integer"}, "options": {"type": "array", "items": {"type": "string"}}, "request": {"type": "null"}, "matches": {"type": "array", "items": {"type": "object", "properties": {"type":... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-... | {"variants" : {"" : {"model" : "galacticraft-rewoven:block/moon_copper_ore"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]... | {"name" : "TrimR", "version" : "1.0.0", "description" : "### Our final project", "main" : "server/index.js", "scripts" : {"test" : "source .variables && nodemon"}, "repository" : {"type" : "git", "url" : "git+https://github.com/CFin86/trimr2.0.git"}, "author" : "Chris Finney, Taylor Rowell, Ray Randle", "license" : "Tr... | 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... |
Please provide a valid JSON object following 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" : 71690, "cartId" : "fa67caa3-563e-4f80-83ad-e8b921a35c94", "preferredProducts" : [567, 1747, 4604, 1782, 4699, 4386, 4171, 1229, 4576, 3500], "productReviews" : [{"productId" : 2000, "reviewText" : "I saw one of these in Grenada and I bought one.", "reviewDate" : "2019-04-26T08:19:54.833722+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... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"label": {"type": "string"}, "id": {"type": "string"}, "_sink": {"type": "string"}, "_sinkLabel": {"type": "string"}, "_vertexId": {"type": "string"}, "_vertexLabel": {"type": "string"}, "_isEdge": {"type": "b... | {"label" : "seenIn", "id" : "2bc61ae8-6b16-4a12-b954-9c7687a9d057", "_sink" : "932bc2b1-1346-4c45-a570-c593269f4459", "_sinkLabel" : "comic", "_vertexId" : "ca2b51ce-40d9-41bb-b092-703a4b751bdb", "_vertexLabel" : "hero", "_isEdge" : true, "_rid" : "VyAjAPMRAABKAwAAAAAAAA==", "_self" : "dbs/VyAjAA==/colls/VyAjAPMRAAA=/d... | json_instruct | {"type": "object", "properties": {"label": {"type": "string"}, "id": {"type": "string"}, "_sink": {"type": "string"}, "_sinkLabel": {"type": "string"}, "_vertexId": {"type": "string"}, "_vertexLabel": {"type": "string"}, "_isEdge": {"type": "boolean"}, "_rid": {"type": "string"}, "_self": {"type": "string"}, "_etag": {... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {}, "required": []}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items":... | {"type" : "Feature", "properties" : {}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-4.031982421875, 50.03773778732018], [-2.8535567626953124, 50.49298247969465], [-2.8547286987304688, 50.78356622849899], [-3.0476760864257812, 50.91190894618443], [-3.161144256591797, 50.94858614505608], [-3.2488632202148438, 5... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {}, "required": []}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01023134": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"},... | {"type" : "Topology", "objects" : {"E01023134" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00117532", "LAD11CD" : "E07000092"}, "arcs" : [[0, 1, 2]]}, {"type" : "Polygon", "prope... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01023134": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type... | {"name" : "xuqingjia", "version" : "0.0.1", "summary" : "A short description of xuqingjia.", "homepage" : "https://code.vipkid.com.cn/xuqingjia/testspec1", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"xuqingjia" : "xuqingjia@vipkid.com.cn"}, "platforms" : {"ios" : null}, "source" : {"git" : "ssh://gi... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test-watch": ... | {"name" : "deferred-effects", "version" : "1.0.0", "description" : "", "main" : "src/index.js", "scripts" : {"test" : "tape test/*.js | tap-min", "test-watch" : "find package.json src/*.js test/*.js | entr -c npm run test", "build-examples" : "mkdir -p public/examples; ./node_modules/.bin/browserify -o public/examples/... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test-watch": {"type": "string"}, "build-examples": {"type": "string"}, "build-examples-wat... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "id": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}... | {"schemaVersion" : 1, "id" : "malthermal", "version" : "${version}", "name" : "Malthermal", "description" : "A quasi-real thermal dynamical mod", "authors" : ["switefaster", "Yaossg", "InitAuther97"], "contact" : {"website" : "sifsstudio.com/malthermal", "repo" : "https://github.com/SFS-Studio/malthermal-fabric"}, "lic... | json_instruct | {"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "id": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "contact": {"type": "object", "properties": {"website": {"type": "str... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"info": {"type": "object", "properties": {"project": {"type": "string"}, "developers": {"type": "integer"}, "edges": {"type": "integer"}, "vertices": {"type": "integer"}, "commits": {"type": "integer"}, "id": {"type": "integer"... | {"info" : {"project" : "request/request", "developers" : 2, "edges" : 2, "vertices" : 2, "commits" : 2, "id" : 21, "agedays" : 22, "refactorings" : 1, "group" : "Overtime", "language" : "JavaScript", "level" : "Function", "summary" : ""}, "commits_list" : ["8eeeafe", "aec2fc1"], "edges" : [{"id" : 39, "before" : "lib.c... | json_instruct | {"type": "object", "properties": {"info": {"type": "object", "properties": {"project": {"type": "string"}, "developers": {"type": "integer"}, "edges": {"type": "integer"}, "vertices": {"type": "integer"}, "commits": {"type": "integer"}, "id": {"type": "integer"}, "agedays": {"type": "integer"}, "refactorings": {"type":... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "r... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[127.75, 45.333333333333336], [127.75, 45.416666666666664], [127.875, 45.416666666666664], [127.875, 45.333333333333336], [127.75, 45.333333333333336]]]}, "properties" : {"code" : 682706, "url" : "http://madefor.github.io/0410/api/v1/682706.geojso... | 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... |
Based on the schema below, produce a valid JSON object:
{"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": "i... | {"id" : 1126035547, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "fa37d28523bbba6a3160648db3f7851d", "wof:id" : 1126035547, "wof:repo" : "whosonfirst-data-admin-ch"}, "bbox" : [8.73017, 46.87259, 8.73017, 46.87259], "geometry" : {"coordinates" : [8.73017, 46.8725... | 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": {"deviceId": {"type": "string"}, "serverIp": {"type": "string"}, "serverPort": {"type": "integer"}, "sshServer": {"type": "string"}, "sshServerPort": {"type": "integer"}, "sshTunnelPort": {"type": "string"}}, "requir... | {"deviceId" : "5a4567a2236fa30097d94420", "serverIp" : "p2pvps.net", "serverPort" : 3001, "sshServer" : "p2pvps.net", "sshServerPort" : 6100, "sshTunnelPort" : "6165"} | json_instruct | {"type": "object", "properties": {"deviceId": {"type": "string"}, "serverIp": {"type": "string"}, "serverPort": {"type": "integer"}, "sshServer": {"type": "string"}, "sshServerPort": {"type": "integer"}, "sshTunnelPort": {"type": "string"}}, "required": ["deviceId", "serverIp", "serverPort", "sshServer", "sshServerPort... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type"... | {"code" : 3321050015, "parent" : 3321050, "name" : "REJOSARI", "latitude" : null, "longitude" : null, "postal" : [59561, 59566], "children" : []} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "n... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"/api": {"type": "object", "properties": {"target": {"type": "string"}, "secure": {"type": "boolean"}}, "required": ["target", "secure"]}}, "required": ["/api"], "$schema": "http://json-schema.org/draft-07/schema#"}... | {"/api" : {"target" : "`http://localhost/real-back/backend/api`", "secure" : false}} | json_instruct | {"type": "object", "properties": {"/api": {"type": "object", "properties": {"target": {"type": "string"}, "secure": {"type": "boolean"}}, "required": ["target", "secure"]}}, "required": ["/api"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "locationSet": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["include"]}, "strings":... | {"id" : "ym-Institute-of-Crisis-Management-Studies", "type" : "youthmappers", "locationSet" : {"include" : [[85.34173, 27.72759]]}, "strings" : {"name" : "Institute of Crisis Management Studies YouthMappers", "description" : "YouthMappers chapter at Institute of Crisis Management Studies", "extendedDescription" : "To d... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "locationSet": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["include"]}, "strings": {"type": "object", "properties": {"name": {"type": "string... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "in... | {"lastUpdated" : 1655019279666, "username" : "Quan", "scores" : [{"xp" : 2513, "rank" : 350, "cardId" : 580}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["last... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Sources": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "ra": {"type": "number"}, "dec": {"type": "number"}, "epoch": {"type": "null"}, "equinox": {"type": "null"}... | {"Sources" : [{"source" : "2MASS J10042066+5022596", "ra" : 151.08608, "dec" : 50.383222, "epoch" : null, "equinox" : null, "shortname" : "1004+5022", "reference" : "Rebo98", "comments" : null}], "Names" : [{"other_name" : "2MASS J10042066+5022596"}, {"other_name" : "2MASSW J1004207+502300"}, {"other_name" : "G 196-3B"... | json_instruct | {"type": "object", "properties": {"Sources": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "ra": {"type": "number"}, "dec": {"type": "number"}, "epoch": {"type": "null"}, "equinox": {"type": "null"}, "shortname": {"type": "string"}, "reference": {"type": "string"}, "comments... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type... | {"files" : {"main.css" : "/static/css/main.359cffc6.chunk.css", "main.js" : "/static/js/main.ac7c3eeb.chunk.js", "main.js.map" : "/static/js/main.ac7c3eeb.chunk.js.map", "runtime-main.js" : "/static/js/runtime-main.ee8d1c0e.js", "runtime-main.js.map" : "/static/js/runtime-main.ee8d1c0e.js.map", "static/js/2.6d0ac849.ch... | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.6d0ac849.chunk.js": {"type": "string"}, "static/js... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-pdo": {"type": "string"}, "ext-pdo_sqlite": {"... | {"name" : "alexmasterov/url-shortener-demo", "description" : "Demo of URL Shortener Service", "license" : "MIT", "require" : {"php" : "^7.0", "ext-pdo" : "*", "ext-pdo_sqlite" : "*", "equip/framework" : "dev-master#93aa4fa as 2.0", "zendframework/zend-diactoros" : "^1.3", "josegonzalez/dotenv" : "^2.0", "alexmasterov/e... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-pdo": {"type": "string"}, "ext-pdo_sqlite": {"type": "string"}, "equip/framework": {"type": "string"}, "zendframewo... |
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" : 1126050873, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "b86aea4e7d859cc6baf477c12e7f7fb1", "wof:id" : 1126050873, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [6.77343, 48.97984, 6.77343, 48.97984], "geometry" : {"coordinates" : [6.77343, 48.9798... | 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": {"instantsearch-theme-algolia.css": {"type": "string"}, "instantsearch-theme-algolia.min.css": {"type": "string"}, "instantsearch-theme-algolia.nomin.css": {"type": "string"}, "instantsearch.css": {"type": "string"}, ... | {"instantsearch-theme-algolia.css" : "sha256-VcPtP8NSZrqlePNzFV/WGCXFZviqyJPogc05F1TMdzI=", "instantsearch-theme-algolia.min.css" : "sha256-nKf9oHyCZrQxJIhY6NW/8C9sVyUNwZcIVKj/0u55hhU=", "instantsearch-theme-algolia.nomin.css" : "sha256-zncM1K+7FKjAqbC06spPF5yrpuGfVUoBW5GzXqUTfxA=", "instantsearch.css" : "sha256-bdkkde... | json_instruct | {"type": "object", "properties": {"instantsearch-theme-algolia.css": {"type": "string"}, "instantsearch-theme-algolia.min.css": {"type": "string"}, "instantsearch-theme-algolia.nomin.css": {"type": "string"}, "instantsearch.css": {"type": "string"}, "instantsearch.js": {"type": "string"}, "instantsearch.min.css": {"typ... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["a1atscript", "angular-currency-format", "angular-new-router", "angular-new-router-latest", "angular111", "angular_project", "apinatomy-core", "aqueduct", "arrayfire_js", "baby-engine", "backpack-node", "base-node", "blact", "castleblack", "chesslib", "chessview", "cmake-js", "componentmanager", "definitely-marked", "... | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"host": {"type": "string"}, "user": {"type": "string"}, "password": {"type": "string"}, "database": {"type": "string"}}, "required": ["host", "user", "password", "database"], "$schema": "http://json-schema.org/draf... | {"host" : "sql12.freemysqlhosting.net", "user" : "sql12310953", "password" : "Rg4zS5ceei", "database" : "sql12310953"} | json_instruct | {"type": "object", "properties": {"host": {"type": "string"}, "user": {"type": "string"}, "password": {"type": "string"}, "database": {"type": "string"}}, "required": ["host", "user", "password", "database"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"C_Cpp.default.configurationProvider": {"type": "string"}, "cmake.configureOnOpen": {"type": "boolean"}, "cmake.saveBeforeBuild": {"type": "boolean"}, "cmake.configureArgs": {"type": "array", "items": {"type": "string"}}}, "... | {"C_Cpp.default.configurationProvider" : "vector-of-bool.cmake-tools", "cmake.configureOnOpen" : true, "cmake.saveBeforeBuild" : true, "cmake.configureArgs" : ["-DCMAKE_TOOLCHAIN_FILE:PATH=${env:CMAKE_VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake", "-DVCPKG_TARGET_TRIPLET=x64-windows-static"]} | json_instruct | {"type": "object", "properties": {"C_Cpp.default.configurationProvider": {"type": "string"}, "cmake.configureOnOpen": {"type": "boolean"}, "cmake.saveBeforeBuild": {"type": "boolean"}, "cmake.configureArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["C_Cpp.default.configurationProvider", "cmake.conf... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/hydra-avro/pom.xml": {"type": "integer"}}, "required": ["/hydra-avro/pom.xml"]}, "pull_request": {"type": "string"}, "report": {"type"... | {"project_name" : "addthis/hydra", "files" : {"/hydra-avro/pom.xml" : 1}, "pull_request" : "https://github.com/addthis/hydra/pull/300", "report" : {"files_fixed" : 1, "vulnerabilities_fixed" : 1}} | json_instruct | {"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/hydra-avro/pom.xml": {"type": "integer"}}, "required": ["/hydra-avro/pom.xml"]}, "pull_request": {"type": "string"}, "report": {"type": "object", "properties": {"files_fixed": {"type": "integer"}, "vulnera... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"abc": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "def": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"... | {"abc" : {"type" : "integer", "value" : "123"}, "def" : {"type" : "integer", "value" : "456"}, "ghi" : {"type" : "integer", "value" : "789"}} | json_instruct | {"type": "object", "properties": {"abc": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "def": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "string"}}, "required": ["type", "value"]}, "ghi": {"type": "object"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"@context": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "motivation": {"type": "string"}, "body": {"type": "string"}, "target": {"type": "object", "properties": {"type": {"type": "string"}, "items": ... | {"@context" : "http://www.w3.org/ns/anno.jsonld", "id" : "http://example.org/anno13", "type" : "Annotation", "motivation" : "classifying", "body" : "http://example.org/vocab/art/portrait", "target" : {"type" : "Independents", "items" : ["http://example.com/image1", "http://example.net/image2", "http://example.com/image... | json_instruct | {"type": "object", "properties": {"@context": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "motivation": {"type": "string"}, "body": {"type": "string"}, "target": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "array", "items": {"type": "string"}}}, "require... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "qualityRules": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type"... | {"id" : 1061127, "name" : "CWE-1073 - Non-SQL Invokable Control Element with Excessive Number of Data Resource Accesses", "href" : "AIP/technical-criteria/1061127", "description" : "The software contains a client with a function or method that contains a large number of data accesses/queries that are sent through a dat... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "qualityRules": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}, "qualityTemplates": {"type": "... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"builders": {"type": "array", "items": {"type": "object", "properties": {"http_directory": {"type": "string"}, "http_port_min": {"type": "string"}, "boot_wait": {"type": "string"}, "boot_command": {"type": "ar... | {"builders" : [{"http_directory" : "packer/http", "http_port_min" : "8100", "boot_wait" : "35s", "boot_command" : ["<wait><enter>", "<wait><enter>", "<wait><enter>", "<wait><down>", "<wait><enter>", "<wait><left>", "<wait><enter>", "<wait><enter>", "<wait><up>", "<wait><enter>", "<wait><enter>", "<wait><enter>", "<wait... | json_instruct | {"type": "object", "properties": {"builders": {"type": "array", "items": {"type": "object", "properties": {"http_directory": {"type": "string"}, "http_port_min": {"type": "string"}, "boot_wait": {"type": "string"}, "boot_command": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "iso_url": {"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"clarity-icons-lite.umd.js": {"type": "string"}, "clarity-icons.min.css": {"type": "string"}, "clarity-icons.min.js": {"type": "string"}, "shapes/basic-shapes.umd.js": {"type": "string"}, "shapes/essential-shapes.um... | {"clarity-icons-lite.umd.js" : "sha256-Ifk3wc26h+goTQsrtgoJrE6u1PoGo3x6nevdOAEkBug=", "clarity-icons.min.css" : "sha256-sW3shWzAvZPSDgOgnX+pWOqKkhHtMG00XXGUbS6kVDc=", "clarity-icons.min.js" : "sha256-V2s8GfuJRfow8lEXdkSWLtnWxddNy0SarurPkmIPzNw=", "shapes/basic-shapes.umd.js" : "sha256-PK3bcsQscXiROIoO1b9uP/2eX6qkJXnrb1... | json_instruct | {"type": "object", "properties": {"clarity-icons-lite.umd.js": {"type": "string"}, "clarity-icons.min.css": {"type": "string"}, "clarity-icons.min.js": {"type": "string"}, "shapes/basic-shapes.umd.js": {"type": "string"}, "shapes/essential-shapes.umd.js": {"type": "string"}, "shapes/social-shapes.umd.js": {"type": "str... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"cy:run": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}... | {"name" : "@treehub/client", "version" : "0.0.0", "description" : "Treehub Client", "scripts" : {"cy:run" : "cypress run -b chrome", "start" : "superstatic --port 8080", "test" : "start-server-and-test start http://localhost:8080/ cy:run"}, "repository" : {"type" : "git", "url" : "git+https://github.com/treehub-com/cli... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"cy:run": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["cy:run", "start", "test"]}, "repository": {"t... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["co... | {"contract" : "0xbe453c03ad2910db7a4709ecf2f74a34aab3a9f1", "tool" : "oyente", "start" : 1563826930.2677732, "end" : 1563826934.350471, "duration" : 4.082697868347168, "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": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"bounding boxes": {"type": "array", "items": {"type": "object", "properties": {"center": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}, "width": {"type": "number"}, "... | {"bounding boxes" : [{"center" : {"x" : 10.30030044813266, "y" : -9.961548194656356}, "width" : 2.5943504278395277, "length" : 6.053485953184599, "angle" : -1.307958692073214, "object_id" : "2d0"}, {"center" : {"x" : 17.650229292548396, "y" : -1.8227924966860987}, "width" : 2.21601087721266, "length" : 5.56704814355315... | json_instruct | {"type": "object", "properties": {"bounding boxes": {"type": "array", "items": {"type": "object", "properties": {"center": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}, "width": {"type": "number"}, "length": {"type": "number"}, "angle": {"type": "number"},... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": ... | {"web" : [{"value" : ["\u5355\u7c27\u7ba1", "\u5355\u7c27\u7ba1", "\u7ad6\u7b1b"], "key" : "Clarinet"}, {"value" : ["\u5355\u7c27\u7ba1"], "key" : "The clarinet"}, {"value" : ["\u5c0f\u9ad8\u97f3\u5355\u7c27\u7ba1"], "key" : "sopranino clarinet"}], "query" : "clarinet", "translation" : ["\u5355\u7c27\u7ba1"], "errorCod... | json_instruct | {"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCod... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"issue_url": {"type": "string"}, "publication_date": {"type": "string"}, "article": {"type": "array", "items": {"type": "string"}}}, "required": ["issue_url", "publication_date", "article"], "$schema": "http://json... | {"issue_url" : "https://www.aeaweb.org/issues/610", "publication_date" : "November 2020", "article" : ["/articles?id=10.1257/mic.12.4.i", "/articles?id=10.1257/mic.20170056", "/articles?id=10.1257/mic.20170179", "/articles?id=10.1257/mic.20170403", "/articles?id=10.1257/mic.20180038", "/articles?id=10.1257/mic.20180028... | json_instruct | {"type": "object", "properties": {"issue_url": {"type": "string"}, "publication_date": {"type": "string"}, "article": {"type": "array", "items": {"type": "string"}}}, "required": ["issue_url", "publication_date", "article"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["Start typing to search from menu.", "Menu search can predict item codes by performing an acronym search.", "Type a number before the search to add a number of items to the order.", "Search results are sorted by relevance then name.", "You can search the word 'burger' even if it is part of a longer word like 'cheesebu... | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"... | {"name" : "ng-FRNT", "version" : "0.0.1", "description" : "NPM dependencies for ng-FRNT", "author" : "Joe Taylor <jm_taylor@live.co.uk>", "repository" : {"type" : "git", "url" : "https://github.com/JTLR/ng-FRNT"}, "license" : "MIT", "devDependencies" : {"babel-preset-es2015" : "^6.24.1", "bower" : "^1.7.9", "grunt" : "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"season": {"type": "integer"}, "name": {"type": "string"}, "year": {"type": "string"}, "rated": {"type": "string"}, "released": {"type": "null"}, "episode": {"type": "integer"}, "runtime": {"type": "string"}, "genres": {"type": "... | {"season" : 1, "name" : "The Limo", "year" : "2005", "rated" : "TV-14", "released" : null, "episode" : 11, "runtime" : "23 min", "genres" : "Comedy, Romance", "director" : "Pamela Fryman", "writer" : "Carter Bays (created by), Craig Thomas (created by), Sam Johnson, Chris Marcil, Kourtney Kang (executive story editor)"... | json_instruct | {"type": "object", "properties": {"season": {"type": "integer"}, "name": {"type": "string"}, "year": {"type": "string"}, "rated": {"type": "string"}, "released": {"type": "null"}, "episode": {"type": "integer"}, "runtime": {"type": "string"}, "genres": {"type": "string"}, "director": {"type": "string"}, "writer": {"typ... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "latest_version": {"type": "string"}, "last_updated": {"type": "string"}, "vulnerabilities": {"type": "null"}}, "required": ["slug", "name", "latest_version", "last_update... | {"slug" : "to-top", "name" : "To Top", "latest_version" : "1.5.5", "last_updated" : "2018-03-27T16:51:36.198Z", "vulnerabilities" : null} | json_instruct | {"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "latest_version": {"type": "string"}, "last_updated": {"type": "string"}, "vulnerabilities": {"type": "null"}}, "required": ["slug", "name", "latest_version", "last_updated", "vulnerabilities"], "$schema": "http://json-schema.org/... |
Please provide a valid JSON object following this schema:
{"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"}, "... | {"text" : {"0" : {"m1" : "\u0627\u0648\u0644 \u0632 \u0647\u0645\u0647 \u06a9\u0627\u0631 \u062c\u0647\u0627\u0646 \u067e\u0627\u06a9 \u0634\u062f\u0645", "m2" : "\u0648\u0627\u062e\u0631 \u0632 \u063a\u0645\u062a \u0628\u0627\u062f\u0644 \u063a\u0645\u0646\u0627\u06a9 \u0634\u062f\u0645"}, "1" : {"m1" : "\u062f\u0633\... | 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... |
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": "arr... | {"type" : "Feature", "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-0.099672, 51.3798], [-0.099073, 51.379747], [-0.098963, 51.380075], [-0.098911, 51.380115], [-0.098932, 51.380123], [-0.098863, 51.380295], [-0.098902, 51.380316], [-0.098787, 51.380612], [-0.099551, 51.380683], [-0.099368, 51.3812], [-0.0... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contrac... | {"contract" : "0xdda65daa223aaae4add64e4e390cda7101c4ab41", "tool" : "slither", "start" : 1563564820.393226, "end" : 1563564824.0333703, "duration" : 3.6401443481445312, "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": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"css/lightcase.css": {"type": "string"}, "css/lightcase.min.css": {"type": "string"}, "lightcase.js": {"type": "string"}, "lightcase.min.js": {"type": "string"}}, "required": ["css/lightcase.css", "css/lightcase.min.css", "l... | {"css/lightcase.css" : "sha256-P8uz9PX9F095Tuwns1d1Eojz0/DUjPfdPVyRUxczY3Y=", "css/lightcase.min.css" : "sha256-SODIbbN7TmweoW97wnWMTO35aLzxbaZr5WCjZ2Oua2g=", "lightcase.js" : "sha256-J4Z/LHGSS9c/emwPta1mgceGfIzyyJ0Fv2Ix3Hn/kPQ=", "lightcase.min.js" : "sha256-a2P2MiTMGBXZJhR1tpbo5fWAi6EorrFuGFd8UK3TEGY="} | json_instruct | {"type": "object", "properties": {"css/lightcase.css": {"type": "string"}, "css/lightcase.min.css": {"type": "string"}, "lightcase.js": {"type": "string"}, "lightcase.min.js": {"type": "string"}}, "required": ["css/lightcase.css", "css/lightcase.min.css", "lightcase.js", "lightcase.min.js"], "$schema": "http://json-sch... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "summary": {"type": "string"}, "license": {"type": "string"}, "source": {"type": "string"}, "project_page": {"type": "string"}, "issues_ur... | {"name" : "puppet-appd_db_agent", "version" : "0.1.2-rc0", "author" : "Vox Pupuli", "summary" : "Puppet AppDynamics Database Agent Module", "license" : "Apache-2.0", "source" : "https://github.com/voxpupuli/puppet-appd_db_agent.git", "project_page" : "http://github.com/voxpupuli/puppet-appd_db_agent", "issues_url" : "h... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "summary": {"type": "string"}, "license": {"type": "string"}, "source": {"type": "string"}, "project_page": {"type": "string"}, "issues_url": {"type": "string"}, "tags": {"type": "array", "items": ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"randomColor.js": {"type": "string"}, "randomColor.min.js": {"type": "string"}}, "required": ["randomColor.js", "randomColor.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"randomColor.js" : "sha512-rOS+dRWxckK6Ruh7+ybrHke9vr3WIqplzcu3Jg9C/BPxoEisNulj0kKjT9W6Byn/Gg817ENltr53/vWmA8GW6g==", "randomColor.min.js" : "sha512-vPeZ7JCboHcfpqSx5ZD+/jpEhS4JpXxfz9orSvAPPj0EKUVShU2tgy7XkU+oujBJKnWmu4hU7r9MMQNWPfXsYw=="} | json_instruct | {"type": "object", "properties": {"randomColor.js": {"type": "string"}, "randomColor.min.js": {"type": "string"}}, "required": ["randomColor.js", "randomColor.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"version": {"type": "string"}, "frameworks": {"type": "object", "properties": {"net46": {"type": "object", "properties": {"wrappedProject": {"type": "string"}, "bin": {"type": "object", "properties": {"assembly": {"type": "s... | {"version" : "1.0.0-*", "frameworks" : {"net46" : {"wrappedProject" : "../../storeme.Data/storeme.Data.csproj", "bin" : {"assembly" : "../../storeme.Data/obj/{configuration}/storeme.Data.dll", "pdb" : "../../storeme.Data/obj/{configuration}/storeme.Data.pdb"}, "dependencies" : {"MongoDB.Bson" : "2.0.1", "MongoDB.Driver... | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "frameworks": {"type": "object", "properties": {"net46": {"type": "object", "properties": {"wrappedProject": {"type": "string"}, "bin": {"type": "object", "properties": {"assembly": {"type": "string"}, "pdb": {"type": "string"}}, "required": ["assembly", ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "readme": {"type... | {"name" : "jsatomix", "version" : "0.1.0", "description" : "Tools for analysing and playing katomic/atomix type puzzles.", "main" : "index.js", "scripts" : {"test" : "tape test/*.js", "readme" : "node dev/readme.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/figlief/jsatomix.git"}, "keywords" : [... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "readme": {"type": "string"}}, "required": ["test", "readme"]}, "repository": {"type": "obj... |
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"}, "start": {"type": "... | {"name" : "restdemo", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "mocha", "start" : "node index.js", "updateSource" : "node dbAuth.js"}, "author" : "fxb", "license" : "ISC", "dependencies" : {"async" : "^2.6.0", "fs-extra" : "^5.0.0", "iconv-lite" : "^0.4.23", "js-xlsx" : "^0.8.... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "updateSource": {"type": "string"}}, "required": ["test", "sta... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"git.ignoreLimitWarning": {"type": "boolean"}, "editor.formatOnSave": {"type": "boolean"}, "[typescript]": {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}}, "required": ["editor.defaultFormatter"... | {"git.ignoreLimitWarning" : true, "editor.formatOnSave" : true, "[typescript]" : {"editor.defaultFormatter" : "esbenp.prettier-vscode"}, "prettier.tabWidth" : 2, "editor.tabSize" : 2, "editor.detectIndentation" : true, "editor.useTabStops" : false} | json_instruct | {"type": "object", "properties": {"git.ignoreLimitWarning": {"type": "boolean"}, "editor.formatOnSave": {"type": "boolean"}, "[typescript]": {"type": "object", "properties": {"editor.defaultFormatter": {"type": "string"}}, "required": ["editor.defaultFormatter"]}, "prettier.tabWidth": {"type": "integer"}, "editor.tabSi... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"": {"type": "array", "items": {"t... | {"name" : "wilkins/composer-file-loader", "type" : "function", "description" : "Load composer file", "autoload" : {"psr-4" : {"" : ["../../", "mvc/model/", "mvc/model/database/", "mvc/controller/"], "App\\" : [""], "App\\Controller\\" : ["mvc/controller/"], "App\\Database\\" : ["mvc/model/database/"], "IvanFilho\\Date\... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"": {"type": "array", "items": {"type": "string"}}, "App\\": {"type": "array", "items": {"type": "string"}... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"model_class": {"type": "string"}, "id": {"type": "string"}, "update_time": {"type": "string"}, "create_time": {"type": "string"}, "workflow_id": {"type": "string"}, "history_id": {"type": "string"}, "uuid": {"type": "string"},... | {"model_class" : "WorkflowInvocation", "id" : "f0cd8bbd99d2b3ad", "update_time" : "2022-02-10T19:07:34.137420", "create_time" : "2022-02-10T19:07:34.137401", "workflow_id" : "f1bbc186416fa125", "history_id" : "043e39c8cdbe35a9", "uuid" : "b405cc84-8aa4-11ec-ba83-7ae39b349d9b", "state" : "new"} | json_instruct | {"type": "object", "properties": {"model_class": {"type": "string"}, "id": {"type": "string"}, "update_time": {"type": "string"}, "create_time": {"type": "string"}, "workflow_id": {"type": "string"}, "history_id": {"type": "string"}, "uuid": {"type": "string"}, "state": {"type": "string"}}, "required": ["model_class", ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"status": {"type": "string"}, "message": {"type": "string"}}, "required": ["status", "message"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : "error", "message" : "Unauthorized access, sorry you need to be a employee for this. To apply send us a written application to jobs@marbis.net."} | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "message": {"type": "string"}}, "required": ["status", "message"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"wire-plugin": {"type": "array", "items": {"type": "object", "properties": {"target": {"type": "string"}, "source": {"type": "string"}}, "required": ["target", "source"]}}}, "required": ["wire-plugin"], "$schema": "http://json-sc... | {"wire-plugin" : [{"target" : "\\Spryker\\Zed\\ProductPageSearch\\ProductPageSearchDependencyProvider::getConcreteProductMapExpanderPlugins", "source" : "\\Spryker\\Zed\\ProductPageSearch\\Communication\\Plugin\\PageMapExpander\\ProductImageProductConcretePageMapExpanderPlugin"}, {"target" : "\\Spryker\\Zed\\ProductPag... | json_instruct | {"type": "object", "properties": {"wire-plugin": {"type": "array", "items": {"type": "object", "properties": {"target": {"type": "string"}, "source": {"type": "string"}}, "required": ["target", "source"]}}}, "required": ["wire-plugin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"lastModified": {"type": "integer"}, "notifications": {"type": "array", "items": {}}, "notificationsLimitations": {"type": "array", "items": {}}, "seasonId": {"type": "string"}}, "required": ["lastModified", "... | {"lastModified" : 1522596052738, "notifications" : [], "notificationsLimitations" : [], "seasonId" : "fe26411e-fd45-4fc3-aef0-63dc154bc009"} | json_instruct | {"type": "object", "properties": {"lastModified": {"type": "integer"}, "notifications": {"type": "array", "items": {}}, "notificationsLimitations": {"type": "array", "items": {}}, "seasonId": {"type": "string"}}, "required": ["lastModified", "notifications", "notificationsLimitations", "seasonId"], "$schema": "http://j... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "arra... | {"directions" : ["Place cubed cake in bottom of large glass serving bowl. Layer the blueberries, raspberries and blackberries on top of the cake. Sprinkle with praline liqueur.", "In a medium bowl, combine pudding mix, milk, condensed milk and 1 cup of whipped topping, stir well. Pour mixture over frozen berries. T... | 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": {"name": {"type": "string"}, "description": {"type": "string"}, "uuid": {"type": "string"}, "shell-version": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "uuid", "shell-v... | {"name" : "Notification Area", "description" : "Make a notification area like windows 10", "uuid" : "notification-area@fmoreira", "shell-version" : ["3.38"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "uuid": {"type": "string"}, "shell-version": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "uuid", "shell-version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"angular-permission.js": {"type": "string"}, "angular-permission.min.js": {"type": "string"}}, "required": ["angular-permission.js", "angular-permission.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}... | {"angular-permission.js" : "sha512-YbuvLboSfBxbYdFvaqYRSDZXDvRzOgEeqXjLd2nMYxekKHBXuEWuus1CgoHMUNVN2GwG02OJl3eFJgRAz/BaHg==", "angular-permission.min.js" : "sha512-i+k3zm19X55+y0X7b0C0GeA4zHTf8YO740Ne3hOCsNlOPLgfUVSwZAf2XMM3j88J3vxKb4nm5n8sk1hfsWMb1Q=="} | json_instruct | {"type": "object", "properties": {"angular-permission.js": {"type": "string"}, "angular-permission.min.js": {"type": "string"}}, "required": ["angular-permission.js", "angular-permission.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"610111001": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "610111002": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"typ... | {"610111001" : {"name" : "\u7eba\u7ec7\u57ce\u8857\u9053", "next" : 0}, "610111002" : {"name" : "\u5341\u91cc\u94fa\u8857\u9053", "next" : 0}, "610111003" : {"name" : "\u7ea2\u65d7\u8857\u9053", "next" : 0}, "610111004" : {"name" : "\u5e2d\u738b\u8857\u9053", "next" : 0}, "610111005" : {"name" : "\u6d2a\u5e86\u8857\u90... | json_instruct | {"type": "object", "properties": {"610111001": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "610111002": {"type": "object", "properties": {"name": {"type": "string"}, "next": {"type": "integer"}}, "required": ["name", "next"]}, "610111003": {... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"pk": {"type": "integer"}, "model": {"type": "string"}, "fields": {"type": "object", "properties": {"conference": {"type": "integer"}, "used_for_sessions": {"type": "boolean"}, "order": {"ty... | [{"pk" : 1, "model" : "conference.location", "fields" : {"conference" : 1, "used_for_sessions" : true, "order" : 10, "name" : "C01", "slug" : "c01"}}, {"pk" : 2, "model" : "conference.location", "fields" : {"conference" : 1, "used_for_sessions" : true, "order" : 20, "name" : "B05/B06", "slug" : "b05-b06"}}, {"pk" : 3, ... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"pk": {"type": "integer"}, "model": {"type": "string"}, "fields": {"type": "object", "properties": {"conference": {"type": "integer"}, "used_for_sessions": {"type": "boolean"}, "order": {"type": "integer"}, "name": {"type": "string"}, "slug": {"type": "string... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Spase": {"type": "object", "properties": {"xmlns:xsi": {"type": "string"}, "xmlns": {"type": "string"}, "xsi:schemaLocation": {"type": "string"}, "Version": {"type": "string"}, "Observatory": {"type": "object", "p... | {"Spase" : {"xmlns:xsi" : "http://www.w3.org/2001/XMLSchema-instance", "xmlns" : "http://www.spase-group.org/data/schema", "xsi:schemaLocation" : "http://www.spase-group.org/data/schema http://www.spase-group.org/data/schema/spase-2_2_2.xsd", "Version" : "2.2.2", "Observatory" : {"ResourceID" : "spase://SMWG/Observator... | json_instruct | {"type": "object", "properties": {"Spase": {"type": "object", "properties": {"xmlns:xsi": {"type": "string"}, "xmlns": {"type": "string"}, "xsi:schemaLocation": {"type": "string"}, "Version": {"type": "string"}, "Observatory": {"type": "object", "properties": {"ResourceID": {"type": "string"}, "ResourceHeader": {"type"... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[510.3569983754437, 421.35465103714597], [1402.8697257104739, 455.1231054823552], [1415.575667856084, 482.6526467978438], [1404.9873827347424, 505.94687406479557], [1383.8108124920589, 535.5940724045524], [1362.6342422493753, 561.0059566957727], [1352.0459571280335, 582.1825269384562], [1343.5753290309601, 594.8884690... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "AND SO LIKEWISE IN ETERNITY, HE THAT HAS AN IDEA OF BUT FOUR YEARS, HAS AS MUCH A POSITIVE COMPLETE IDEA OF ETERNITY,", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/6972.json"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"accountSid": {"type": "string"}, "authToken": {"type": "string"}, "apiUrl": {"type": "string"}, "apiVersion": {"type": "string"}, "from": {"type": "string"}, "to": {"type": "string"}, "messageBody": {"type": ... | {"accountSid" : "%s(accountSidNeg)", "authToken" : "%s(authToken)", "apiUrl" : "%s(apiUrl)", "apiVersion" : "%s(apiVersion)", "from" : "%s(from)", "to" : "%s(to)", "messageBody" : "%s(messageBody)", "statusCallbackUrl" : "", "applicationSid" : ""} | json_instruct | {"type": "object", "properties": {"accountSid": {"type": "string"}, "authToken": {"type": "string"}, "apiUrl": {"type": "string"}, "apiVersion": {"type": "string"}, "from": {"type": "string"}, "to": {"type": "string"}, "messageBody": {"type": "string"}, "statusCallbackUrl": {"type": "string"}, "applicationSid": {"type"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"isCandidateForAutomaticViewing": {"type": "string"}}, "required": ["isCandidateForAutomaticViewing"]}}, "... | {"class" : {}, "instance" : {"isCandidateForAutomaticViewing" : "sw 7/5/2004 01:50"}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"isCandidateForAutomaticViewing": {"type": "string"}}, "required": ["isCandidateForAutomaticViewing"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/dr... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.