input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bugs": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts":... | {"name" : "mudpi-core", "version" : "0.9.1", "description" : "Configurable automated smart garden for raspberry pi", "bugs" : "https://github.com/mudpi/mudpi-core/issues", "contributors" : ["Eric Davisson <eric@mudpi.app>"], "main" : "mudpi_event_listener.js", "scripts" : {"start" : "node server/mudpi_event_listener.js... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bugs": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"clippy": {"type": "object", "properties": {"welcome_message": {"type": "string"}, "hide_me": {"type": "string"}}, "required": ["welcome_message", "hide_me"]}}, "required": ["clippy"], "$schema": "http://json-schema.org/draft-0... | {"clippy" : {"welcome_message" : "Hei og velkommen! Du kan velge spr\u00e5k ved \u00e5 klikke p\u00e5 meg.", "hide_me" : "Du kan skru meg av og p\u00e5 ved \u00e5 trykke Ctrl+Shift+H."}} | json_instruct | {"type": "object", "properties": {"clippy": {"type": "object", "properties": {"welcome_message": {"type": "string"}, "hide_me": {"type": "string"}}, "required": ["welcome_message", "hide_me"]}}, "required": ["clippy"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivati... | {"derivation" : "adverb from the same as G1595 (\u1f11\u03ba\u03bf\u03c5\u03c3\u03af\u03c9\u03c2);", "kjv_def" : "wilfully, willingly", "lemma" : "\u1f11\u03ba\u03bf\u03c5\u03c3\u03af\u03c9\u03c2", "frequency" : 2, "strongs_def" : " voluntarily", "outline" : "<ol><li> voluntarily, willingly, of one's own accord<ol><li>... | json_instruct | {"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$sc... |
Please provide a valid JSON object following 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": "array", "items": {"... | {"type" : "Feature", "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[1.691573, 52.44904], [1.691594, 52.44905], [1.691902, 52.448498], [1.690805, 52.448267], [1.690677, 52.448578], [1.690977, 52.448653], [1.691037, 52.448709], [1.691037, 52.448779], [1.691573, 52.44904]]]]}, "properties" : {"documentation-ur... | 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": {"201302": {"type": "object", "properties": {"c": {"type": "string"}, "n": {"type": "string"}, "f": {"type": "string"}, "cr": {"type": "number"}, "ac": {"type": "integer"}, "ca": {"type": "integer"}, "pr": {"type": ... | {"201302" : {"c" : "PERS 130", "n" : "Intermediate Persian I", "f" : "SL", "cr" : 3.0, "ac" : 1, "ca" : 15, "pr" : ["PERS 120", "PERS 302"], "co" : ["PERS 130D"], "i" : [{"tn" : "Abdollah Dodangeh Gharehaghaj\u0131", "ta" : 1, "tc" : 15}], "ce" : 0, "p" : 435}, "catList" : ["This course is a continuation of the Persian... | json_instruct | {"type": "object", "properties": {"201302": {"type": "object", "properties": {"c": {"type": "string"}, "n": {"type": "string"}, "f": {"type": "string"}, "cr": {"type": "number"}, "ac": {"type": "integer"}, "ca": {"type": "integer"}, "pr": {"type": "array", "items": {"type": "string"}}, "co": {"type": "array", "items": ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "intege... | {"appid" : 374510, "name" : "The Last Dogma", "windows" : true, "mac" : false, "linux" : true, "early_access" : false, "lookup_time" : 1490984015} | json_instruct | {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "cozy_camping:block/acacia_stump_vertical"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$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" : [[[143.5, 29.666666666666668], [143.5, 29.75], [143.625, 29.75], [143.625, 29.666666666666668], [143.5, 29.666666666666668]]]}, "properties" : {"code" : 444344, "url" : "http://madefor.github.io/0410/api/v1/444344.geojson", "view" : "https://github.... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"plugins" : ["transform-block-scoped-functions"]} | json_instruct | {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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#"}
| [[1983, 5], [1990, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "points": {"type": "integer"}, "description": {"type": "string"}, "reward": {"type": "string"}, "rewardItems": {"type": "array", "items": {}}, "icon": {"type": "string"}, "c... | {"id" : 10164, "title" : "Master of the Seas", "points" : 5, "description" : "Complete the naval mission achievments listed below.", "reward" : "Title Reward: Captain", "rewardItems" : [], "icon" : "achievement_zone_draenor_01", "criteria" : [{"id" : 28515, "description" : "Naval Combat Expert", "orderIndex" : 0, "max"... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "points": {"type": "integer"}, "description": {"type": "string"}, "reward": {"type": "string"}, "rewardItems": {"type": "array", "items": {}}, "icon": {"type": "string"}, "criteria": {"type": "array", "items": {"type": "object", "... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "Today's song: <a href=\"https://www.youtube.com/watch?v=6jlLBs6YawM\">Can't find my way home</a>. ", "created" : "Sat, 11 Jul 2020 14:25:48 GMT", "type" : "outline"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "directives": {"type": "array", "items": {}}, "statements": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "loc": {"type": "object", "properties": {"start": ... | {"type" : "Script", "directives" : [], "statements" : [{"type" : "DebuggerStatement", "loc" : {"start" : {"line" : 1, "column" : 10, "offset" : 10}, "end" : {"line" : 1, "column" : 19, "offset" : 19}}}], "loc" : {"start" : {"line" : 1, "column" : 0, "offset" : 0}, "end" : {"line" : 1, "column" : 27, "offset" : 27}}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "directives": {"type": "array", "items": {}}, "statements": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "loc": {"type": "object", "properties": {"start": {"type": "object", "properties": {"line": {"type": "integer... |
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": {}, "required": []}, "repository": {"type": "object", "proper... | {"name" : "microtaskqueue", "version" : "0.0.1", "description" : "microtaskqueue on your browser", "main" : "MicroTaskQueue.js", "scripts" : {}, "repository" : {"type" : "git", "url" : "git+https://github.com/sters/microtaskqueue-js.git"}, "author" : "sters", "license" : "MIT", "bugs" : {"url" : "https://github.com/ste... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": ... | {"name" : "@w11k/tslint-presets", "version" : "0.0.13", "description" : "tslint preset used a W11K", "keywords" : ["tslint", "typescript", "angular"], "author" : "Kai Henzler", "license" : "MIT", "repository" : {"type" : "git", "url" : "git+https://github.com/w11k/tslint-presets.git"}, "bugs" : {"url" : "https://github... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "strin... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "arra... | {"title" : "Mozambique - Gender", "downloads" : 134, "tags" : ["gender", "hxl", "indicators", "Mozambique"], "hxl" : 1, "org" : "World Bank Group", "id" : "aae205c0-fcb1-451a-be97-4edf87ae6a11", "resources" : [{"update_date" : "2021-01-29T04:11:10.659092", "link" : "https://data.humdata.org/dataset/aae205c0-fcb1-451a-b... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "integer"}, "process": {"type": "array", "items": {"type": "object", "properties": {"desc": {"type": "string"}, "config": {"type": "object", "properties": {}, "require... | {"name" : "Cofactor function test", "version" : 2, "process" : [{"desc" : "argument of matrix", "config" : {}, "tests" : [{"input" : ["cof([1,2;3,4])"], "type" : "equals", "output" : "[4,-3;-2,1]"}]}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "integer"}, "process": {"type": "array", "items": {"type": "object", "properties": {"desc": {"type": "string"}, "config": {"type": "object", "properties": {}, "required": []}, "tests": {"type": "array", "items": {"type": "object", "proper... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"RuBisCO large subunit": {"type": "string"}, "P28397": {"type": "string"}, "RBL_DAPSP": {"type": "string"}, "Ribulose bisphosphate carboxylase large chain": {"type": "string"}, "rbcL": {"type": "string"}}, "required": ["RuBisCO l... | {"RuBisCO large subunit" : "P28397", "P28397" : "P28397", "RBL_DAPSP" : "P28397", "Ribulose bisphosphate carboxylase large chain" : "P28397", "rbcL" : "P28397"} | json_instruct | {"type": "object", "properties": {"RuBisCO large subunit": {"type": "string"}, "P28397": {"type": "string"}, "RBL_DAPSP": {"type": "string"}, "Ribulose bisphosphate carboxylase large chain": {"type": "string"}, "rbcL": {"type": "string"}}, "required": ["RuBisCO large subunit", "P28397", "RBL_DAPSP", "Ribulose bisphosph... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "locati... | {"id" : 4038, "title" : ["[Hall of Patrons, Courtyard]"], "description" : ["The courtyard evokes a serenity and harmony that express the essence of nature. With its carefully styled plants and judiciously placed stones, the courtyard is a tribute to the beauty of pure form. At the north end of the courtyard large gat... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"163": ... |
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" : 1125886245, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "659d4e080b9c810877e2f828afbea09b", "wof:id" : 1125886245, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [-1.57254, 52.94597, -1.57254, 52.94597], "geometry" : {"coordinates" : [-1.57254, 52.9... | 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": ["... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "conquest:block/weathered_purple_painted_plank_slab_quarter_4"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"request": {"type": "object", "properties": {"body": {"type": "string"}, "headers": {"type": "array", "items": {}}, "method": {"type": "string"}, "options": {"type": "array", "items": ... | [{"request" : {"body" : "", "headers" : [], "method" : "get", "options" : [], "request_body" : "", "url" : "https://api.weixin.qq.com/cgi-bin/user/info?access_token=ZvkBQ3yM55HzaOKevk_vJ57z2l53diKnjj-cflfbFLkrNYA2Uj4dsqntYJNLbCzumLpkjJnvy6ZmZr4mCwsYBZqq8xb8Mb2w4vv4gADORXQEc9w1sjwme1hKSrhU-zz2PDGfAHACQT&lang=zh_CN&openi... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"request": {"type": "object", "properties": {"body": {"type": "string"}, "headers": {"type": "array", "items": {}}, "method": {"type": "string"}, "options": {"type": "array", "items": {}}, "request_body": {"type": "string"}, "url": {"type": "string"}}, "requi... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "type": {"type": "string"},... | {"id" : "0x8d08ed7f136594d735e4d8a2b43b5ceff57b972f1380b9f7d00cdd995f8433b8", "title" : "0", "body" : "aave", "choices" : ["up", "done"], "start" : 1639108800, "end" : 1639627200, "type" : "single-choice", "scores" : [0, 0], "scores_total" : 0, "scores_state" : "final", "scores_updated" : 1639627242, "snapshot" : "2205... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "type": {"type": "string"}, "scores": {"type": "array", "items": {"type": "integer"}},... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"crypto-js": {"type": "... | {"name" : "media2cloud", "version" : "1.1.0", "description" : "media2cloud solution, demoed at IBC@2018", "main" : "index.js", "private" : true, "dependencies" : {"crypto-js" : "^3.1.9-1", "deepmerge" : "^2.1.1", "mime" : "^2.3.1", "spark-md5" : "^3.0.0"}, "scripts" : {"pretest" : "npm install", "test" : "mocha lib/**/... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"crypto-js": {"type": "string"}, "deepmerge": {"type": "string"}, "mime": {"type":... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string... | {"schema_version" : "1.2.0", "id" : "GHSA-4gwc-877g-8pxq", "modified" : "2022-05-13T01:37:45Z", "published" : "2022-05-13T01:37:45Z", "aliases" : ["CVE-2017-12714"], "details" : "Abbott Laboratories pacemakers manufactured prior to Aug 28, 2017 do not restrict or limit the number of correctly formatted \"RF wake-up\" c... | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {"type": "object", "properti... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "official_id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "school_type_entity": {"type": "string"}, "fax": {"type": "s... | {"name" : "Georg-August-Zinn-Schule Altmorschen", "id" : "HE-7475-0", "official_id" : "7475", "address" : "J\u00e4gerpfad 7, 34326 Morschen", "school_type" : "Grundschule", "school_type_entity" : "Grundschule", "fax" : "05664/930584", "state" : "HE", "phone" : "05664/459", "full_time_school" : false, "lon" : 9.616614, ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "official_id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "school_type_entity": {"type": "string"}, "fax": {"type": "string"}, "state": {"type": "string"}, "phone": {"type": "string"}, "ful... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"configuration": {"type": "string"}, "board": {"type": "string"}, "port": {"type": "string"}}, "required": ["configuration", "board", "port"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"configuration" : "PartitionScheme=default,FlashMode=qio,FlashFreq=80,UploadSpeed=921600,DebugLevel=none", "board" : "esp32:esp32:esp32wrover", "port" : "COM3"} | json_instruct | {"type": "object", "properties": {"configuration": {"type": "string"}, "board": {"type": "string"}, "port": {"type": "string"}}, "required": ["configuration", "board", "port"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "engin... | {"name" : "markuplint-angular-parser", "version" : "1.0.0", "description" : "Angular parser for markuplint.", "repository" : "git+https://github.com/rx-ts/markuplint.git", "homepage" : "https://github.com/rx-ts/markuplint/tree/main/packages/angular-parser", "author" : "JounQin <admin@1stg.me>", "license" : "MIT", "engi... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "st... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"slider.js": {"type": "string"}, "slider.min.js": {"type": "string"}}, "required": ["slider.js", "slider.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"slider.js" : "sha512-bOcFI23uaPORazL9Dcf9v5AElctY3sxVRYYD1pJBTNtLEAVKWkec3MLq5z2TlO1+UdvK5W3Yy6kGhAn+0e66qg==", "slider.min.js" : "sha512-i8REls/+XxmBuvcleXSeR7RgCOXk8hrt5aKbOrAA84daEcthUuMJNoeGRchgOzHXiNGcRdDIPQGxxf8OBWzeZw=="} | json_instruct | {"type": "object", "properties": {"slider.js": {"type": "string"}, "slider.min.js": {"type": "string"}}, "required": ["slider.js", "slider.min.js"], "$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"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts":... | {"name" : "rally-point-player", "version" : "2.0.0", "description" : "A client for rally-point-server that can send packets using created routes.", "main" : "player.js", "engines" : {"node" : ">= 14.0.0"}, "scripts" : {}, "repository" : {"type" : "git", "url" : "git+ssh://git@github.com/tec27/rally-point.git"}, "keywor... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {}, "required": []}, "r... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author"... | {"name" : "parcel-vel", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"start" : "parcel index.html"}, "author" : "", "license" : "ISC", "dependencies" : {"element-ui" : "^2.4.9", "less" : "^3.8.1", "vue" : "^2.5.17", "vue-hot-reload-api" : "^2.3.1", "vue-router" : "^3.0.1", "vuex" : "^3.0.1... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dep... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ... | {"index" : 5552, "hash" : 2175293399, "artDyeHash" : 2175293399, "redacted" : false, "dyeManifestHash" : 3443383767, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blackl... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1ed73310f1c89dfeeb849cc01248462af2a2fd59"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"swaggerVersion": {"type": "string"}, "basePath": {"type": "string"}, "apis": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "operations": {"type": "array", "items": {"type": ... | {"swaggerVersion" : "1.2", "basePath" : "http://localhost", "apis" : [{"path" : "/foo", "operations" : [{"method" : "GET", "nickname" : "foo", "parameters" : [], "$ref" : "bar"}]}], "models" : {"bar" : {"id" : "bar", "properties" : {"baz" : {"type" : "string"}}}}} | json_instruct | {"type": "object", "properties": {"swaggerVersion": {"type": "string"}, "basePath": {"type": "string"}, "apis": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "operations": {"type": "array", "items": {"type": "object", "properties": {"method": {"type": "string"}, "nickname": {"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"yasqe.bundled.min.js": {"type": "string"}, "yasqe.min.css": {"type": "string"}, "yasqe.min.js": {"type": "string"}}, "required": ["yasqe.bundled.min.js", "yasqe.min.css", "yasqe.min.js"], "$schema": "http://json-schema.org/dra... | {"yasqe.bundled.min.js" : "sha512-oeE/sUsM0vfgy7rfvA9fihTBer/vokN1QT77HxLSLgaqgCmU8X8lJdadAFucUIxs7s2B58J2/HjMecqWpjpf/A==", "yasqe.min.css" : "sha512-po5iSopSsb76yJPKfZb/GPQf8szFLN5QfZypbg9JRcnKQ7Fx0tCr99vFs25BwBn4dIjnfCzX4hK769s/8pKbIg==", "yasqe.min.js" : "sha512-E8LMRadGUK8CU3zMQpS+fpHioBLeMpU4m9YnfZCbs6SYmjkV0pH0P... | json_instruct | {"type": "object", "properties": {"yasqe.bundled.min.js": {"type": "string"}, "yasqe.min.css": {"type": "string"}, "yasqe.min.js": {"type": "string"}}, "required": ["yasqe.bundled.min.js", "yasqe.min.css", "yasqe.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["sematext-agent-docker", "sematext-agent-httpd", "sematext-agent-nginx", "spm-agent-mongodb", "spm-agent-nodejs", "spm-agent-os"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string... | {"id" : 24627, "citation_title" : "Noisy Agents", "citation_author" : ["Francisco Espinosa", "Debraj Ray"], "citation_publication_date" : "2018-05-21", "issue_date" : "2018-05-18", "revision_date" : "None", "topics" : ["Microeconomics", "Welfare and Collective Choice", "Economics of Information"], "program" : ["Politic... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "strin... | {"edges" : [[4, 8], [21, 12], [12, 27], [12, 17], [14, 12], [18, 33], [12, 19], [30, 12], [22, 12], [20, 6], [12, 29], [12, 10], [14, 12], [37, 12], [11, 12], [12, 6], [37, 12], [2, 12], [25, 9], [12, 24], [26, 12], [12, 16], [5, 3], [35, 12], [36, 12], [15, 12], [40, 12], [12, 13], [12, 39], [23, 12], [12, 11], [35, 2... | json_instruct | {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6":... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"pe_name": {"type": "string"}, "pe_type": {"type": "integer"}, "pe_size": {"type": "integer"}, "pe_subsystem": {"type": "integer"}, "pe_subsystem_caption": {"type": "string"}, "pe_path": {"type": "string"}, "pe_timed... | {"pe_name" : "SMdiagnostics.dll", "pe_type" : 267, "pe_size" : 94208, "pe_subsystem" : 3, "pe_subsystem_caption" : "The Windows character (Cosole UI) subsystem", "pe_path" : "c:\\Windows\\WinSxS\\amd64_wcf-smdiagnostics_b03f5f7f11d50a3a_10.0.18362.211_none_1368087240fe3672\\SMdiagnostics.dll", "pe_timedate_stamp" : 157... | json_instruct | {"type": "object", "properties": {"pe_name": {"type": "string"}, "pe_type": {"type": "integer"}, "pe_size": {"type": "integer"}, "pe_subsystem": {"type": "integer"}, "pe_subsystem_caption": {"type": "string"}, "pe_path": {"type": "string"}, "pe_timedate_stamp": {"type": "integer"}, "pe_timedate_human": {"type": "string... |
Create an example JSON object that satisfies this schema:
{"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" : 9007200876896986000, "key" : "/static/34f26b73b2f2d975c09db65df5df8090/1ddcc/600.jpg", "val" : "1f106ca8856eed8d41d43296dcd8e808"} | 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 a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "obj... | {"id" : "e4db3b88-ce42-40c1-9ddb-ad504c58920c", "playerTags" : [], "teamTags" : ["46358869-dce9-4a01-bfba-ac24fc56f57e", "7966eb04-efcc-499b-8f03-d13916330531"], "gameTags" : ["05128dae-51f9-4304-a7ca-ffeca855d25c"], "metadata" : {"play" : 209, "subPlay" : -1}, "created" : "2021-04-15T12:17:35.459Z", "season" : 15, "to... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "subPlay": {"type":... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"imagesloaded.js": {"type": "string"}, "imagesloaded.min.js": {"type": "string"}, "imagesloaded.pkgd.js": {"type": "string"}, "imagesloaded.pkgd.min.js": {"type": "string"}}, "required": ["imagesloaded.js", "images... | {"imagesloaded.js" : "sha256-FmjNTJCnNGVNluYVfFvFa3uK3v4WTIsqEJpH4Hi2TdQ=", "imagesloaded.min.js" : "sha256-qlEhZSv2MO3vwLV7gv4K7pQ/MFIQyM1mieFyTAI+voo=", "imagesloaded.pkgd.js" : "sha256-YXdkvyh3uutc4Gawe0RdlCX8EwkHbX6BzzxH/FCk/os=", "imagesloaded.pkgd.min.js" : "sha256-pFaH0VpGvQwEafnD04te2z80SUeL8KDEzcoQtI2Gwrk="} | json_instruct | {"type": "object", "properties": {"imagesloaded.js": {"type": "string"}, "imagesloaded.min.js": {"type": "string"}, "imagesloaded.pkgd.js": {"type": "string"}, "imagesloaded.pkgd.min.js": {"type": "string"}}, "required": ["imagesloaded.js", "imagesloaded.min.js", "imagesloaded.pkgd.js", "imagesloaded.pkgd.min.js"], "$s... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "majorVersion": {"type": "integer"}, "minorVersion": {"type": "integer"}, "patchVersion": {"type": "integer"}, "runnable": {"type": "integer"}, "machine... | {"title" : "Url Field", "description" : "Url field widget with protocol and path", "majorVersion" : 1, "minorVersion" : 1, "patchVersion" : 0, "runnable" : 0, "machineName" : "H5PEditor.UrlField", "author" : "Joubel AS", "preloadedJs" : [{"path" : "link-widget.js"}], "preloadedCss" : [{"path" : "link-widget.css"}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "majorVersion": {"type": "integer"}, "minorVersion": {"type": "integer"}, "patchVersion": {"type": "integer"}, "runnable": {"type": "integer"}, "machineName": {"type": "string"}, "author": {"type": "string"}, "preloadedJs"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"serviceName": {"type": "string"}, "servicePrefix": {"type": "string"}, "url": {"type": "string"}, "actions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "documenta... | {"serviceName" : "AWS Systems Manager GUI Connect", "servicePrefix" : "ssm-guiconnect", "url" : "https://docs.aws.amazon.com/service-authorization/latest/reference/./list_awssystemsmanagerguiconnect.html", "actions" : [{"name" : "CancelConnection", "documentationUrl" : "https://docs.aws.amazon.com/systems-manager/lates... | json_instruct | {"type": "object", "properties": {"serviceName": {"type": "string"}, "servicePrefix": {"type": "string"}, "url": {"type": "string"}, "actions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "documentationUrl": {"type": "string"}, "description": {"type": "string"}, "accessLevel... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "ha... | {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [251.215, 131.716, 0.854507, 239.51, 150.734, 0.834022, 230.244, 153.168, 0.812238, 227.801, 178.054, 0.775258, 244.871, 190.73, 0.592434, 248.292, 148.296, 0.737225, 251.701, 173.661, 0.241672, 255.118, 191.217, 0.236571, 235.606, 198.537, 0.691207, 224.874, 231.699... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDep... | {"name" : "hussar", "version" : "0.0.6", "description" : "Framework for those who would like to stick to JS only (no HTML nor CSS) and produce relatively fast and fairly small sized web apps", "main" : "core.mjs", "repository" : "git@github.com:DanielMazurkiewicz/hussar.git", "author" : "Daniel Mazurkiewicz <daniel.maz... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"esbuild": {"typ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": ... | {"userId" : 47037, "cartId" : "c12d2935-6c89-463f-a5a7-7d1d0e5b6709", "preferredProducts" : [], "productReviews" : [{"productId" : 1154, "reviewText" : "This Moldovan Leu works so well. It delightedly improves my football by a lot.", "reviewDate" : "2018-08-09T05:05:44.7286754+03:00"}, {"productId" : 2139, "reviewText"... | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "s... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"cSpell.ignoreRegExpList": {"type": "array", "items": {"type": "string"}}, "cSpell.words": {"type": "array", "items": {"type": "string"}}, "git.ignoreLimitWarning": {"type": "boolean"}}, "required": ["cSpell.ignoreReg... | {"cSpell.ignoreRegExpList" : ["CHERE_INVOKING", "LC_CTYPE", "SDK's", "makepkg-git", "mingw-w64-git", "mingw32", "mingw64", "vstfs://.*"], "cSpell.words" : ["Backoff", "MSYSTEM", "Pacman", "autodrain", "unzipper", "vercel"], "git.ignoreLimitWarning" : true} | json_instruct | {"type": "object", "properties": {"cSpell.ignoreRegExpList": {"type": "array", "items": {"type": "string"}}, "cSpell.words": {"type": "array", "items": {"type": "string"}}, "git.ignoreLimitWarning": {"type": "boolean"}}, "required": ["cSpell.ignoreRegExpList", "cSpell.words", "git.ignoreLimitWarning"], "$schema": "http... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "globalDependencies": {"type": "object", "properties": {"aws-sdk": {"type": "string"}, "commander": {"type": "str... | {"name" : "aws-utils", "dependencies" : {}, "globalDependencies" : {"aws-sdk" : "registry:dt/aws-sdk#0.0.0+20160505181932", "commander" : "registry:dt/commander#2.3.0+20160317120654", "node" : "registry:dt/node#6.0.0+20160602155235"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "globalDependencies": {"type": "object", "properties": {"aws-sdk": {"type": "string"}, "commander": {"type": "string"}, "node": {"type": "string"}}, "required": ["aws-sdk", "commander", "n... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/style.css": {"type": "string"}, "/js/video.list.js": {"type": "string"}, "/js/news.list.js": {"type": "string"}, "/js/feedback.list.js": {"type": "string"}, "/js/registration... | {"/js/app.js" : "/js/app.js", "/css/style.css" : "/css/style.css", "/js/video.list.js" : "/js/video.list.js", "/js/news.list.js" : "/js/news.list.js", "/js/feedback.list.js" : "/js/feedback.list.js", "/js/registration.js" : "/js/registration.js", "/js/main.js" : "/js/main.js", "/js/home.js" : "/js/home.js", "/js/feedba... | json_instruct | {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/style.css": {"type": "string"}, "/js/video.list.js": {"type": "string"}, "/js/news.list.js": {"type": "string"}, "/js/feedback.list.js": {"type": "string"}, "/js/registration.js": {"type": "string"}, "/js/main.js": {"type": "string"}, "/js/home.j... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "item/generated", "textures" : {"layer0" : "essentials:item/obsidian_kit"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"PM1OBJ1": {"type": "object", "properties": {"FREQ": {"type": "string"}, "U_AC": {"type": "array", "items": {"type": "string"}}, "I_AC": {"type": "array", "items": {"type": "string"}}, "P_AC": {"type": "array", "items": {"type"... | {"PM1OBJ1" : {"FREQ" : "fl_4248147B", "U_AC" : ["fl_43723333", "fl_4371CCCD", "fl_4373999A"], "I_AC" : ["fl_3FC8F5C2", "fl_3FD70A3D", "fl_3E6147AE"], "P_AC" : ["fl_C3B1C3D7", "fl_439FD1EB", "fl_4179C28F"], "P_TOTAL" : "fl_C1A23D70"}, "PM1OBJ2" : null, "RTC" : {"WEB_TIME" : "u3_5F723788"}, "STATISTIC" : null, "ENERGY" :... | json_instruct | {"type": "object", "properties": {"PM1OBJ1": {"type": "object", "properties": {"FREQ": {"type": "string"}, "U_AC": {"type": "array", "items": {"type": "string"}}, "I_AC": {"type": "array", "items": {"type": "string"}}, "P_AC": {"type": "array", "items": {"type": "string"}}, "P_TOTAL": {"type": "string"}}, "required": [... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"komentarz": {"type": "string"}, "nie": {"type": "integer"}, "tak": {"type": "integer"}}, "required": ["komentarz", "nie", "tak"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"komentarz" : "Nikt inny jak zydzi nie jest odpowiedzialny za te kolorowe rewolucje w arabskich krajach Kazda z tych rewolucji konczy sie mas\u0105 uchodzc\u00f3w.Wiec winni ca\u0142ej tej arabsko terrorystycznej emigracji sa w\u0142a\u015bnie zydzi", "nie" : 2, "tak" : 1} | json_instruct | {"type": "object", "properties": {"komentarz": {"type": "string"}, "nie": {"type": "integer"}, "tak": {"type": "integer"}}, "required": ["komentarz", "nie", "tak"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}, "uuid": {"type": "string"}, "historyId": {"type": "string"}, "testCaseId": {"type": "string"}, "fu... | {"name" : "test_login_01", "status" : "passed", "start" : 1638974232657, "stop" : 1638974235662, "uuid" : "3d903ad6-f21c-4e92-8b7c-85c17d5e5001", "historyId" : "8d37fc9ee5aae95ac2e028a575798742", "testCaseId" : "88ee690d055a7c8e2164c6951b12f588", "fullName" : "testcase.test_login.TestLogin#test_login_01", "labels" : [{... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}, "uuid": {"type": "string"}, "historyId": {"type": "string"}, "testCaseId": {"type": "string"}, "fullName": {"type": "string"}, "labels": {"type": "array", "items": {"typ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-sc... | {"variants" : {"" : {"model" : "rechiseled_compat:block/atmospheric_morado_planks_flooring"}}} | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "ame... | {"type" : "Feature", "id" : "node/8751102927", "properties" : {"addr:city" : "Schwentinental", "addr:postcode" : "24222", "addr:street" : "Dorfplatz", "amenity" : "marketplace", "name" : "Wochenmarkt Klausdorf", "opening_hours" : "Fr 08:00-13:00", "wheelchair" : "yes", "id" : "node/8751102927"}, "geometry" : {"type" : ... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "amenity": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"t... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"x_min": {"type": "array", "items": {"type": "number"}}, "x_scale": {"type": "array", "items": {"type": "number"}}}, "required": ["x_min", "x_scale"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"x_min" : [2.141225264103694], "x_scale" : [0.04750214844621488]} | json_instruct | {"type": "object", "properties": {"x_min": {"type": "array", "items": {"type": "number"}}, "x_scale": {"type": "array", "items": {"type": "number"}}}, "required": ["x_min", "x_scale"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"schema": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "license": {"type": "string"}, "category": {"type": "string"}, "description": {"type": "object", "properties": {"name": {"type": "s... | {"schema" : "1.0", "type" : "whmcs-registrars", "name" : "keysystems", "license" : "MIT", "category" : "domains", "description" : {"name" : "RRPproxy v0.8.6", "tagline" : "A provider of reseller wholesale domain services."}, "logo" : {"filename" : "logo.png"}, "authors" : [{"name" : "Sebastian Vassiliou", "email" : "sv... | json_instruct | {"type": "object", "properties": {"schema": {"type": "string"}, "type": {"type": "string"}, "name": {"type": "string"}, "license": {"type": "string"}, "category": {"type": "string"}, "description": {"type": "object", "properties": {"name": {"type": "string"}, "tagline": {"type": "string"}}, "required": ["name", "taglin... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"history": {"type": "array", "items": {"type": "string"}}}, "required": ["history"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"history" : ["Explorer", "Clone Tiddler", "See Drafts", "Refresh Server", "Permaview", "See Themes", "Refresh Command Palette", "See Shadows Tiddlers", "See Orphans Tiddlers", "Remove tag", "Add tag to tiddler", "Delete Tiddler", "Close Tiddler", "Recent Tiddlers", "New Task with Title", "Edit Tiddler", "See Mising Ti... | json_instruct | {"type": "object", "properties": {"history": {"type": "array", "items": {"type": "string"}}}, "required": ["history"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "require": {"ty... | {"name" : "stuki/cloudflare", "type" : "library", "description" : "A ZF2 plugin to fix global variables when using CloudFlare", "license" : "proprietary", "keywords" : ["cloudflare", "cloud", "flare"], "homepage" : "http://www.github.com/StukiOrg/CloudFlare", "require" : {"php" : ">=5.3.3", "zendframework/zendframework... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, ... |
Please provide a valid JSON object following 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" : "1214022005", "district_id" : "1214022", "name" : "SILINA"} | 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": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string... | {"name" : "bpk-component-fieldset", "version" : "2.0.128", "description" : "Backpack fieldset component.", "license" : "Apache-2.0", "repository" : {"type" : "git", "url" : "git@github.com:Skyscanner/backpack.git"}, "author" : "Backpack Design System <backpack@skyscanner.net>", "main" : "index.js", "publishConfig" : {"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "UsageC... | {"IsRecentlyVerified" : false, "ID" : 155609, "UUID" : "2BC350E1-A340-498C-8442-AFEF65B24221", "DataProviderID" : 1, "OperatorID" : 3372, "UsageTypeID" : 1, "UsageCost" : "per EV Connect App", "AddressInfo" : {"ID" : 155963, "Title" : "Washington High School", "AddressLine1" : "Kerby Avenue", "Town" : "Washington", "St... | 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": {"conditions": {"type": "object", "properties": {"5d27276886f7740701348578": {"type": "string"}, "5d272a0b86f7745ba2701532": {"type": "string"}, "5d2f464e498f71c8886f7656": {"type": "string"}, "5d77c65786f7742fa901bcc5": {"ty... | {"conditions" : {"5d27276886f7740701348578" : "\u00c9liminez Shturman", "5d272a0b86f7745ba2701532" : "Livrez la cl\u00e9 de la r\u00e9serve de Shturman \u00e0 Jaeger", "5d2f464e498f71c8886f7656" : "Trouvez en raid la cl\u00e9 de la r\u00e9serve de Shturman", "5d77c65786f7742fa901bcc5" : "", "5d77c66586f7742fa732bf13" :... | json_instruct | {"type": "object", "properties": {"conditions": {"type": "object", "properties": {"5d27276886f7740701348578": {"type": "string"}, "5d272a0b86f7745ba2701532": {"type": "string"}, "5d2f464e498f71c8886f7656": {"type": "string"}, "5d77c65786f7742fa901bcc5": {"type": "string"}, "5d77c66586f7742fa732bf13": {"type": "string"}... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "auto-update": {"type": "object", "properties": {"url": {"type": "string"}, "version-check": {"type": "object", "proper... | {"display-name" : "Yarn", "package-name" : "yarn", "latest-version" : "1.22.5", "auto-update" : {"url" : "https://yarnpkg.com/downloads/<version>/yarn-<version>.msi", "version-check" : {"webpage" : "https://classic.yarnpkg.com/en/docs/install", "regex" : "Classic Stable \\(([\\d.]+)\\)"}}, "1.22.5" : {"url" : "https://... | json_instruct | {"type": "object", "properties": {"display-name": {"type": "string"}, "package-name": {"type": "string"}, "latest-version": {"type": "string"}, "auto-update": {"type": "object", "properties": {"url": {"type": "string"}, "version-check": {"type": "object", "properties": {"webpage": {"type": "string"}, "regex": {"type": ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"copyright": {"type": "string"}}, "required": ["copyright"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"copyright" : "Dorian Mari\u00e9"} | json_instruct | {"type": "object", "properties": {"copyright": {"type": "string"}}, "required": ["copyright"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "ur... | {"title" : "The Blue Horsehead Nebula in Infrared", "credit" : "WISE, IRSA, NASA; Processing & Copyright : Francesco Antonucci", "explanation" : "The Blue Horsehead Nebula looks quite different in infrared light. In visible light, the reflecting dust of the nebula appears blue and shaped like a horse's head. In infrare... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "e... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"ConnectionStrings": {"type": "object", "properties": {"DefaultConnection": {"type": "string"}}, "required": ["DefaultConnection"]}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Defa... | {"ConnectionStrings" : {"DefaultConnection" : "DataSource=app.db"}, "Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft" : "Warning", "Microsoft.Hosting.Lifetime" : "Information"}}, "IdentityServer" : {"Clients" : {"HelpDeskApp.Client" : {"Profile" : "IdentityServerSPA"}}}, "AllowedHosts" : "*", "TestUsers... | json_instruct | {"type": "object", "properties": {"ConnectionStrings": {"type": "object", "properties": {"DefaultConnection": {"type": "string"}}, "required": ["DefaultConnection"]}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"repair_end": {"type": "string"}, "repair_begin": {"type": "string"}, "patches": {"type": "array", "items": {}}}, "required": ["repair_end", "repair_begin", "patches"], "$schema": "http://json-schema.org/draft-0... | {"repair_end" : "2019-07-10 10:19:52.977150", "repair_begin" : "2019-07-10 10:13:35.718732", "patches" : []} | json_instruct | {"type": "object", "properties": {"repair_end": {"type": "string"}, "repair_begin": {"type": "string"}, "patches": {"type": "array", "items": {}}}, "required": ["repair_end", "repair_begin", "patches"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"rmse": {"type": "array", "items": {"type": "number"}}}, "required": ["rmse"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rmse" : [24.96453758980851]} | json_instruct | {"type": "object", "properties": {"rmse": {"type": "array", "items": {"type": "number"}}}, "required": ["rmse"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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": {"type"... | {"directions" : ["In a small heavy saucepan cook the scallion in the butter and the reserved bacon fat over moderately low heat, stirring, until the scallion is softened, stir in the flour, and cook the roux stirring, for 3 minutes. Add the milk in a stream, whisking, and boil the mixture, whisking, for 2 minutes. Remo... | 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": {"type": "string"}}, "title": {"type": "string"}, "url": {"type"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items":... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-118.308936, 33.813442], [-118.308924, 33.817038], [-118.29834, 33.813055], [-118.299016, 33.8034], [-118.299172, 33.805146], [-118.301396, 33.807142], [-118.307584, 33.807183], [-118.308936, 33.813442]]]}, "type" : "Feat... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependenci... | {"name" : "com.unity.learn.iet-framework", "displayName" : "Interactive Tutorial Core", "version" : "0.1.16-preview", "unity" : "2018.3", "description" : "This package is mandatory for all In-Editor Tutorials.", "keywords" : ["tutorials"], "dependencies" : {}, "repository" : {"type" : "git", "url" : "https://github.com... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1810080", "regency_id" : "1810", "name" : "ADI LUWIH"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "regency_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "regency_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"require": {"type": "object", "properties": {"symfony/console": {"type": "string"}, "php-ffmpeg/php-ffmpeg": {"type": "string"}}, "required": ["symfony/console", "php-ffmpeg/php-ffmpeg"]}, "autoload": {"type":... | {"require" : {"symfony/console" : "~2.0", "php-ffmpeg/php-ffmpeg" : "~0.5"}, "autoload" : {"psr-4" : {"n1ch0la5\\" : "src"}}} | json_instruct | {"type": "object", "properties": {"require": {"type": "object", "properties": {"symfony/console": {"type": "string"}, "php-ffmpeg/php-ffmpeg": {"type": "string"}}, "required": ["symfony/console", "php-ffmpeg/php-ffmpeg"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"n1ch0la... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"range": {"type": "integer"}, "model": {"type": "string"}, "id": {"type": "string"}, "make": {"type": "string"}}, "required": ["range", "model", "id", "make"]}, "$schema": "http://json-schem... | [{"range" : 310, "model" : "Taycan", "id" : "nvQv2a2ZFMy8EUgq", "make" : "Porsche"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"range": {"type": "integer"}, "model": {"type": "string"}, "id": {"type": "string"}, "make": {"type": "string"}}, "required": ["range", "model", "id", "make"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"beam": {"type": "object", "properties": {"charge": {"type": "number"}, "id": {"type": "integer"}, "mass": {"type": "number"}, "ux": {"type": "number"}, "uy": {"type": "number"}, "uz": {"type": "number"}, "w": {"type": "number"... | {"beam" : {"charge" : 103296.0, "id" : 5335083456, "mass" : 103296.0, "ux" : 0.5226317015079, "uy" : 0.5226317015079, "uz" : 103296048.58125, "w" : 6456.0, "x" : 43910.016129591, "y" : 43910.016129591, "z" : 103295.90024655}, "lev=0" : {"Bx" : 3362.5084259193, "By" : 3362.5084259193, "Bz" : 1.5843884099704e-07, "ExmBy"... | json_instruct | {"type": "object", "properties": {"beam": {"type": "object", "properties": {"charge": {"type": "number"}, "id": {"type": "integer"}, "mass": {"type": "number"}, "ux": {"type": "number"}, "uy": {"type": "number"}, "uz": {"type": "number"}, "w": {"type": "number"}, "x": {"type": "number"}, "y": {"type": "number"}, "z": {... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "packages": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "details": ... | {"schema_version" : "3.0.0", "packages" : [{"name" : "~lojojaPrefs", "homepage" : "https://github.com/lojoja/sublime-lojoja-prefs", "description" : "Persistent annotated preferences for Sublime Text.", "details" : "https://github.com/lojoja/sublime-lojoja-prefs", "author" : "lojoja", "labels" : [], "releases" : [{"subl... | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "packages": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "details": {"type": "string"}, "author": {"type": "string"}, "labels": {"type": ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"url": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["url", "sha1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"url" : "https://static.wikia.nocookie.net/griftlands_gamepedia_en/images/6/66/Introducing_Smith_Update_poster.png/revision/latest?cb=20201106082330", "sha1" : "f3465611da1c910fa1ee12845dc7b9c2605c5dc8"} | json_instruct | {"type": "object", "properties": {"url": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["url", "sha1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "description": {"type": "string"}, ... | {"id" : "a5b3a480-6d5f-437d-96ab-cfb79f6aa078", "name" : "christianacca/docker-aspnetcore-sample_local_docker", "values" : [{"key" : "apiBaseUrl", "value" : "http://host.docker.internal:44351", "description" : "", "enabled" : true}, {"key" : "clientId", "value" : "Automated_Test", "description" : "", "enabled" : true},... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "description": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["key", "value", "descrip... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", ... | {"h" : [{"d" : [{"e" : ["\ufff9`Sata'eli'elifsa~ `cangra~ `i~ `'a'ayaw~ `noya~ `makamiday~ `a~ `loma'~.\ufffa\ufffb\u4ed6\u5011\u5c31\u591a\u6b21\u8d8a\u904e\u90a3\u9593\u7834\u623f\u5b50\u7684\u524d\u9762\u3002"], "f" : "\u5448\u591a\u6b21\u8d8a\u904e\u3001\u901a\u904e\u7684\u72c0\u614b\u3002"}]}], "tag" : "[\u758a 2]... | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "tag": {"type": "string"}, ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"apikey": {"type": "string"}, "owner": {"type": "array", "items": {}}, "prefix": {"type": "string"}, "token": {"type": "string"}, "dbkrtoken": {"type": "null"}}, "required": ["apikey", "owner", "prefix", "toke... | {"apikey" : "https://tracking.sweettracker.co.kr/ \uc5ec\uae30\uc11c API\ud0a4 \ubc1c\uae09 \ud558\uc2e0\ud6c4 \ub123\uc5b4\uc8fc\uc138\uc694", "owner" : [], "prefix" : "PREFIX", "token" : "TOKEN", "dbkrtoken" : null} | json_instruct | {"type": "object", "properties": {"apikey": {"type": "string"}, "owner": {"type": "array", "items": {}}, "prefix": {"type": "string"}, "token": {"type": "string"}, "dbkrtoken": {"type": "null"}}, "required": ["apikey", "owner", "prefix", "token", "dbkrtoken"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "int... | {"nom" : "Terrefondr\u00e9e", "circ" : "4\u00e8me circonscription", "dpt" : "C\u00f4te-d'Or", "inscrits" : 73, "abs" : 35, "votants" : 38, "blancs" : 1, "nuls" : 0, "exp" : 37, "res" : [{"nuance" : "LR", "nom" : "M. Charles BARRIERE", "voix" : 19}, {"nuance" : "REM", "nom" : "Mme Yolaine DE COURSON", "voix" : 18}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"liveServer.settings.port": {"type": "integer"}, "php.validate.executablePath": {"type": "string"}}, "required": ["liveServer.settings.port", "php.validate.executablePath"], "$schema": "http://json-schema.org/draft... | {"liveServer.settings.port" : 5504, "php.validate.executablePath" : ""} | json_instruct | {"type": "object", "properties": {"liveServer.settings.port": {"type": "integer"}, "php.validate.executablePath": {"type": "string"}}, "required": ["liveServer.settings.port", "php.validate.executablePath"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, ... | {"n_dim" : 5, "n_trials" : 210, "objective" : "markowitz_return_on_cube", "white" : "bayesopt_poi", "black" : "optuna_random_clone", "traceback" : ["passing", "passing"], "best_val" : [6698.705731977645, 7143.7379913141485], "best_x" : [[0.48676472808819177, 0.3312055669526861, 0.8283807915013155, 0.08752779560348117, ... | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["amplifier", "blinds", "button", "camera", "coffeemachine", "curtain", "doorbell", "fan", "garagedoor", "heater", "homealarm", "kettle", "light", "lock", "other", "remote", "sensor", "socket", "speaker", "solarpanel", "sunshade", "thermostat", "tv", "vacuumcleaner", "windowcoverings"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "distri... | {"id" : "1001", "provinceId" : "73", "regencyId" : "72", "districtId" : "02", "name" : "Labukkang"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "time": {"type": "string"}, "height": {"type": "string"}}, "required": ["date", "time", "height"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"date" : "Removed due to complaint from someone", "time" : "Removed due to complaint from someone", "height" : "Removed due to complaint from someone"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "time": {"type": "string"}, "height": {"type": "string"}}, "required": ["date", "time", "height"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"staves": {"type": "array", "items": {"type": "object", "properties": {"lines": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["lines"]}}}, "requ... | {"staves" : [{"lines" : [[[371, 455], [2755, 455]], [[371, 536], [2755, 536]], [[371, 577], [2755, 577]], [[371, 598], [2755, 598]], [[371, 619], [2755, 619]], [[371, 603], [2755, 603]]]}, {"lines" : [[[332, 874], [2975, 874]], [[332, 975], [2975, 975]], [[332, 970], [2975, 970]], [[332, 1007], [2975, 1007]], [[332, 10... | json_instruct | {"type": "object", "properties": {"staves": {"type": "array", "items": {"type": "object", "properties": {"lines": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["lines"]}}}, "required": ["staves"], "$schema": "http://json-schema.org/draft-07/schema... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "exception": {"type": "string"}, "ssl-verify": {"type": "boolean"}}, "required": ["elapsed", "endpoint-url",... | {"elapsed" : "120.394", "endpoint-url" : "https://maps.stockport.gov.uk/ishare5.0.web/getows.ashx?mapsource=smbc/stockport_inspire&TypeName=conservation_areas&version=1.1.0&request=GetFeature&service=WFS", "entry-date" : "2021-06-19T01:03:31.886844", "exception" : "ConnectTimeout", "ssl-verify" : true} | json_instruct | {"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "exception": {"type": "string"}, "ssl-verify": {"type": "boolean"}}, "required": ["elapsed", "endpoint-url", "entry-date", "exception", "ssl-verify"], "$schema": "http://json-schema.org... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "proper... | {"hash" : "0x6fe3090efa7ca4c7f76465d5e50081acf072c60525f76c852b774436adda4ab4", "parentHash" : "0xee717cc6c1de1c9de5b16ebaa1baa8b4907a4352819becb6d4e1dae62617873a", "number" : 90883, "timestamp" : 1439646915, "nonce" : "0x7fa2138dea0b2230", "difficulty" : 3402347698131, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {... | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"body-parser": {"type... | {"name" : "d3metro", "version" : "0.0.1", "description" : "d3metro", "main" : "index.js", "license" : "ISC", "devDependencies" : {"body-parser" : "^1.19.0", "cookie-parser" : "^1.4.5", "d3" : "^3.5.6", "d3-fisheye" : "^2.0.1", "debug" : "^4.3.1", "ejs" : "^3.1.6", "express" : "^4.17.1", "grunt" : "^1.3.0", "grunt-contr... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "cookie-parser": {"type": "string"}, "d3": {"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "st... | {"schema_version" : "1.2.0", "id" : "GHSA-vfmm-jm4v-7frq", "modified" : "2022-05-13T01:27:48Z", "published" : "2022-05-13T01:27:48Z", "aliases" : ["CVE-2014-7808"], "details" : "Apache Wicket before 1.5.13, 6.x before 6.19.0, and 7.x before 7.0.0-M5 make it easier for attackers to defeat a cryptographic protection mech... | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {"type": "object", "properti... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"alias": {"type": "string"}, "category": {"type": "string"}, "copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "null"}, "id": {"type": "integer"}, "language": {"type": "s... | {"alias" : "video/1131/leveraging-an-instant-messaging-protocol-to-build", "category" : "EuroPython 2011", "copyright_text" : "Standard YouTube License", "description" : "XMPP is an open technology for real-time communication. Although\nprimarily known for its application in the IM service \"Jabber\" (and,\nsubsequentl... | json_instruct | {"type": "object", "properties": {"alias": {"type": "string"}, "category": {"type": "string"}, "copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "null"}, "id": {"type": "integer"}, "language": {"type": "string"}, "quality_notes": {"type": "string"}, "recorded": {"type": "stri... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}, "paragraphs": {"type": "array", "items": {"type": "string"}}, "strains": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "id": {"... | [{"author" : "\u5d14\u4e0e\u4e4b", "paragraphs" : ["\u5929\u5357\u25a1\u25a1\u25a1\u91cd\u4e34\uff0c\u9057\u7231\u72b9\u5b58\u853d\u25a1\u9634\u3002", "\u9f13\u89d2\u4e09\u57ce\u65b0\u4ee4\u8083\uff0c\u88b4\u8966\u4e07\u4e95\u65e7\u6069\u6df1\u3002", "\u517b\u6c11\u4f46\u79ef\u548c\u5e73\u798f\uff0c\u6d96\u4e8b\u5e38\u... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}, "paragraphs": {"type": "array", "items": {"type": "string"}}, "strains": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "id": {"type": "string"}, "error_type": {"type": "array", "items": {"type": "st... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, ... | {"n_dim" : 34, "n_trials" : 340, "objective" : "markowitz_skew_on_cube", "white" : "optuna_tpe", "black" : "bobyqa_default", "traceback" : ["passing", "passing"], "best_val" : [6.074453931219396, -0.11231330704599853], "best_x" : [[0.001343553835037219, 0.0241164446317196, 0.0018515247099049467, 0.0005497626837807981, ... | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "screeps_mod": {"type": "boolean"}, "keywords": {"type": "array", "items": {"type": "string"}}, "autho... | {"name" : "screepsmod-dynamicmarket", "version" : "1.1.11", "description" : "", "main" : "index.js", "screeps_mod" : true, "keywords" : ["screeps", "mod"], "author" : "Bob Sardinia", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "screeps_mod": {"type": "boolean"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "requi... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "cozy_camping:block/bear_trap"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"is-wsl": {"type": "object", "pro... | {"name" : "MMM-Spotify", "version" : "1.6.3", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"is-wsl" : {"version" : "1.1.0", "resolved" : "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", "integrity" : "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0="}, "open" : {"version" : "6.4.0", "resolved" : "https://registr... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"is-wsl": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"examine": {"type": "string"}, "bonuses": {"type": "array", "items": {"type": "integer"}}}, "required": ["examine", "bonuses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"examine" : "Designer leg protection. (Tier 8)", "bonuses" : [0, 0, 0, -18, -3, 76, 85, 137, -4, 86, 0, 0, 0, 0, 0, 0, 0, 0]} | json_instruct | {"type": "object", "properties": {"examine": {"type": "string"}, "bonuses": {"type": "array", "items": {"type": "integer"}}}, "required": ["examine", "bonuses"], "$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.