input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "array", "items": {"type": "integer"}}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "e9096f7e80f06c56265f", "c" : [0]} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "array", "items": {"type": "integer"}}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"TraceFileName": {"type": "string"}, "TraceFileSize": {"type": "integer"}, "VerbosityLevel": {"type": "string"}}, "required": ["TraceFileName", "TraceFileSize", "VerbosityLevel"], "$schema": "http://json-schema.org/... | {"TraceFileName" : "/var/log/iqrf-daemon.log", "TraceFileSize" : 0, "VerbosityLevel" : "inf"} | json_instruct | {"type": "object", "properties": {"TraceFileName": {"type": "string"}, "TraceFileSize": {"type": "integer"}, "VerbosityLevel": {"type": "string"}}, "required": ["TraceFileName", "TraceFileSize", "VerbosityLevel"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type"... | {"id" : 161048, "info" : {"name" : "Robinhood Dark", "description" : "A dark theme for https://robinhood.com", "additionalInfo" : null, "format" : "uso", "category" : "robinhood", "createdAt" : "2018-06-07T16:49:04.000Z", "updatedAt" : "2018-06-07T17:09:58.000Z", "license" : "CC0-1.0", "author" : {"id" : 661519, "name"... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/armors/decorative/pandorasboxmonstermasks/pandorasboxiguarmorhat/pandorasboxiguarmorhat.head": {"t... | [{"DeniedAlternatives" : [], "Files" : {"items/armors/decorative/pandorasboxmonstermasks/pandorasboxiguarmorhat/pandorasboxiguarmorhat.head" : ["/description"]}, "Texts" : {"Chs" : "\u5c3d\u7ba1\u770b\u8d77\u6765\u5177\u6709\u4fdd\u62a4\u6027\uff0c\u4f46\u662f\u5e76\u4e0d\u80fd\u4f5c\u4e3a\u4e00\u9876\u5408\u9002\u7684... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/armors/decorative/pandorasboxmonstermasks/pandorasboxiguarmorhat/pandorasboxiguarmorhat.head": {"type": "array", "items": {"type": "string"}}}, "required":... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:slug": {"type": "string"},... | {"name" : "zmdjs", "version" : "0.3.0", "description" : "Just a markdown parser", "main" : "zmd.js", "scripts" : {"test" : "npm run test:slug && npm run test:gfm && npm run test:diff && npm run test:coverage", "test:slug" : "mocha test/slug", "test:gfm" : "node test/gfm", "test:diff" : "node test/diff", "test:coverage"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:slug": {"type": "string"}, "test:gfm": {"type": "string"}, "test:diff": {"type": "str... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "partition": {"type": "array", "items": {"type": "object", "properties": {"device": {"type": "string"}, "mountpoint": {"type": "string"}, "size": {"type": "intege... | [{"name" : "redhat", "partition" : [{"device" : "sdd", "mountpoint" : "/redhat", "size" : 23456, "fstype" : "ext4", "options" : ""}], "route" : [{"address" : "250.254.3.0", "gateway" : "250.254.3.1", "subnet" : null, "netmask" : "255.255.255.0", "interface" : "redhat"}], "firewall" : [{"service" : "redhat", "network" :... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "partition": {"type": "array", "items": {"type": "object", "properties": {"device": {"type": "string"}, "mountpoint": {"type": "string"}, "size": {"type": "integer"}, "fstype": {"type": "string"}, "options": {"type": "string"}}, "r... |
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/graywacke_cobble_vertical_slab_4"} | 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"}, "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" : [[[-72.501961, 44.050448], [-72.499917, 44.055592], [-72.49828, 44.057258], [-72.456006, 44.133085], [-72.443032, 44.128669], [-72.419747, 44.220979], [-72.30498, 44.183149], [-72.331384, 44.092546], [-72.348089, 44.096112],... | 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 sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": ... | {"userId" : 43134, "cartId" : "8115f873-0b9c-4385-a216-92482b6d86ff", "preferredProducts" : [2418, 484, 1025, 3851], "productReviews" : [{"productId" : 317, "reviewText" : "talk about pleasure.", "reviewDate" : "2019-02-11T00:28:27.5509871+02:00"}, {"productId" : 3178, "reviewText" : "My neighbor Betha has one of these... | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 131039, "date" : "2017-11-27 04:08:56", "user" : "Debouncer", "post" : "50% recurring discount on Basic [blacklist monitoring](https://www.debouncer.com) plans.\r\nCoupon code: LET50\r\n\r\n* 8 hours blacklist check frequency\r\n* 10 monitors - <del>$35</del> $17.50 per year\r\n* 30 monitors - <d... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"vjs-video.js": {"type": "string"}, "vjs-video.min.js": {"type": "string"}}, "required": ["vjs-video.js", "vjs-video.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vjs-video.js" : "sha512-/k8Wr4qP77jQnwpSlS6khWi5BqkSXy5U9cRJDplv7N8YhfCfL9bbNyRWqPYIhvVH2uMesDJ4tZC3R+vRVQb38A==", "vjs-video.min.js" : "sha512-tmGuzs6aTqws2fdNFCrgNA7fDgtekJ0fFodC2VqD7ADtk88jJDYapuVryOd/tONUMBhcpK8FoexOAGIkktDFRA=="} | json_instruct | {"type": "object", "properties": {"vjs-video.js": {"type": "string"}, "vjs-video.min.js": {"type": "string"}}, "required": ["vjs-video.js", "vjs-video.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$sche... | {"code" : "INT400", "lang" : "de", "description" : "\nPersonenkraftwagen je 1000 Einwohner\n\nErl\u00e4uterung f\u00fcr folgende Statistik(en):\n99911 Internationale Indikatoren\n\nBegriffsinhalt:\nAls Personenkraftwagen (Pkw) gelten alle zur\nPersonenbef\u00f6rderung vorgesehenen, motorisierten Fahrzeuge\nmit mehr als... | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "embellishcraft:block/marble_button_inventory"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[2001, 6], [2003, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"label": {"type": "string"}, "id": {"type": "string"}, "_sink": {"type": "string"}, "_sinkLabel": {"type": "string"}, "_vertexId": {"type": "string"}, "_vertexLabel": {"type": "string"}, "_isEdge": {"type": "boolean"... | {"label" : "seenIn", "id" : "75c73c23-d041-4e03-810f-25d4d9e14df3", "_sink" : "cb9f7508-6519-42c9-a532-e67d5b23a974", "_sinkLabel" : "comic", "_vertexId" : "37385ec6-c732-4fa8-bf9b-50423e567c73", "_vertexLabel" : "hero", "_isEdge" : true, "_rid" : "VyAjAPMRAAD1AwAAAAAAAA==", "_self" : "dbs/VyAjAA==/colls/VyAjAPMRAAA=/d... | json_instruct | {"type": "object", "properties": {"label": {"type": "string"}, "id": {"type": "string"}, "_sink": {"type": "string"}, "_sinkLabel": {"type": "string"}, "_vertexId": {"type": "string"}, "_vertexLabel": {"type": "string"}, "_isEdge": {"type": "boolean"}, "_rid": {"type": "string"}, "_self": {"type": "string"}, "_etag": {... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"definition": {"type": "string"}, "virus_id": {"type": "string"}, "isolate_id": {"type": "string"}, "_id": {"type": "string"}, "host": {"type": "string"}}, "required": ["definition", "virus_... | [{"definition" : "Raspberry leaf blotch virus segment RNA2, complete genome.", "virus_id" : "d8e4e68a", "isolate_id" : "1dcbc73a", "_id" : "FR823300", "host" : ""}, {"definition" : "Raspberry leaf blotch virus isolate Pittenweem segment RNA8, complete sequence.", "virus_id" : "d8e4e68a", "isolate_id" : "1dcbc73a", "_id... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"definition": {"type": "string"}, "virus_id": {"type": "string"}, "isolate_id": {"type": "string"}, "_id": {"type": "string"}, "host": {"type": "string"}}, "required": ["definition", "virus_id", "isolate_id", "_id", "host"]}, "$schema": "http://json-schema.or... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id_4622": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_4622"], "$schema": "http://json-schema.org/draft-0... | {"id_4622" : {"publicdate" : "2010-11-25 21:37:56", "title" : "Toilers of the Sea"}} | json_instruct | {"type": "object", "properties": {"id_4622": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_4622"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "7311210008", "district_id" : "7311210", "name" : "OPO"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"country_code": {"type": "string"}, "parents": {"type": "array", "items": {"type": "string"}}, "locale": {"type": "string"}, "subdivisions": {"type": "object", "properties": {"Jingyuan Xian": {"type": "object", ... | {"country_code" : "CN", "parents" : ["CN", "Ningxia Huizuzizhiqu", "Guyuan Shi"], "locale" : "zh-Hans", "subdivisions" : {"Jingyuan Xian" : {"local_code" : "\u6cfe\u6e90\u53bf"}, "Longde Xian" : {"local_code" : "\u9686\u5fb7\u53bf"}, "Pengyang Xian" : {"local_code" : "\u5f6d\u9633\u53bf"}, "Xiji Xian" : {"local_code" :... | json_instruct | {"type": "object", "properties": {"country_code": {"type": "string"}, "parents": {"type": "array", "items": {"type": "string"}}, "locale": {"type": "string"}, "subdivisions": {"type": "object", "properties": {"Jingyuan Xian": {"type": "object", "properties": {"local_code": {"type": "string"}}, "required": ["local_code"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "f01b7b5e3ef8f69588a276ac959a5cb2d8313bde"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"service": {"type": "object", "properties": {"name": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "port": {"type": "integer"}, "checks": {"type": "array", "items": {"type": "object", "properties":... | {"service" : {"name" : "mongos", "tags" : ["master"], "port" : 27017, "checks" : [{"script" : "/usr/local/bin/check-port 27017", "interval" : "10s"}]}} | json_instruct | {"type": "object", "properties": {"service": {"type": "object", "properties": {"name": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "port": {"type": "integer"}, "checks": {"type": "array", "items": {"type": "object", "properties": {"script": {"type": "string"}, "interval": {"type": "strin... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"heading": {"type": "string"}, "headingText": {"type": "string"}, "question": {"type": "string"}, "answer": {"type": "string"}, "noResultsFound": {"type": "string"}, "resetSearch": {"type": "string"}}, "required": ["h... | {"heading" : "# \u5e38\u89c1\u95ee\u9898", "headingText" : "\u6709\u4e00\u4e2a\u95ee\u9898?\u5728\u521b\u5efa\u95ee\u9898\u8868\u4e4b\u524d\uff0c\u8bf7\u68c0\u67e5\u4e00\u4e9b\u5e38\u89c1\u7684\u9519\u8bef\u3002\u5982\u679c\u4f60\u4ecd\u7136\u627e\u4e0d\u5230\u89e3\u51b3\u529e\u6cd5\uff0c\u4f60\u53ef\u4ee5\u5728 Github... | json_instruct | {"type": "object", "properties": {"heading": {"type": "string"}, "headingText": {"type": "string"}, "question": {"type": "string"}, "answer": {"type": "string"}, "noResultsFound": {"type": "string"}, "resetSearch": {"type": "string"}}, "required": ["heading", "headingText", "question", "answer", "noResultsFound", "rese... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Note 10+ 5G", "description" : "A 6.3 inch smartphone/tablet.", "url" : "https://en.wikipedia.org/wiki/Samsung_Galaxy_Note_10"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]},... | {"name" : "deviationdetective", "version" : "0.1.1", "description" : "Have two geojson lines? Yes? Good! Use this tool to find differences between the two.", "author" : {"name" : "Julien Clifford", "email" : "jcliff90@gmail.com"}, "repository" : "StavroMueller/DeviationDetective", "license" : "MIT", "files" : ["index.j... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "string"}, "license": {"type": "str... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}... | {"schema_version" : "1.2.0", "id" : "GHSA-w29x-wmq5-qc5q", "modified" : "2022-05-01T06:38:00Z", "published" : "2022-05-01T06:38:00Z", "aliases" : ["CVE-2006-0197"], "details" : "The XClientMessageEvent struct used in certain components of X.Org 6.8.2 and earlier, possibly including (1) the X server and (2) Xlib, uses a... | 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... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "scent", "definition" : "1. To perceive by the olfactory organs; to smell; as, to scent game, as a hound does. Methinks I scent the morning air. Shak. 2. To imbue or fill with odor; to perfume. Balm from a silver box distilled around, Shall all bedew the roots, and scent the sacred ground. Dryden.\n\n1. To ha... | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"expr": {"type": "string"}, "dataset": {"type": "null"}, "bindings": {"type": "object", "properties": {}, "required": []}, "result": {"type": "string"}}, "required": ["expr", "dataset", "bindings", "result"], "$schema": "http:/... | {"expr" : "$replace(\"abracadabra\", /a(.)/, \"a$1$1\")", "dataset" : null, "bindings" : {}, "result" : "abbraccaddabbra"} | json_instruct | {"type": "object", "properties": {"expr": {"type": "string"}, "dataset": {"type": "null"}, "bindings": {"type": "object", "properties": {}, "required": []}, "result": {"type": "string"}}, "required": ["expr", "dataset", "bindings", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"average_occupancy" : [2.8364330564123694, 2.8106232655066536, 2.7406719933124397, 2.758407941396509, 2.7241095874340373, 2.861503012099123, 2.839152184430314, 2.8853969803615556, 2.9028813048805366, 3.058419295635959, 3.0326947526156327, 2.982579781679626, 2.974395639334666, 2.83225399833039, 2.7928340857680993, 2.78... | json_instruct | {"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"liveServer.settings.port": {"type": "integer"}, "workbench.colorCustomizations": {"type": "object", "properties": {"activityBar.background": {"type": "string"}, "titleBar.activeBackground": {"type": "string"}, "tit... | {"liveServer.settings.port" : 5501, "workbench.colorCustomizations" : {"activityBar.background" : "#452607", "titleBar.activeBackground" : "#61360A", "titleBar.activeForeground" : "#FEF9F4"}, "workbench.editor.enablePreview" : false, "workbench.editor.showTabs" : true} | json_instruct | {"type": "object", "properties": {"liveServer.settings.port": {"type": "integer"}, "workbench.colorCustomizations": {"type": "object", "properties": {"activityBar.background": {"type": "string"}, "titleBar.activeBackground": {"type": "string"}, "titleBar.activeForeground": {"type": "string"}}, "required": ["activityBar... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"], "$schema": "ht... | {"type" : "MultiPolygon", "coordinates" : [[[[5.236, 51.133], [5.253, 51.143], [5.255, 51.146], [5.261, 51.147], [5.28, 51.131], [5.301, 51.106], [5.287, 51.103], [5.275, 51.103], [5.262, 51.099000000000004], [5.257, 51.099000000000004], [5.256, 51.105000000000004], [5.249, 51.11], [5.247, 51.114000000000004], [5.243, ... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", ... | {"name" : "tools", "description" : "A lot of my tools", "license" : null, "starNum" : 66, "folkNum" : 34, "watchNum" : 66, "topic" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "... | [{"e_id" : "4764", "title" : "\u79d8\u9c81\u5ba3\u5e03\u9000\u51fa\u5b89\u7b2c\u65af\u5171\u540c\u4f53", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u572824\u5e74\u524d\u7684\u4eca\u5929\uff0c1997\u5e744\u670811\u65e5(\u519c\u53861997\u5e743\u67085\u65e5)\uff0c\u79d8\u9c81\u5ba3\u5e03\u9000\u51fa\u5b89\u7b2c\u65af\u5171\u5... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/dr... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"stat.flyOneCm": {"type": "integer"}, "stat.walkOneCm": {"type": "integer"}, "stat.jump": {"type": "integer"}, "stat.swimOneCm": {"type": "integer"}, "stat.playOneMinute": {"type": "integer"}, "achievement.openInventory": {"typ... | {"stat.flyOneCm" : 37223, "stat.walkOneCm" : 18952, "stat.jump" : 65, "stat.swimOneCm" : 156, "stat.playOneMinute" : 2654, "achievement.openInventory" : 1, "stat.leaveGame" : 1, "stat.crouchOneCm" : 421, "stat.timeSinceDeath" : 2654, "stat.sprintOneCm" : 7551, "achievement.exploreAllBiomes" : {"value" : 0, "progress" :... | json_instruct | {"type": "object", "properties": {"stat.flyOneCm": {"type": "integer"}, "stat.walkOneCm": {"type": "integer"}, "stat.jump": {"type": "integer"}, "stat.swimOneCm": {"type": "integer"}, "stat.playOneMinute": {"type": "integer"}, "achievement.openInventory": {"type": "integer"}, "stat.leaveGame": {"type": "integer"}, "sta... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"editor.fontFamily": {"type": "string"}}, "required": ["editor.fontFamily"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"editor.fontFamily" : "'Menlo', 'monospace', monospace, 'Droid Sans Fallback'"} | json_instruct | {"type": "object", "properties": {"editor.fontFamily": {"type": "string"}}, "required": ["editor.fontFamily"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d963-53", "text" : "~ 3 \u00ab\nstill remained, and remains, tias only mrdoorship^bmed association in odmo*\ntional broadening with all the other fwatAom sad responsibilities which\nthis implies. These functions have been outlined in some detail in previous\nreports to the Foundation, particularly thorn of Jun... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"COB": {"type": "string"}, "CYTB": {"type": "string"}, "MTCYB": {"type": "string"}, "Complex III subunit 3": {"type": "string"}, "Complex III subunit III": {"type": "string"}, "Cytochrome b-c1 complex subunit 3": {"type": "s... | {"COB" : "Q9XP87", "CYTB" : "Q9XP87", "MTCYB" : "Q9XP87", "Complex III subunit 3" : "Q9XP87", "Complex III subunit III" : "Q9XP87", "Cytochrome b-c1 complex subunit 3" : "Q9XP87", "Ubiquinol-cytochrome-c reductase complex cytochrome b subunit" : "Q9XP87", "Q9TUC4" : "Q9TUC4", "HSP1_SMIBI" : "Q9TUC4", "Sperm protamine P... | json_instruct | {"type": "object", "properties": {"COB": {"type": "string"}, "CYTB": {"type": "string"}, "MTCYB": {"type": "string"}, "Complex III subunit 3": {"type": "string"}, "Complex III subunit III": {"type": "string"}, "Cytochrome b-c1 complex subunit 3": {"type": "string"}, "Ubiquinol-cytochrome-c reductase complex cytochrome ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"Cargo.toml": {"type": "string"}, "README.md": {"type": "string"}, "generators/debug_struct_gen.rs": {"type": "string"}, "generators/global_gen.rs": {"type": "string"... | {"files" : {"Cargo.toml" : "f586015aa2816b3c34d89f5e6a6539172efcd7f3ed055a0fab433ea83e2a0f0f", "README.md" : "52d8fee4681c879f2c964fd30e3faf0c907e8bf676eab7b44beab5c5bbd5c284", "generators/debug_struct_gen.rs" : "6fecccf8e57d4be93ea2657328d6e111ca44bc69542a5522cd7360d80ca64630", "generators/global_gen.rs" : "1696013af1... | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"Cargo.toml": {"type": "string"}, "README.md": {"type": "string"}, "generators/debug_struct_gen.rs": {"type": "string"}, "generators/global_gen.rs": {"type": "string"}, "generators/mod.rs": {"type": "string"}, "generators/static_gen.rs": {"typ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}... | {"uuid" : "cd69102d-1df4-4694-bb7f-184d99bd2eef", "befores" : [{"name" : "json_groups", "status" : "passed", "start" : 1571387233465, "stop" : 1571387233465}], "start" : 1571387233465, "stop" : 1571387236998} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type":... |
Based on the schema below, produce a valid JSON object:
{"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"... | {"schema_version" : "1.2.0", "id" : "GHSA-rmfm-r95f-f779", "modified" : "2022-05-02T03:43:02Z", "published" : "2022-05-02T03:43:02Z", "aliases" : ["CVE-2009-3240"], "details" : "Cross-site scripting (XSS) vulnerability in the Happy Linux XF-Section module 1.12a for XOOPS allows remote attackers to inject arbitrary web ... | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "a... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "license": {"type": "array", "items": {"type": "object", "properties": {"spdx": {"type": "string"}, "licenseURL": {"type": "string"}}... | {"name" : "Autonomous Power Interchange System", "description" : "By accommodating P2P energy sharing between distributed batteries, it is possible to build a microgrid that utilizes variable renewable energy(VRE) as the main power source and enhances the resilience of the power system. These distributed batteries abso... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "license": {"type": "array", "items": {"type": "object", "properties": {"spdx": {"type": "string"}, "licenseURL": {"type": "string"}}, "required": ["spdx", "licenseURL"]}}, "SDGs": {"type": "a... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}}, "required": ["already_configured"]}, "error": {"type": "object", "properties": ... | {"config" : {"abort" : {"already_configured" : "Perangkat sudah dikonfigurasi"}, "error" : {"cannot_connect" : "Gagal terhubung"}, "step" : {"user" : {"data" : {"host" : "Host", "port" : "Port"}, "title" : "Setel detail server"}}}, "options" : {"error" : {"device_not_selected" : "Pilih perangkat untuk dikonfigurasi"}, ... | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}}, "required": ["already_configured"]}, "error": {"type": "object", "properties": {"cannot_connect": {"type": "string"}}, "required": ["cannot_connect"]}, "ste... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"slug": {"type": "string"}, "relevant-countries": {"type": "array", "items": {"type": "string"}}, "categories": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "address": {"type": "string"}... | {"slug" : "ludwigvonkapff", "relevant-countries" : ["de"], "categories" : ["commerce"], "name" : "Ludwig von Kapff GmbH", "address" : "Speicher I\nKonsul-Smidt-Str. 8 J\n28217 Bremen\nDeutschland", "phone" : "+49 421 3994317", "fax" : "+49 421 3994301", "email" : "datenschutz@egfra.de", "web" : "https://www.ludwig-von-... | json_instruct | {"type": "object", "properties": {"slug": {"type": "string"}, "relevant-countries": {"type": "array", "items": {"type": "string"}}, "categories": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}, "fax": {"type": "string"}, "email": {"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[259.27289187243235, 381.3359662869], [312.21431747914113, 345.33579687433803], [365.15574308584985, 326.2768836559228], [428.6854538139004, 360.15939604421646], [451.97968108085223, 400.3948795053152], [481.6268794206091, 459.68927618482894], [500.6857926390242, 491.4541315488541], [443.5090529837788, 529.57195798568... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"C_Cpp.default.includePath": {"type": "array", "items": {"type": "string"}}}, "required": ["C_Cpp.default.includePath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"C_Cpp.default.includePath" : ["/opt/flix/include", "${workspaceFolder}"]} | json_instruct | {"type": "object", "properties": {"C_Cpp.default.includePath": {"type": "array", "items": {"type": "string"}}}, "required": ["C_Cpp.default.includePath"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "repository": {"type": "string"}, "buildpacks": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "env": {"type": "object... | {"name" : "delilah", "repository" : "https://github.com/evuez/delilah", "buildpacks" : [{"url" : "https://github.com/mfine/heroku-buildpack-stack.git"}], "env" : {"SLACK_URL" : {"description" : "A Slack Incoming Webhook URL"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "repository": {"type": "string"}, "buildpacks": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "env": {"type": "object", "properties": {"SLACK_URL": {"type": "object", "properties": {"descripti... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"api": {"type": "string"}, "model": {"type": "string"}, "modelDescription": {"type": "string"}, "modelOnly": {"type": "boolean"}, "modelFields": {"type": "array", "items": {"type": "object", "properties": {"identifier... | {"api" : "twitter", "model" : "meta", "modelDescription" : "Meta holds metadata concerning requests", "modelOnly" : true, "modelFields" : [{"identifier" : "result_count", "goType" : "int"}]} | json_instruct | {"type": "object", "properties": {"api": {"type": "string"}, "model": {"type": "string"}, "modelDescription": {"type": "string"}, "modelOnly": {"type": "boolean"}, "modelFields": {"type": "array", "items": {"type": "object", "properties": {"identifier": {"type": "string"}, "goType": {"type": "string"}}, "required": ["i... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"mdb_source_id": {"type": "integer"}, "data_type": {"type": "string"}, "provider": {"type": "string"}, "location": {"type": "object", "properties": {"country_code": {"type": "string"}, "subdivision_name": {"type": "string"}, "bou... | {"mdb_source_id" : 1003, "data_type" : "gtfs", "provider" : "TRAM", "location" : {"country_code" : "ES", "subdivision_name" : "Barcelona", "bounding_box" : {"minimum_latitude" : 41.356672, "maximum_latitude" : 41.392206, "minimum_longitude" : 2.053372, "maximum_longitude" : 2.143175, "extracted_on" : "2022-03-17T19:32:... | json_instruct | {"type": "object", "properties": {"mdb_source_id": {"type": "integer"}, "data_type": {"type": "string"}, "provider": {"type": "string"}, "location": {"type": "object", "properties": {"country_code": {"type": "string"}, "subdivision_name": {"type": "string"}, "bounding_box": {"type": "object", "properties": {"minimum_la... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "prop... | {"hash" : "0x6b85030771c5d133e75d5aca096dde3c5ebc17df42fcaf02b415fc01a6a0e109", "parentHash" : "0xc89698073a58fb753d1949177bf3f220d8aba8c91d2257fa2f29a59769398f9e", "number" : 75979, "timestamp" : 1439412905, "nonce" : "0xf61c49da0caf7ebf", "difficulty" : 2230920386607, "gasLimit" : {"_hex" : "0x2fefd5"}, "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"]... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"contractId": {"type": "string"}, "contractLayerId": {"type": "string"}, "contractScopeCode": {"type": "string"}, "contractCedantCode": {"type": "string"}, "reinsurerCode": {"type": "string"}, "underwriterShortName... | {"contractId" : "Long", "contractLayerId" : "Long", "contractScopeCode" : "String", "contractCedantCode" : "String", "reinsurerCode" : "String", "underwriterShortName" : "String", "producerShortName" : "String", "branchShortName" : "String", "brokerShortName" : "String"} | json_instruct | {"type": "object", "properties": {"contractId": {"type": "string"}, "contractLayerId": {"type": "string"}, "contractScopeCode": {"type": "string"}, "contractCedantCode": {"type": "string"}, "reinsurerCode": {"type": "string"}, "underwriterShortName": {"type": "string"}, "producerShortName": {"type": "string"}, "branchS... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"... | {"name" : "reacting-to-react", "version" : "1.0.0", "description" : "A little experiment with React", "author" : "Steve Thomson <organicpanda@gmail.com>", "license" : "MIT", "scripts" : {"start" : "browser-sync start --files \"**/*.*\" --server --no-open --no-ui --no-inject-changes --no-notify", "postinstall" : "jspm i... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start",... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": ... | {"type" : "Feature", "properties" : {"name" : "Amatas novads", "iso2" : "LV-008", "admin_level" : 6, "osm_id" : 1781275, "wikidata_id" : "Q1892063", "wikipedia_id" : "lv:Amatas novads", "population" : 4983, "countrylevel_id" : "iso2:LV-008", "osm_data" : {"localname" : "Amatas novads", "official_name" : "", "alltags" :... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author"... | {"title" : "\u4e00\u9a0e\u5f53\u5343", "author" : "Kuroiro", "description" : "\u4e00\u9a0e\u5f53\u5343", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/33278/thumbnail-33278_0001.jpg?itok=Cssy7kW6", "download" : "https://www.iwara.tv/api/video/36qgtnrqtqq447b", "origin" : "https:/... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://js... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "value": {"type": "object", "properties": {"type": {"type": "string"}, "x": {"type": "integer"}, "y": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type":... | {"type" : "custom", "name" : "example", "value" : {"type" : "image", "x" : 50, "y" : 50, "width" : 160, "height" : 96, "bitmap" : "doge"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "value": {"type": "object", "properties": {"type": {"type": "string"}, "x": {"type": "integer"}, "y": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "bitmap": {"type": "string"}}, "required": ["t... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "numcustomers": {"type": "integer"}, "numfacilities": {"type": "integer"}, "cost": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "req": {"type": "array", "it... | {"name" : "gap4_4", "numcustomers" : 30, "numfacilities" : 5, "cost" : [[15, 20, 23, 10, 16, 20, 20, 24, 13, 13, 11, 11, 15, 16, 18, 17, 17, 19, 20, 10, 15, 17, 12, 17, 15, 23, 22, 23, 25, 16], [18, 23, 19, 11, 14, 20, 20, 13, 20, 11, 13, 24, 14, 16, 18, 19, 19, 14, 16, 12, 11, 16, 12, 23, 12, 19, 10, 10, 22, 20], [15,... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "numcustomers": {"type": "integer"}, "numfacilities": {"type": "integer"}, "cost": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "req": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "cap": {"type"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "null"}, "url": {"type": "null"}}, "required... | {"name" : "simpleeval", "description" : "Simple Safe Sandboxed Extensible Expression Evaluator for Python", "license" : {"key" : "other", "name" : "Other", "spdx_id" : null, "url" : null}, "starNum" : 75, "folkNum" : 16, "watchNum" : 75, "topic" : ["evaluation", "library", "python"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "null"}, "url": {"type": "null"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"xbox": {"type": "integer"}, "ps": {"type": "integer"}}, "required": ["xbox", "ps"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"xbox" : 25719, "ps" : 32901} | json_instruct | {"type": "object", "properties": {"xbox": {"type": "integer"}, "ps": {"type": "integer"}}, "required": ["xbox", "ps"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"category": {"type": "string"}, "subcategory": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "providedby": {"type": "string"}}, "required": ["category... | {"category" : "Japanese tea in daily life", "subcategory" : "Outdoor", "title" : "Plucking tea leaves together", "description" : "Adults and children trying out plucking tea leaves together.", "image" : "https://nihon-cha.or.jp/dbpath/images/120101000020.jpg", "providedby" : "Shizuoka City Government"} | json_instruct | {"type": "object", "properties": {"category": {"type": "string"}, "subcategory": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "providedby": {"type": "string"}}, "required": ["category", "subcategory", "title", "description", "image", "providedby"], "$s... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"env": {"type": "string"}}, "required": ["env"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"env" : "all"} | json_instruct | {"type": "object", "properties": {"env": {"type": "string"}}, "required": ["env"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": {"1": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "2": {"typ... | {"type" : "minecraft:crafting_shaped", "pattern" : [" 1 ", "2 3", "456"], "key" : {"1" : {"item" : "minecraft:diamond_sword"}, "2" : {"item" : "minecraft:diamond_axe"}, "3" : {"item" : "minecraft:diamond_pickaxe"}, "4" : {"item" : "minecraft:diamond_hoe"}, "5" : {"item" : "minecraft:shears"}, "6" : {"item" : "minecraft... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"1": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}, "2": {"type": "object", "properties": {"item": {"type": "string"}},... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"description": {"type": "string"}, "etag": {"type": "string"}, "includedPermissions": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "stage": {"type": "string"}, "title": {"type": "s... | {"description" : "This role is managed by Dell EMC, not Google.", "etag" : "AA==", "includedPermissions" : ["cloudonefs.isiloncloud.com/clusters.get", "cloudonefs.isiloncloud.com/clusters.list", "cloudonefs.isiloncloud.com/fileshares.get", "cloudonefs.isiloncloud.com/fileshares.list", "resourcemanager.projects.get", "r... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "etag": {"type": "string"}, "includedPermissions": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "stage": {"type": "string"}, "title": {"type": "string"}}, "required": ["description", "etag", "includedPermissions", "name"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}},... | [{"postal_code" : "27020", "place_name" : "Abastos", "place_type" : "Colonia", "county" : "Torre\u00f3n", "state" : "Coahuila de Zaragoza", "city" : "Torre\u00f3n"}, {"postal_code" : "27020", "place_name" : "Santa Mar\u00eda", "place_type" : "Colonia", "county" : "Torre\u00f3n", "state" : "Coahuila de Zaragoza", "city"... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "s... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"OverworldNotToScale": {"type": "array", "items": {"type": "string"}}}, "required": ["OverworldNotToScale"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"OverworldNotToScale" : ["RPG", "TropeCodifier", "ChokepointGeography", "SequenceBreaking", "RandomEncounters", "TraumaInn", "TravellingAtTheSpeedOfPlot", "SavePoint", "RandomEncounters", "WarpWhistle", "GlobalAirship", "DarkWorld", "AnotherDimension", "TimeTravel", "AlternateWorldMap", "TheOverworld", "PointAndClickM... | json_instruct | {"type": "object", "properties": {"OverworldNotToScale": {"type": "array", "items": {"type": "string"}}}, "required": ["OverworldNotToScale"], "$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"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "pro... | {"name" : "NextWeb", "version" : "1.0.1", "private" : true, "scripts" : {"start" : "node app.js"}, "dependencies" : {"canvas" : "^1.3.5", "excel" : "^0.1.4", "excel-parser" : "^0.2.2", "express" : "3.4.7", "grunt" : "^0.4.5", "grunt-concurrent" : "^0.4.3", "grunt-contrib-coffee" : "^0.7.0", "grunt-contrib-copy" : "^0.8... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"canvas": {"type": "string"}, "excel": {"type"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"require": {"type": "object", "properties": {"abraham/twitteroauth": {"type": "string"}, "vlucas/phpdotenv": {"type": "string"}}, "required": ["abraham/twitteroauth", "vlucas/phpdotenv"]}}, "required": ["require"], "$schema": "... | {"require" : {"abraham/twitteroauth" : "^2.0", "vlucas/phpdotenv" : "^5.3"}} | json_instruct | {"type": "object", "properties": {"require": {"type": "object", "properties": {"abraham/twitteroauth": {"type": "string"}, "vlucas/phpdotenv": {"type": "string"}}, "required": ["abraham/twitteroauth", "vlucas/phpdotenv"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints": {"type": "array", "items": {"type": "number"}}, "face_keypoints": {"type": "array", "item... | {"version" : 1.0, "people" : [{"pose_keypoints" : [488.655, 131.08, 0.761607, 457.301, 157.138, 0.837289, 469.077, 157.105, 0.804927, 475.631, 202.772, 0.865343, 506.878, 193.682, 0.877783, 445.55, 158.429, 0.82378, 442.956, 202.846, 0.791555, 495.155, 202.783, 0.23241, 474.32, 235.431, 0.742124, 487.369, 304.617, 0.70... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints": {"type": "array", "items": {"type": "number"}}, "face_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}, "hand_right_k... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["330326120001", "\u6c38\u5b89\u793e\u533a", "121", "0"], ["330326120002", "\u4e07\u5b89\u793e\u533a", "121", "0"], ["330326120201", "\u96f7\u6e0e\u6751\u59d4\u4f1a", "220", "0"], ["330326120202", "\u6b23\u96c5\u6751\u59d4\u4f1a", "121", "0"], ["330326120204", "\u9ccc\u5bd2\u6751\u59d4\u4f1a", "220", "0"], ["330326120... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"code-mod": {"type": "string"}}, "required": ["code-mod"]}, "keywords": {"type": "array", "i... | {"name" : "@semcore/code-mod", "version" : "1.4.0", "description" : "Code mod for @semcore components", "bin" : {"code-mod" : "./bin/code-mode.js"}, "keywords" : ["cli", "command"], "author" : "", "license" : "MIT", "scripts" : {"test" : "jest", "build" : "exit 0"}, "dependencies" : {"inquirer" : "^6.3.1", "jscodeshift... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"code-mod": {"type": "string"}}, "required": ["code-mod"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"changepoint": {"type": "string"}, "country": {"type": "object", "properties": {"code": {"type": "string"}, "group": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "group", "name"]}, "topics": {... | {"changepoint" : "2020-04-19", "country" : {"code" : "LUX", "group" : "lb", "name" : "Luxembourg"}, "topics" : [{"diff" : 85.0, "topic" : "Late modern period"}, {"diff" : 46.0, "topic" : "Historical eras"}, {"diff" : 35.0, "topic" : "Sovereignty"}, {"diff" : 34.0, "topic" : "Territorial entities"}, {"diff" : 34.0, "top... | json_instruct | {"type": "object", "properties": {"changepoint": {"type": "string"}, "country": {"type": "object", "properties": {"code": {"type": "string"}, "group": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "group", "name"]}, "topics": {"type": "array", "items": {"type": "object", "properties": {"diff": {... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"hot_name": {"type": "string"}}, "required": ["hot_name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hot_name" : "/wbdwcupdate/"} | json_instruct | {"type": "object", "properties": {"hot_name": {"type": "string"}}, "required": ["hot_name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "childre... | {"code" : 6210040005, "parent" : 6210040, "name" : "PULANG PISAU", "latitude" : null, "longitude" : null, "postal" : [74811], "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... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "stri... | {"authors" : [{"author" : "Rowland Storey"}, {"author" : "Marcel Gatt"}, {"author" : "Ian Bradford"}], "doi" : "10.1186/1752-1947-3-6", "publication_date" : "2009-01-08", "id" : "EN118621", "url" : "https://pubmed.ncbi.nlm.nih.gov/19126231", "source" : "Journal of medical case reports", "source_url" : "", "licence" : "... | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"docs": {"type": "string"}, "lint": {"type": "string"}, "lin... | {"name" : "crypto-algorithms", "version" : "1.0.0", "description" : "Implementation of several cryptographic function in pure javascript (with tests)", "main" : "src/index.js", "scripts" : {"docs" : "documentation build src/** -f html -o docs", "lint" : "eslint src/**", "lint-fix" : "eslint --fix src/** test/**", "test... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"docs": {"type": "string"}, "lint": {"type": "string"}, "lint-fix": {"type": "string"}, "test": {"type": "string"}}, "r... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bugs": {"type": "string"}, "license": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "rep... | {"name" : "pg-numeric", "version" : "1.0.2", "description" : "reads PostgreSQL binary format for numeric values into a string", "bugs" : "https://github.com/charmander/pg-numeric/issues", "license" : "ISC", "files" : ["index.js"], "repository" : {"type" : "git", "url" : "https://github.com/charmander/pg-numeric"}, "scr... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bugs": {"type": "string"}, "license": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"template": {"type": "integer"}, "meta": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "location": {"type": "string"}}, "required": ["type", "name", "location"]}, "eventNam... | {"template" : 1, "meta" : {"type" : "Oficina", "name" : "Aplicando os conceitos de UX para cria\u00e7\u00e3o de interfaces", "location" : "IFRN Natal-Central"}, "eventName" : "CADESDAY #1 - Oficina \"Aplicando os conceitos de UX para cria\u00e7\u00e3o de interfaces\"", "date" : "2018-08-25T13:00:00-03:00", "location" :... | json_instruct | {"type": "object", "properties": {"template": {"type": "integer"}, "meta": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "location": {"type": "string"}}, "required": ["type", "name", "location"]}, "eventName": {"type": "string"}, "date": {"type": "string"}, "location": {"type... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"temperature": {"type": "number"}, "downfall": {"type": "number"}, "precipitation": {"type": "string"}, "category": {"type": "string"}, "effects": {"type": "object", "properties": {"sky_color": {"type": "integer"}, "fog_color": {... | {"temperature" : 0.8, "downfall" : 0.4, "precipitation" : "rain", "category" : "none", "effects" : {"sky_color" : 3163680, "fog_color" : 3163680, "water_color" : 3163680, "water_fog_color" : 10541966, "grass_color" : 16777215, "foliage_color" : 16777215, "particle" : {"probability" : 0.01, "options" : {"type" : "dust",... | json_instruct | {"type": "object", "properties": {"temperature": {"type": "number"}, "downfall": {"type": "number"}, "precipitation": {"type": "string"}, "category": {"type": "string"}, "effects": {"type": "object", "properties": {"sky_color": {"type": "integer"}, "fog_color": {"type": "integer"}, "water_color": {"type": "integer"}, "... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "1", "name" : "Homer Simpson"}, {"id" : "2", "name" : "Marge Simpson"}, {"id" : "3", "name" : "Bart Simpson"}, {"id" : "4", "name" : "Lisa Simpson"}, {"id" : "8", "name" : "Maggie Simpson"}] | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "... | {"title" : "FH - Xingzuo Madness\uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "gh3ttolobsta", "description" : "Hi,undefinediundefinedfinallyundefinedfinishedundefinedit,undefinedalsoundefinediundefinedapologizeundefinedforundefinedtheundefinedshittyundefinedaudioundefinedbutundefinediundefinedhadundefinedtoundefine... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://js... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"examine" : "It looks like someone has sneezed in it."} | json_instruct | {"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population"... | {"type" : "Feature", "properties" : {"name" : "Warren County", "fips" : "36113", "state_code" : 36, "county_code" : 113, "population" : 63944, "countrylevel_id" : "fips:36113", "census_data" : {"COUNTYNS" : "00974154", "AFFGEOID" : "0500000US36113", "LSAD" : "06", "ALAND" : 2246154412, "AWATER" : 166682936}}, "geometry... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_d... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"thag3.5:0.1": {"type": "string"}, "thag3.5:0.2": {"type": "string"}, "thag3.5:0.3": {"type": "string"}, "thag3.5:0.4": {"type": "string"}, "thag3.5:1.1": {"type": "string"}, "thag3.5:1.2": {"type": "string"}, "thag3.... | {"thag3.5:0.1" : "Verses of the Senior Monks", "thag3.5:0.2" : "The Book of the Threes", "thag3.5:0.3" : "Chapter One", "thag3.5:0.4" : "M\u0101ta\u1e45gaputta", "thag3.5:1.1" : "\u201cIt\u2019s too cold, too hot,", "thag3.5:1.2" : "too late,\u201d they say.", "thag3.5:1.3" : "When the young neglect their work like thi... | json_instruct | {"type": "object", "properties": {"thag3.5:0.1": {"type": "string"}, "thag3.5:0.2": {"type": "string"}, "thag3.5:0.3": {"type": "string"}, "thag3.5:0.4": {"type": "string"}, "thag3.5:1.1": {"type": "string"}, "thag3.5:1.2": {"type": "string"}, "thag3.5:1.3": {"type": "string"}, "thag3.5:1.4": {"type": "string"}, "thag3... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"dataset_name": {"type": "string"}, "model_name": {"type": "string"}, "log_dir": {"type": "string"}}, "required": ["dataset_name", "model_name", "log_dir"]}, "$schema": "http://json-schema.org/draft-0... | [{"dataset_name" : "Fluo-N2DL-HeLa/01-GT+ST-seg", "model_name" : "Fluo-N2DL-HeLa-GT+ST-seg.pth", "log_dir" : "Fluo-N2DL-HeLa-GT+ST-seg"}, {"dataset_name" : "Fluo-N2DL-HeLa/02-GT+ST-seg", "model_name" : "Fluo-N2DL-HeLa-GT+ST-seg.pth", "log_dir" : "Fluo-N2DL-HeLa-GT+ST-seg"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"dataset_name": {"type": "string"}, "model_name": {"type": "string"}, "log_dir": {"type": "string"}}, "required": ["dataset_name", "model_name", "log_dir"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"first": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "limit": {"type": "integer"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "rol... | {"first" : {"href" : "https://zen-cpd-zen.apps.cpdv35-test.cpd-daell.com/v2/spaces/ad4f6950-79e4-4fac-a656-cb07b53c4c71/members"}, "limit" : 100, "resources" : [{"id" : "1000331004", "role" : "admin", "state" : "active", "type" : "user"}, {"id" : "1000331015", "role" : "admin", "state" : "active", "type" : "user"}]} | json_instruct | {"type": "object", "properties": {"first": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "limit": {"type": "integer"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "role": {"type": "string"}, "state": {"type": "string"}, "typ... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "firebase_url": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number",... | {"project_info" : {"project_number" : "811949295210", "firebase_url" : "https://vntrip1-417ed.firebaseio.com", "project_id" : "vntrip1-417ed", "storage_bucket" : "vntrip1-417ed.appspot.com"}, "client" : [{"client_info" : {"mobilesdk_app_id" : "1:811949295210:android:1d4e71fab9a8a67b", "android_client_info" : {"package_... | json_instruct | {"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "firebase_url": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "firebase_url", "project_id", "storage_bucket"]}, "client"... |
Generate a valid JSON object that conforms to the following schema:
{"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": "i... | {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "San Juan, Aurora, Zamboanga del Sur, Zamboanga Peninsula (Region IX), PH", "locale" : "ph.zamboanga-peninsula-region-ix.zamboanga-del-sur.aurora.san-juan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "... | 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": {... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"api": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["api"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"api" : {"url" : "/api-cached"}} | json_instruct | {"type": "object", "properties": {"api": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["api"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type... | {"id" : 85784095, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "3386a3113497d9940f720c6754b8115f", "wof:id" : 85784095, "wof:repo" : "whosonfirst-data-admin-my"}, "bbox" : [103.68720459000002, 1.51054276169026, 103.70720459000017, 1.5286820007051]... | 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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "axios": {... | {"name" : "tfl-bus-board", "version" : "1.0.0", "description" : "RS3 This project involves creating a website which can output bus arrivals based on a postcode.", "main" : "index.js", "dependencies" : {"@types/node" : "^16.0.1", "axios" : "^0.21.1", "express" : "^4.17.1"}, "devDependencies" : {"@types/express" : "^4.17... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "axios": {"type": "string"}, "express": {"type": "string"}}, "required": ["@typ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s"... | {"h" : [{"d" : [{"s" : ["`iwatan~"], "f" : "\ufff9\ufffaRefer to `iwatan~\ufffb\u8a73\u898b `iwatan~"}]}], "t" : "Iwatan"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "county": {"type": "string"}, "elevation": {"type": "integer"}, "location": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"ty... | {"id" : "1527999", "name" : "West Sand Creek Trail", "county" : "Chelan", "elevation" : 1002, "location" : {"type" : "Point", "coordinates" : [-120.5678577, 47.427901]}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "county": {"type": "string"}, "elevation": {"type": "integer"}, "location": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordina... |
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": {"build": {"type": "string"}, "prestart": {"type": "string"},... | {"name" : "burningsw-discord-bot", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"build" : "tsc --build tsconfig.json", "prestart" : "npm run build", "start" : "node ./out/index.js"}, "author" : "", "license" : "ISC", "dependencies" : {"axios" : "^0.21.1", "discord.js" : "^12.5.1", "dotenv"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prestart": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "prest... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ProjectFullName": {"type": "string"}, "ProjectDescription": {"type": "string"}, "AuthorName": {"type": "string"}, "AuthorEmail": {"type": "string"}, "AuthorUrl": {"type": "string"}, "ApiVersion": {"type": "string"}, "Licens... | {"ProjectFullName" : "Public API", "ProjectDescription" : "A public API of the information service.", "AuthorName" : "Nikolay Maev", "AuthorEmail" : "trix.mnr@gmail.com", "AuthorUrl" : "https://github.com/NickMaev", "ApiVersion" : "v1", "License" : "MIT", "RabbitMq" : {"Host" : "bus", "Username" : "user", "Password" : ... | json_instruct | {"type": "object", "properties": {"ProjectFullName": {"type": "string"}, "ProjectDescription": {"type": "string"}, "AuthorName": {"type": "string"}, "AuthorEmail": {"type": "string"}, "AuthorUrl": {"type": "string"}, "ApiVersion": {"type": "string"}, "License": {"type": "string"}, "RabbitMq": {"type": "object", "proper... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:lint": {"type":... | {"name" : "map-each", "version" : "1.0.0", "description" : "A very small, flexible, parallel async mapping helper that has first-class support for Iterators and concurrency.", "main" : "index.js", "scripts" : {"test" : "npm run test:lint && npm run test:unit", "test:lint" : "standard", "test:unit" : "tap test/**/*.js t... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:lint": {"type": "string"}, "test:unit": {"type": "string"}, "test:ci": {"type": "stri... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "null"}, "url": {"type": "... | {"name" : "pyhht", "description" : "Python toolbox for the Hilbert-Huang transform", "license" : {"key" : "other", "name" : "Other", "spdx_id" : null, "url" : null}, "starNum" : 79, "folkNum" : 46, "watchNum" : 79, "topic" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "null"}, "url": {"type": "null"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions":... | {"accession_number" : "74.232", "actors" : [], "creation_date" : "about 1973", "credit_line" : "Director's Discretionary Fund", "cultures" : [], "dimensions" : null, "dynasty" : null, "images" : [], "irn" : 28872, "materials" : "ink", "on_view" : false, "period" : null, "printers" : [], "publishers" : [], "rights" : nu... | json_instruct | {"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "null"}, "dynasty": {"type": "null"}, "images": {"type": "array",... |
Generate a valid JSON object that conforms to the following 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": {"typ... | {"edges" : [[30, 20], [20, 27], [35, 39], [26, 20], [18, 15], [17, 9], [20, 6], [9, 20], [9, 20], [13, 20], [15, 20], [20, 13], [6, 20], [20, 23], [6, 20], [40, 20], [27, 20], [20, 15], [41, 17], [20, 12], [44, 11], [20, 7], [19, 20], [8, 41], [20, 23], [43, 31], [20, 22], [13, 25], [13, 20], [20, 3], [10, 8], [20, 28]... | 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":... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "b585e34a7278cfeaca1b", "c" : {"0" : false}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals",... | {"name" : "Oasis", "symbol" : "ROSE", "address" : "0xe7FB24deEd5f77c82D531F3a62209743331B87d3", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.o... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {... | {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "PROCEDURE_FREQUENCY_DISTRIBUTION" : {"Y_NUM_PERSONS" : 0, "X_COUNT" : 1}, "PROCEDURES_BY_TYPE" : {"CONCEPT_NAM... | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRE... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"... | {"id" : "amix", "symbol" : "amix", "name" : "AMIX", "platforms" : {"ethereum" : "0x564393b8d6deaea8f3d739a3f6d9b441d8ee6198"}, "hashing_algorithm" : null, "categories" : ["Artificial Intelligence"], "description" : {"en" : "AMIX is infrastructure token for amino network --5G ready edge computing network "}, "country_o... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"ethereum": {"type": "string"}}, "required": ["ethereum"]}, "hashing_algorithm": {"type": "null"}, "categories": {"type": "array", "items": {"type": "strin... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array",... | {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [973.708, 187.362, 1, 976.893, 233.814, 1, 943.378, 225.09, 1, 962.714, 246.283, 1, 971.029, 209.221, 0, 1019.23, 239.027, 1, 1026.78, 303.987, 1, 1026.23, 364.652, 1, 953.427, 353.191, 1, 934.857, 429.821, 1, 933.944, 497.918, 1, 1002.85, 351.507, 1, 1005.51, 439.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... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.