input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ... | {"ETag" : "W/\"77f9b1d926755e92f482d26c9b09521c207142b359e6a296d41f34290bff686d\"", "Last-Modified" : "Sun, 22 Aug 2021 19:49:06 GMT", "base" : {"repo" : {"name" : "great-expectations-feedstock"}}, "closed_at" : "2021-08-22T19:49:05Z", "created_at" : "2021-08-19T22:40:22Z", "draft" : false, "head" : {"ref" : "0.13.29_h... | json_instruct | {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "stri... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type":... | {"hash" : "0x26956e453c0d4e870dd7928bc5760d4385064f2114a51beb60b6c1fbf8ab213f", "parentHash" : "0x669de46cc776c67568d0b14c1eeb33538b145a9e833d449e5ed6b5f944fb2b2f", "number" : 3267, "timestamp" : 1438278732, "nonce" : "0xe5e2884c26c12052", "difficulty" : 83259497403, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex... | 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 a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties"... | {"name" : "weevers/path", "homepage" : "https://github.com/vweevers/php-path", "description" : "PHP 5.4 port of the node/iojs path module", "keywords" : ["path", "resolve", "relative", "utils", "nodejs", "node", "iojs"], "authors" : [{"name" : "vweevers", "homepage" : "https://github.com/vweevers", "role" : "Developer"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"},... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "transportId": {"type": "integer"}}, "required": ["id", "name", "transportId"]}, "$schema": "http://json-schema.org/draft-07/schema#"... | [{"id" : 1, "name" : "Nick", "transportId" : 1}, {"id" : 2, "name" : "Michael", "transportId" : 2}, {"id" : 3, "name" : "John", "transportId" : 4}, {"id" : 4, "name" : "Monique", "transportId" : 3}, {"id" : 5, "name" : "Tim", "transportId" : 7}, {"id" : 6, "name" : "Tim", "transportId" : 2}, {"id" : 7, "name" : "Tim", ... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "transportId": {"type": "integer"}}, "required": ["id", "name", "transportId"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/sc... | [{"year" : 1995, "sex" : "M", "n" : 10, "prop" : 4.97e-06}, {"year" : 2001, "sex" : "M", "n" : 5, "prop" : 2.42e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1603062017", "district_id" : "1603062", "name" : "TELUK LUBUK"} | 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": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit":... | {"id" : 8602, "source" : "clarke", "verse_id" : 18449, "verse_count" : 1, "reference" : "40:28", "title" : "", "html" : " <p> <em>There is no searching of his understanding \"And that his understanding is unsearchable\"\u2014</em>, Twenty-four MSS., two editions, the Septuagint and Vulgate, read <span class=\"greek-heb... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "null"}}, "required": ["id", "source", "verse_id", "... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "item... | {"version" : "4.5.6", "flags" : {}, "shapes" : [{"label" : "null", "points" : [[363, 428], [514, 436], [497, 511], [374, 503]], "group_id" : 5, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[358, 370], [484, 357], [510, 418], [380, 408]], "group_id" : 5, "shape_type" : "polygon", "flags" : {}}... | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "grou... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"assets": {"type": "string"}, "banks": {"type": "object", "properties": {"bankAccounts": {"type": "string"}, "description": {"type": "string"}}, "required": ["bankAccounts", "description"]}, "properties": {"type": "object", "pr... | {"assets" : "Assets", "banks" : {"bankAccounts" : "Bank Accounts", "description" : "This is where you can manage all your bank accounts."}, "properties" : {"properties" : "Properties", "description" : "This is where you can manage all your properties."}, "vehicles" : {"vehicles" : "Vehicles", "description" : "This is w... | json_instruct | {"type": "object", "properties": {"assets": {"type": "string"}, "banks": {"type": "object", "properties": {"bankAccounts": {"type": "string"}, "description": {"type": "string"}}, "required": ["bankAccounts", "description"]}, "properties": {"type": "object", "properties": {"properties": {"type": "string"}, "description"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"template": {"type": "string"}, "type": {"type": "string"}, "header": {"type": "object", "properties": {"title": {"type": "string"}, "items": {"type": "array", "items": {"type": "object", "properties": {"type": {"ty... | {"template" : "invoice.html", "type" : "invoice", "header" : {"title" : "\u53d1\u7968\u4fe1\u606f", "items" : [{"type" : "link", "icon" : "header-icon-back icomoon-back", "pull" : "left", "event" : "back"}, {"type" : "link", "icon" : "header-icon-menu icomoon-moremore", "pull" : "right", "event" : "menuMore"}]}, "compo... | json_instruct | {"type": "object", "properties": {"template": {"type": "string"}, "type": {"type": "string"}, "header": {"type": "object", "properties": {"title": {"type": "string"}, "items": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "icon": {"type": "string"}, "pull": {"type": "string"},... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["ty... | {"name" : "dry-fs", "author" : "Ho\u00e0ng V\u0103n Kh\u1ea3i <hvksmr1996@gmail.com>", "license" : "MIT", "repository" : {"type" : "git", "url" : "git+https://github.com/ksxnodeapps/file-table.git"}, "bugs" : {"url" : "https://github.com/ksxnodeapps/file-table/issues"}, "homepage" : "https://github.com/ksxnodeapps/file... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "stri... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"dk-name:1.dk1": {"type": "string"}, "dk-name:2.dk2": {"type": "string"}, "dk-name:3.dk3": {"type": "string"}, "dk-name:4.dk4": {"type": "string"}, "dk-name:5.dk5": {"type": "string"}, "dk-name:6.dk6": {"type": "string"}, "dk-n... | {"dk-name:1.dk1" : "Avidy\u0101pratyay\u0101\u1e25 sa\u1e41sk\u0101r\u0101\u1e25", "dk-name:2.dk2" : "Sa\u1e41sk\u0101rapratyaya\u1e41 vij\u00f1\u0101na\u1e41", "dk-name:3.dk3" : "Vij\u00f1\u0101napratyayam n\u0101mar\u016bpa\u1e41", "dk-name:4.dk4" : "N\u0101mar\u016bpapratyaya\u1e41 vij\u00f1\u0101na\u1e41", "dk-name... | json_instruct | {"type": "object", "properties": {"dk-name:1.dk1": {"type": "string"}, "dk-name:2.dk2": {"type": "string"}, "dk-name:3.dk3": {"type": "string"}, "dk-name:4.dk4": {"type": "string"}, "dk-name:5.dk5": {"type": "string"}, "dk-name:6.dk6": {"type": "string"}, "dk-name:7.dk7": {"type": "string"}, "dk-name:8.dk8": {"type": "... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"},... | {"\u5de5\u5ee0\u540d\u7a31" : "\u91d1\u5a01\u92c1\u696d\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "07001997", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u5f70\u5316\u7e23\u6eaa\u6e56\u93ae\u897f\u6eaa\u91cc\u5fe0\u6eaa\u8def238\u865f", "\u5de5\u5ee0\... | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"craft": {"type": "string"}, "note": {"type": "string"}, "id": {"type": "string"}}, "required": ["craft", "no... | {"type" : "Feature", "id" : "node/5758334613", "properties" : {"craft" : "beekeeper", "note" : "Bienenst\u00f6cke", "id" : "node/5758334613"}, "geometry" : {"type" : "Point", "coordinates" : [13.090674, 47.7272257]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"craft": {"type": "string"}, "note": {"type": "string"}, "id": {"type": "string"}}, "required": ["craft", "note", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type":... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "it... | {"directions" : ["Bring sugar, butter, and corn syrup to a boil in a 1-quart heavy saucepan over moderate heat, stirring, then boil 1 minute. Remove from heat and stir in remaining ingredients until smooth. Cool dough to room temperature.", "Preheat oven to 350\u00b0F. Place wooden spoons parallel to each other 2 inche... | 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"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": ... | {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Daramuangan Norte, San Mateo, Isabela, Cagayan Valley (Region II), PH", "locale" : "ph.cagayan-valley-region-ii.isabela.san-mateo.daramuangan-norte", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "conquest:block/weathered_light_blue_painted_plank_vertical_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": "object", "properties": {"ractive.js": {"type": "string"}, "ractive.min.js": {"type": "string"}}, "required": ["ractive.js", "ractive.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ractive.js" : "sha256-o9tnm67VxR+GYYb9MvkgGgjBx4VZ4bGug5laPAEXpmU=", "ractive.min.js" : "sha256-kktyP6BpiQLJ+MJn9o8utsuOVOLkic2Bqk7VteILIAU="} | json_instruct | {"type": "object", "properties": {"ractive.js": {"type": "string"}, "ractive.min.js": {"type": "string"}}, "required": ["ractive.js", "ractive.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"}, "files": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"t... | {"name" : "reqspy", "version" : "2.2.0", "description" : "A non intrusive request spy - log outgoing http(s) requests from an application.", "main" : "lib/spy.js", "files" : ["lib"], "repository" : {"type" : "git", "url" : "git@github.com:trygve-lie/reqspy.git"}, "bugs" : {"url" : "https://github.com/trygve-lie/reqspy/... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "re... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["vsoft-connector-mongodb", "vsoft-datasource-juggler"] | 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": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "THAYIN", "frequency" : 1, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"project_id": {"type": "string"}, "source_image_family": {"type": "string"}, "image_family": {"type": "string"}, "machine_type": {"type": "string"}, "disk_size": {"type": "string"}, "disk_type": {"type": "string"},... | {"project_id" : "testvm-339115", "source_image_family" : "ubuntu-1804-lts", "image_family" : "reddit-full", "machine_type" : "f1-micro", "disk_size" : "20", "disk_type" : "pd-standard", "image_description" : "Packer test options", "network" : "default", "tags" : "puma"} | json_instruct | {"type": "object", "properties": {"project_id": {"type": "string"}, "source_image_family": {"type": "string"}, "image_family": {"type": "string"}, "machine_type": {"type": "string"}, "disk_size": {"type": "string"}, "disk_type": {"type": "string"}, "image_description": {"type": "string"}, "network": {"type": "string"},... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol... | {"name" : "Cool Carbon Tonne", "symbol" : "CCT", "logoURI" : "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/3TMHmSNcTuAE6t3gnpJmFMmNUH1Mm2n6VoAQnGdfgGp5/logo.png", "decimals" : 0, "address" : "3TMHmSNcTuAE6t3gnpJmFMmNUH1Mm2n6VoAQnGdfgGp5", "chainId" : 103} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId"], "$schema": "http://json... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"sha": {"type": "string"}, "commit": {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "date": {"type": "string"}}, "required": ["... | {"sha" : "\"47e7bc67f932866e4467f7ab8a23bb167405bebd\"", "commit" : {"author" : {"name" : "\"Nicolas Silva\"", "email" : "\"nsilva@mozilla.com\"", "date" : "\"2016-09-01T15:51:09+02:00\""}, "committer" : {"name" : "\"Nicolas Silva\"", "email" : "\"nsilva@mozilla.com\"", "date" : "\"2016-09-01T15:51:09+02:00\""}, "messa... | json_instruct | {"type": "object", "properties": {"sha": {"type": "string"}, "commit": {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "date": {"type": "string"}}, "required": ["name", "email", "date"]}, "committer": {"type": "object", "properties":... |
Generate a valid JSON object that conforms to the following 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" : "1706042005", "district_id" : "1706042", "name" : "TANJUNG MULYA"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"packages": {"type": "object", "properties": {"wpackagist-plugin/wp-helper": {"type": "object", "properties": {"0.9": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "versi... | {"packages" : {"wpackagist-plugin/wp-helper" : {"0.9" : {"name" : "wpackagist-plugin/wp-helper", "version" : "0.9", "version_normalized" : "0.9.0.0", "uid" : 419280, "dist" : {"type" : "zip", "url" : "https://downloads.wordpress.org/plugin/wp-helper.zip?timestamp=1369299738"}, "source" : {"type" : "svn", "url" : "https... | json_instruct | {"type": "object", "properties": {"packages": {"type": "object", "properties": {"wpackagist-plugin/wp-helper": {"type": "object", "properties": {"0.9": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "dist... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "s... | {"code" : "200", "messages" : "Successfully received data", "value" : [{"id" : "3310162001", "id_kecamatan" : "331016", "name" : "Dukuh"}, {"id" : "3310162002", "id_kecamatan" : "331016", "name" : "Jetis"}, {"id" : "3310162003", "id_kecamatan" : "331016", "name" : "Butuhan"}, {"id" : "3310162004", "id_kecamatan" : "331... | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kecamatan", "name"]}}}, "required": ["code... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "test", "name" : "Testing JSON Category"}, {"id" : "test2", "name" : "Testing JSON Category 2"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}, "bin": {"type": "object", "properties": {"projectfoo": {"type": "string"}}, "required": ["proj... | {"name" : "project", "version" : "0.0.0-SNAPSHOT", "description" : "Project package.json", "main" : "project/index.js", "bin" : {"projectfoo" : "./bin/project-foo.js"}, "keywords" : ["a", "b", "c"], "scripts" : {"build" : "node project-build-script"}, "repository" : {"type" : "git", "url" : "https://github.com/angular/... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"projectfoo": {"type": "string"}}, "required": ["projectfoo"]}, "keywords": {"type": "array", "items": {"type": "string"}},... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"staves": {"type": "array", "items": {"type": "object", "properties": {"lines": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["lines"]}}... | {"staves" : [{"lines" : [[[1581, 501], [2152, 501]]]}, {"lines" : [[[1540, 957], [2143, 957]]]}, {"lines" : [[[1513, 1160], [2130, 1160]]]}, {"lines" : [[[1745, 1458], [2291, 1458]], [[1745, 1476], [2291, 1476]], [[1745, 1492], [2291, 1492]]]}, {"lines" : [[[547, 2526], [896, 2526]], [[547, 2560], [896, 2560]], [[547, ... | 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... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"state": {"type": "object", "properties": {"on": {"type": "boolean"}, "bri": {"type": "integer"}, "reachable": {"type": "boolean"}, "mode": {"type": "string"}, "alert": {"type": "string"}}, "required": ["on", "bri",... | {"state" : {"on" : false, "bri" : 254, "reachable" : true, "mode" : "homeautomation", "alert" : "none"}, "type" : "Dimmable light", "name" : "ioBrokerTemplatedLight", "modelid" : "LWB010", "uniqueid" : "44df4f5f-49d9-4580-90f6-0790a59a77a1", "manufacturername" : "Philips", "swversion" : "11111", "config" : {"archetype"... | json_instruct | {"type": "object", "properties": {"state": {"type": "object", "properties": {"on": {"type": "boolean"}, "bri": {"type": "integer"}, "reachable": {"type": "boolean"}, "mode": {"type": "string"}, "alert": {"type": "string"}}, "required": ["on", "bri", "reachable", "mode", "alert"]}, "type": {"type": "string"}, "name": {"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"5NVA.F": {"type": "object", "properties": {"short_name": {"type": "string"}, "long_name": {"type": "string"}, "summary": {"type": "string"}, "currency": {"type": "string"}, "sector": {"type": "string"}, "industry": ... | {"5NVA.F" : {"short_name" : "NAVIOS MARIT.AC.DL -,0001", "long_name" : "Navios Maritime Acquisition Corporation", "summary" : "Navios Maritime Acquisition Corporation provides marine transportation services worldwide. The company owns a fleet of crude oil, refined petroleum product, and chemical tankers. The company ch... | json_instruct | {"type": "object", "properties": {"5NVA.F": {"type": "object", "properties": {"short_name": {"type": "string"}, "long_name": {"type": "string"}, "summary": {"type": "string"}, "currency": {"type": "string"}, "sector": {"type": "string"}, "industry": {"type": "string"}, "exchange": {"type": "string"}, "market": {"type":... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-73.67855, 41.005012], [-73.67737, 41.01882], [-73.666715, 41.025502], [-73.660454, 41.018542], [-73.663405, 41.017369], [-73.661816, 41.015861], [-73.664152, 41.015095], [-73.663299, 41.014397], [-73.661922, 41.014841], ... | 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... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "int... | [{"results" : [{"tech" : 1, "pts" : 294, "connections" : 58128, "capacity" : 3959810, "investments" : 25304434}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pt... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "360881204200", "text" : "\u5773\u91cc\u6751\u59d4\u4f1a"}, {"id" : "360881204201", "text" : "\u6865\u8fb9\u6751\u59d4\u4f1a"}, {"id" : "360881204202", "text" : "\u6e21\u9642\u6751\u59d4\u4f1a"}, {"id" : "360881204203", "text" : "\u5be8\u4e0b\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "mythicmetals:block/runite_ore"} | 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": {"class": {"type": "object", "properties": {"fromHexString:": {"type": "string"}}, "required": ["fromHexString:"]}, "instance": {"type": "object", "properties": {}, "required": []}}, "required": ["class", "instance"]... | {"class" : {"fromHexString:" : "PaulDeBruicker 3/31/2012 10:54"}, "instance" : {}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {"fromHexString:": {"type": "string"}}, "required": ["fromHexString:"]}, "instance": {"type": "object", "properties": {}, "required": []}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"layout": {"type": "string"}, "backgroundColor": {"type": "string"}, "images": {"type": "object", "properties": {"fallback": {"type": "object", "properties": {"src": {"type": "string"}, "srcSet": {"type": "str... | {"layout" : "constrained", "backgroundColor" : "#080808", "images" : {"fallback" : {"src" : "/static/1d94f1449c12e9077ae0443801867618/d4e6d/facebook-logo.png", "srcSet" : "/static/1d94f1449c12e9077ae0443801867618/4c183/facebook-logo.png 16w,\n/static/1d94f1449c12e9077ae0443801867618/865aa/facebook-logo.png 32w,\n/stati... | json_instruct | {"type": "object", "properties": {"layout": {"type": "string"}, "backgroundColor": {"type": "string"}, "images": {"type": "object", "properties": {"fallback": {"type": "object", "properties": {"src": {"type": "string"}, "srcSet": {"type": "string"}, "sizes": {"type": "string"}}, "required": ["src", "srcSet", "sizes"]},... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"epoch": {"type": "integer"}, "train_loss": {"type": "number"}, "raw_loss": {"type": "number"}, "wd_0": {"type": "number"}, "sqr_mom_0": {"type": "number"}, "lr_0": {"type": "number"}, "mom_0": {"type": "number"}, ... | {"epoch" : 10, "train_loss" : 0.45512792468070984, "raw_loss" : 0.3222366273403168, "wd_0" : 0.0001, "sqr_mom_0" : 0.99, "lr_0" : 1.453787665300823e-07, "mom_0" : 0.9499864619879668, "eps_0" : 1e-06, "beta_0" : 0.0, "_runtime" : 679, "_timestamp" : 1644900349, "_step" : 179, "valid_loss" : 0.5774723887443542, "dice" : ... | json_instruct | {"type": "object", "properties": {"epoch": {"type": "integer"}, "train_loss": {"type": "number"}, "raw_loss": {"type": "number"}, "wd_0": {"type": "number"}, "sqr_mom_0": {"type": "number"}, "lr_0": {"type": "number"}, "mom_0": {"type": "number"}, "eps_0": {"type": "number"}, "beta_0": {"type": "number"}, "_runtime": {... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$sche... | {"name" : "Token Btrm", "symbol" : "Btrmw", "decimals" : 6, "address" : "BtrmwieAAhX1xPXh49NGDfYMRtL8LcFo4Y4FTQ5gRktH", "chainId" : 103} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": ... | {"name" : "METSEL CAPLET", "harga" : " Rp. 175.692/ kemasan", "golongan" : "http://medicastore.com/image_banner/obat_bebas.gif", "kandungan" : "Ubidecarenone (CoQ10) 30 mg, synthetic levocarnitine fumarate 500 mg, folic acid 400 mcg.", "indikasi" : "Memelihara kesehatan jantung.", "kontraindikasi" : "Hamil, laktasi. A... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {... |
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": "null"}}, "required": ["contract", "tool", "s... | {"contract" : "0x32d8a198462ba3791b9f144c77729f9131ec2a17", "tool" : "securify", "start" : 1563582345.609304, "end" : 1563582349.5608146, "duration" : 3.9515106678009033, "analysis" : null} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.or... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"title": {"type": "string"}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"title": {"type": "string"}, "data": {"type": "object", "pro... | {"config" : {"title" : "Phoenix EV Charger", "step" : {"user" : {"title" : "Define your Phoenix EV Charger modbus connection", "data" : {"host" : "The ip-address of your Phoenix EV charger modbus device", "port" : "The TCP port on which to connect to the Phoenix EV charger", "device_model" : "The Phoenix EV charger har... | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"title": {"type": "string"}, "step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"title": {"type": "string"}, "data": {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "string"}, "d... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["hapi-harvester"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "prope... | {"id" : "e9133f18-34cc-4797-a11c-1508208803f5", "playerTags" : ["2c4b2a6d-9961-4e40-882c-a338f4e72117"], "teamTags" : ["46358869-dce9-4a01-bfba-ac24fc56f57e"], "gameTags" : [], "metadata" : {"mods" : ["COFFEE_PERIL"], "type" : 2}, "created" : "2021-04-07T03:35:17.212Z", "season" : 14, "tournament" : -1, "type" : 108, "... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"mods": {"type": "array", "items": {"type": "str... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "... | {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [310.046, 128.854, 1, 312.192, 154.029, 1, 292.744, 165.9, 1, 286.543, 185.08, 1, 298.436, 198.398, 1, 331.638, 151.306, 1, 337.953, 185.056, 1, 329.406, 208.127, 1, 297.04, 205.315, 1, 305.135, 266.921, 1, 306.939, 312.613, 1, 322.264, 220.168, 1, 321.641, 269.71, 1... | 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... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"description": {"type": "string"}, "cc": {"type": "array", "items": {"type": "string"}}, "reviewers": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"sender": {"type": "... | {"description" : "doc/effective_go.html: undo local font change", "cc" : ["r@golang.org", "golang-dev@googlegroups.com"], "reviewers" : [], "messages" : [{"sender" : "gri@golang.org", "recipients" : ["gri@golang.org", "r@golang.org", "golang-dev@googlegroups.com", "reply@codereview-hr.appspotmail.com"], "text" : "Hello... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "cc": {"type": "array", "items": {"type": "string"}}, "reviewers": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"sender": {"type": "string"}, "recipients": {"type": "array", "items": {"type":... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "AND STAMPED UPON THEIR MINDS.", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/858.json"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"typ... | {"body" : "This adds a global command line option to specify additional configuration directories. The argument either takes a directory path, or a combination of package and sub-directory. This form fits in with suggestions from @citibeth for package level `package.yaml` files. Examples:\r\n\r\n```\r\n$ spack --config... | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": ... |
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": {"commit": {"type": "string"}, "test": {"type... | {"name" : "micro-image-transformations", "version" : "3.0.0", "description" : "Microlibrary for image transformations.", "main" : "src/index.js", "scripts" : {"commit" : "git-cz", "test" : "mocha tests/index.test.js --exit", "semantic-release" : "semantic-release pre && npm publish && semantic-release post"}, "reposito... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"commit": {"type": "string"}, "test": {"type": "string"}, "semantic-release": {"type": "string"}}, "required": ["commit... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "integer"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [7, 6, 5, 10, 7, 6, 8, 6, 8, 12, 5, 3, 5, 5, 5, 5, 3, 8, 6, 6, 7, 5, 7, 9, 5, 6, 9, 6, 7] | json_instruct | {"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": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_... | {"type" : "Feature", "properties" : {"name" : "Harnett County", "name_long" : "Harnett County, NC", "fips" : "37085", "state_code_int" : 37, "state_code_postal" : "NC", "state_code_iso" : "US-NC", "county_code" : 85, "population" : 135976, "countrylevel_id" : "fips:37085", "census_data" : {"COUNTYNS" : "01008560", "AFF... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "co... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"m": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "r": {"typ... | {"type" : "minecraft:crafting_shaped", "pattern" : ["brb", "pmp", "cpc"], "key" : {"m" : {"item" : "technocracy.foundation:machine_frame"}, "r" : {"type" : "forge:ore_dict", "ore" : "dustRedstone"}, "p" : {"item" : "minecraft:piston"}, "b" : {"type" : "forge:ore_dict", "ore" : "ingotBronze"}, "c" : {"type" : "forge:ore... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"m": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "r": {"type": "object", "properties": {"type": {"type": "string"}, ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"restangular.js": {"type": "string"}, "restangular.min.js": {"type": "string"}}, "required": ["restangular.js", "restangular.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"restangular.js" : "sha256-t1I37KUN1uDFERxHKPsiEn3zt+Ckf5VzRus6fXd3kUM=", "restangular.min.js" : "sha256-NWqdLAIxWEWeWvivQEDzl0lXvDTCwkVpSpSaIcNC60g="} | json_instruct | {"type": "object", "properties": {"restangular.js": {"type": "string"}, "restangular.min.js": {"type": "string"}}, "required": ["restangular.js", "restangular.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "protocol": {"type": "string"}, "method": {"type": "string"}, "pathPattern": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"},... | {"name" : "AuthorizeApplication", "protocol" : "HTTP|HTTPS", "method" : "DELETE|POST|PUT", "pathPattern" : "/pop/v5/account/authorize_app", "parameters" : [{"name" : "AppIds", "position" : "Query", "type" : "String", "required" : true}, {"name" : "TargetUserId", "position" : "Query", "type" : "String", "required" : tru... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "protocol": {"type": "string"}, "method": {"type": "string"}, "pathPattern": {"type": "string"}, "parameters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "position": {"type": "string"}, "type": {"type": "string"}... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["get-function-args-x", "get-function-name-x", "inspect-x", "is-x"] | 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": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "... | {"code" : 1209162008, "parent" : 1209162, "name" : "BANDAR MALELA", "latitude" : null, "longitude" : null, "postal" : [21194, 21176], "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... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"logo": {"type": "string"}, "listdate": {"type": "string"}, "cik": {"type": "string"}, "bloomberg": {"type": "string"}, "figi": {"type": "null"}, "lei": {"type": "null"}, "sic": {"type": "integer"}, "country": {... | {"logo" : "https://s3.polygon.io/logos/lob/logo.png", "listdate" : "2015-07-23", "cik" : "1462120", "bloomberg" : "EQ0000000008513208", "figi" : null, "lei" : null, "sic" : 6029, "country" : "usa", "industry" : "Banks", "sector" : "Financial Services", "marketcap" : 756202038, "employees" : 522, "phone" : "+1 910 790-5... | json_instruct | {"type": "object", "properties": {"logo": {"type": "string"}, "listdate": {"type": "string"}, "cik": {"type": "string"}, "bloomberg": {"type": "string"}, "figi": {"type": "null"}, "lei": {"type": "null"}, "sic": {"type": "integer"}, "country": {"type": "string"}, "industry": {"type": "string"}, "sector": {"type": "stri... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": ... | {"id" : 101792719, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "f0ddda18deb709060c12e3bf511e19f7", "wof:id" : 101792719, "wof:repo" : "whosonfirst-data-admin-ro"}, "bbox" : [28.447092, 44.353037, 28.478308, 44.384861], "geometry" : {"coordinates"... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"},... | {"timestamp" : "2020-11-10T19:47:06Z", "data" : [{"data_type" : "pm10", "value" : "14.33", "max" : "20.00", "min" : "12.00", "sd" : "2.55"}, {"data_type" : "pm2.5", "value" : "12.67", "max" : "20.00", "min" : "9.00", "sd" : "3.42"}, {"data_type" : "pm1", "value" : "6.47", "max" : "7.00", "min" : "5.00", "sd" : "0.64"},... | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max",... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d976-171", "text" : "-78-\nWhat Can We Do About Eliminating Health\nHazards In Our Community?\nHow Can The Local Community Action Agency\nHelp In Resolving Some Of These Problems\nIn Our Community?\n\"DIALOGUES FROM THE GHETTO\"\nIs a program series device which explores each\nproblem in depth. Here the suppor... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "510704004001", "text" : "\u516d\u91cc\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510704004002", "text" : "\u5c0f\u5c9b\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510704004003", "text" : "\u6e38\u4ed9\u89c2\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "510704004004", "text" : "\u6... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "prop... | {"contract" : "0x2c8eab1b7c57a6f9f81f761b26b71f99b25ff59c", "tool" : "osiris", "start" : 1564629436.9919105, "end" : 1564629501.2249198, "duration" : 64.2330093383789, "analysis" : [{"errors" : [{"line" : 177, "column" : 17, "message" : "overflow_bugs"}, {"line" : 178, "column" : 17, "message" : "overflow_bugs"}, {"lin... | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properti... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "... | {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [458.815, 240.222, 1, 446.328, 246.856, 1, 414.493, 242.934, 1, 369.339, 234.246, 1, 325.553, 181.488, 1, 479.134, 254.594, 1, 507.432, 298.845, 1, 525.683, 340.628, 1, 432.984, 364.14, 1, 428.85, 439.165, 1, 400.114, 502.076, 1, 478.173, 353.143, 1, 532.721, 401.455... | 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... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"three": {"type": "string"}}, "required": ["three"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"three" : "^0.123.0"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"three": {"type": "string"}}, "required": ["three"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-sche... | [{"year" : 1996, "sex" : "F", "n" : 5, "prop" : 2.61e-06}, {"year" : 1999, "sex" : "F", "n" : 5, "prop" : 2.57e-06}, {"year" : 2009, "sex" : "F", "n" : 11, "prop" : 5.44e-06}, {"year" : 2010, "sex" : "F", "n" : 8, "prop" : 4.09e-06}, {"year" : 2011, "sex" : "F", "n" : 11, "prop" : 5.68e-06}, {"year" : 2012, "sex" : "F"... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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", "ite... | {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [671.612, 192.256, 1, 705.112, 224.922, 1, 701.11, 223.036, 1, 703.332, 297.009, 1, 682.559, 331.335, 1, 705.112, 224.922, 1, 713.99, 297.568, 1, 719.427, 362.692, 1, 716.441, 339.233, 1, 739.517, 428.632, 1, 773.272, 504.921, 1, 718.947, 345.54, 1, 670.524, 429.65, ... | 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... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "requi... | {"contract" : "0x5121e348e897daef1eef23959ab290e5557cf274", "tool" : "manticore", "start" : 1563901466.5083218, "end" : 1563903268.7269006, "duration" : 1802.2185788154602, "analysis" : [[], []]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "ana... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "tag": {"type": "string"}, "version": {"type": "string"}, "comments": {"type": "object", "propertie... | {"name" : "@react-native-windows/virtualized-list", "entries" : [{"date" : "Fri, 02 Jul 2021 05:06:31 GMT", "tag" : "@react-native-windows/virtualized-list_v0.0.0-canary.1", "version" : "0.0.0-canary.1", "comments" : {"prerelease" : [{"comment" : "Fork VirtualizedList to its own package", "author" : "ngerlem@microsoft.... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "tag": {"type": "string"}, "version": {"type": "string"}, "comments": {"type": "object", "properties": {"prerelease": {"type": "array", "items": {"type": "obj... |
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" : "540102013001", "text" : "\u7eb3\u5982\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "540102013002", "text" : "\u52a0\u8363\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "540102013003", "text" : "\u85cf\u70ed\u793e\u533a\u5c45\u59d4\u4f1a"}, {"id" : "540102013201", "text" : "\u560e\u5df4\u6751\u59d4\u4f1a"}, {"id" : "54... | 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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"code": {"type": "string"}, "bounds": {"type": "object", "properties": {"left": {"type": "number"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}}, "required": ["left", "right", ... | {"code" : "IOSID", "bounds" : {"left" : 42.5, "right" : 58.5, "bottom" : -21.0, "top" : -11.0}, "indices" : {"left" : 445, "right" : 476, "bottom" : 221, "top" : 202}, "splitted" : false} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "bounds": {"type": "object", "properties": {"left": {"type": "number"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}}, "required": ["left", "right", "bottom", "top"]}, "indices": {"type": "object", "properties": {"left... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "main", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "fmt", "main" : "index.js", "scripts" : ["index.js"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "main", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "... | {"features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [4.504275093589744, 50.91314245368373]}, "properties" : {"TIMESTAMP UTC" : "2020-09-24T10:47:00", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [4.532337771652422, 50.594094834... | json_instruct | {"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properti... |
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" : [[[123.5, 29.583333333333332], [123.5, 29.666666666666668], [123.625, 29.666666666666668], [123.625, 29.583333333333332], [123.5, 29.583333333333332]]]}, "properties" : {"code" : 442334, "url" : "http://madefor.github.io/0410/api/v1/442334.geojson",... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "str... | {"name" : "brackets/code-style-fixer", "description" : "Fixing php code style", "type" : "library", "minimum-stability" : "stable", "license" : "MIT", "keywords" : ["git", "composer", "style", "fixer"], "authors" : [{"name" : "David Behal", "email" : "david.behal@brackets.sk"}], "require" : {"php" : ">=7.0", "symfony/c... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "prope... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"extends": {"type": "string"}, "branches": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "branches"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : "semantic-release-monorepo", "branches" : ["main"]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "branches": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "branches"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "Win... | {"Time" : "2021-01-25T09:00:00Z", "Temp" : 14.8, "RelHum" : 49, "WindSpeed" : 1.3, "WindDir" : 114} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/sche... | [{"name" : "BAHIJA", "frequency" : 849, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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-w2f9-3chr-2j98", "modified" : "2022-04-30T18:20:38Z", "published" : "2022-04-30T18:20:38Z", "aliases" : ["CVE-2002-1150"], "details" : "The Remote Desktop Sharing (RDS) Screen Saver Protection capability for Microsoft NetMeeting 3.01 through SP2 (4.4.3396) allows attackers with... | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "a... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["jquery", "underscore"]}}, "required": ["name", "depend... | {"name" : "project-name", "dependencies" : {"jquery" : "~2.1.4", "underscore" : "~1.8.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["jquery", "underscore"]}}, "required": ["name", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"},... | {"\u5de5\u5ee0\u540d\u7a31" : "\u74b0\u7403\u6676\u5713\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "95A00971", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u7af9\u79d1\u5b78\u5de5\u696d\u5712\u5340\u65b0\u7af9\u5e02\u6771\u5340\u5de5\u... | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"t... | {"$schema" : "http://json-schema.org/draft-07/schema#", "type" : "object", "required" : ["name", "address"], "properties" : {"name" : {"type" : "string", "minLength" : 1, "maxLength" : 32}, "age" : {"type" : "number", "minimum" : 0, "maximum" : 120}, "address" : {"type" : "object", "required" : ["line1", "line2", "city... | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"type": {"type": "string"}, "minLength": {"type": "integer"}, "maxLength": {"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_c... | {"station" : [{"pref_cd" : 42, "line_cd" : 99916, "line_name" : "\u9577\u5d0e\u96fb\u8ecc\uff15\u7cfb\u7d71", "station_cd" : 9991610, "station_g_cd" : 9991610, "station_name" : "\u5927\u6d66\u6d77\u5cb8\u901a", "lon" : 129.870608, "lat" : 32.737861}]} | json_instruct | {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"commands": {"type": "array", "items": {"type": "string"}}, "response_type": {"type": "string"}, "response": {"type": "string"}}, "required": ["commands", "response_type", "response"], "$schema": "http://json-schema.o... | {"commands" : ["climb lotto ticket", "climb lotto", "climb ticket"], "response_type" : "display", "response" : "You can't climb a piece of paper."} | json_instruct | {"type": "object", "properties": {"commands": {"type": "array", "items": {"type": "string"}}, "response_type": {"type": "string"}, "response": {"type": "string"}}, "required": ["commands", "response_type", "response"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/s... | [{"name" : "YIHAO", "frequency" : 2, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "pk": {"type": "integer"}, "fields": {"type": "object", "properties": {"title_en": {"type": "string"}, "abstract_en": {"type": "string"}, "purpose_en": {"t... | [{"model" : "maps.map", "pk" : 1002, "fields" : {"title_en" : "theaters_nyc_map", "abstract_en" : "", "purpose_en" : null, "constraints_other_en" : null, "supplemental_information_en" : "No information provided", "data_quality_statement_en" : null, "zoom" : 13, "projection" : "EPSG:3857", "center_x" : -73.8703896646753... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"model": {"type": "string"}, "pk": {"type": "integer"}, "fields": {"type": "object", "properties": {"title_en": {"type": "string"}, "abstract_en": {"type": "string"}, "purpose_en": {"type": "null"}, "constraints_other_en": {"type": "null"}, "supplemental_info... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "cheerio": {"type": "string"}, "dotenv": {"type": "string"}, "https-proxy-agent": {"type": "string"}, "node-fetch": {"type": "string"}, "puppeteer": {... | {"dependencies" : {"axios" : "^0.24.0", "cheerio" : "^1.0.0-rc.10", "dotenv" : "^11.0.0", "https-proxy-agent" : "^5.0.0", "node-fetch" : "^2.6.6", "puppeteer" : "^13.0.1"}, "devDependencies" : {"@types/dotenv" : "^8.2.0", "@types/node" : "^17.0.8", "@types/node-fetch" : "^3.0.3", "@types/puppeteer" : "^5.4.4", "typescr... | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "cheerio": {"type": "string"}, "dotenv": {"type": "string"}, "https-proxy-agent": {"type": "string"}, "node-fetch": {"type": "string"}, "puppeteer": {"type": "string"}}, "required": ["axios", "cheerio", "dot... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07... | [{"year" : 1994, "sex" : "F", "n" : 8, "prop" : 4.1e-06}, {"year" : 1995, "sex" : "F", "n" : 14, "prop" : 7.29e-06}, {"year" : 1996, "sex" : "F", "n" : 15, "prop" : 7.83e-06}, {"year" : 1997, "sex" : "F", "n" : 29, "prop" : 0}, {"year" : 1998, "sex" : "F", "n" : 25, "prop" : 0}, {"year" : 1999, "sex" : "F", "n" : 53, "... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
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" : 55, "n_trials" : 80, "objective" : "markowitz_skew_on_cube", "white" : "optuna_random_clone_1", "black" : "bobyqa_default", "traceback" : ["passing", "passing"], "best_val" : [21.417436871635537, 25.840924031853493], "best_x" : [[0.6948116097562096, 0.11450536032018721, 0.29159796537426774, 0.506315212732346... | 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": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "urltweet": {"type": "string"}}, "required": ["text", "created", "type", "urltweet"], "$schema": "http://json-schema.org/draft-07/schema#... | {"text" : "<a href=\"https://twitter.com/davewiner/status/998769405390712837\">Poll</a>: Which teams will be in the NBA Finals?", "created" : "Tue, 22 May 2018 03:36:42 GMT", "type" : "outline", "urltweet" : "https://twitter.com/davewiner/status/998769405390712837"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "urltweet": {"type": "string"}}, "required": ["text", "created", "type", "urltweet"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "num... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[137.875, 40.083333333333336], [137.875, 40.166666666666664], [138.0, 40.166666666666664], [138.0, 40.083333333333336], [137.875, 40.083333333333336]]]}, "properties" : {"code" : 603717, "url" : "http://madefor.github.io/0410/api/v1/603717.geojson... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text":... | {"text" : "For the purposes of this chapter, the term \"terminal condition\" means an incurable condition caused by injury, disease, or illness, which, regardless of the application of life-sustaining procedures, would, within reasonable medical judgment, produce death within 6 months or less.", "historical" : "Prior C... | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "ti... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "null"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"},... | {"accession_number" : "08.146", "actors" : [], "creation_date" : null, "credit_line" : "John Herron Bequest", "cultures" : [], "dimensions" : "12 1/4 x 4 3/4 x 5 in.", "dynasty" : null, "images" : [], "irn" : 47164, "materials" : "leather, wood", "on_view" : false, "period" : null, "printers" : [], "publishers" : [], "... | json_instruct | {"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "null"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array",... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produc... | {"userId" : 58269, "cartId" : "32e743f5-d5d1-47aa-aec4-1e95a4231905", "preferredProducts" : [110, 3454, 1393, 2406], "productReviews" : [{"productId" : 4439, "reviewText" : "I saw one of these in Libya and I bought one.", "reviewDate" : "2016-08-29T07:09:05.5296013+03:00"}, {"productId" : 4257, "reviewText" : "It only ... | 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... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-0... | {"variants" : {"" : {"model" : "essence:block/essence_wood_plank"}}} | 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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common... | {"name" : "ngx-tour-core", "version" : "4.0.1", "repository" : "https://github.com/isaacplmann/ngx-tour.git", "author" : "Isaac Mann <isaacplmann@gmail.com>", "license" : "MIT", "peerDependencies" : {"@angular/common" : "^8.1.2", "@angular/core" : "^8.1.2", "@angular/router" : "^8.1.2", "rxjs" : "^6.5.2"}, "main" : "bu... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}, "@... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "defined": {"type": "object", "properties": {"spec": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "url"]}, "fragment":... | {"name" : "ParityType", "defined" : {"spec" : {"title" : "Web Serial API", "url" : "https://wicg.github.io/serial/"}, "fragment" : "enum ParityType {\n \"none\",\n \"even\",\n \"odd\"\n};", "href" : "https://wicg.github.io/serial/#dom-paritytype"}, "extended" : [], "includes" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "defined": {"type": "object", "properties": {"spec": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "url"]}, "fragment": {"type": "string"}, "href": {"type": "string"}}, "required": ["spec", "... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "str... | {"type" : "bundle", "id" : "bundle--e60b7aab-7587-489a-a4f3-929a8fb7c399", "spec_version" : "2.0", "objects" : [{"type" : "course-of-action", "id" : "course-of-action--6e1bbba5-6253-4a97-ac80-dba8e3023bf6", "created_by_ref" : "identity--31f421d4-bb36-4dbf-9dfc-c116a91de14b", "created" : "2014-06-23T00:00:00.000Z", "mod... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "created_by_ref": {"type": "string"}, "created": {"type": "string"}, "... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationGroupId" : 1163633, "stations" : ["1163633"]} | json_instruct | {"type": "object", "properties": {"stationGroupId": {"type": "integer"}, "stations": {"type": "array", "items": {"type": "string"}}}, "required": ["stationGroupId", "stations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": {"start": {"type": "string"}, "postinstall": {"t... | {"name" : "Parse-Cloud-Code-Heroku", "version" : "1.0.0", "description" : "Migrating Cloud Code to Heroku with Express", "main" : "server", "scripts" : {"start" : "NODE_PATH=$NODE_PATH:./lib node server.js", "postinstall" : "NODE_PATH=$NODE_PATH:./lib node scripts/register-webhooks.js"}, "dependencies" : {"express" : "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start", "postinstall"]}, "dependencies":... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.