input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"empleado": {"type": "object", "properties": {"imagen": {"type": "string"}, "_id": {"type": "string"}}, "required": ["imagen", "_id"]}}, "required": ["empleado"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"empleado" : {"imagen" : "flashgordon.jpg", "_id" : "10"}} | json_instruct | {"type": "object", "properties": {"empleado": {"type": "object", "properties": {"imagen": {"type": "string"}, "_id": {"type": "string"}}, "required": ["imagen", "_id"]}}, "required": ["empleado"], "$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"}, "main": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "r... | {"name" : "abdmob/x2js", "version" : "1.1.5", "main" : "xml2json.min.js", "description" : "XML <=> JSON mapping/converting library", "license" : "Apache Licence v2", "ignore" : [".hg*", ".project", "*.html", "**/*.txt"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "main", "description", "license", "ignore"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1403110009", "district_id" : "1403110", "name" : "BEKAWAN"} | 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": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "esy": {"type": "object", "properties": {"build": {"type"... | {"name" : "foracosta", "version" : "0.2.0", "repository" : "https://github.com/appositum/foracosta.git", "author" : "eddie <appositum@protonmail.com>", "license" : "Apache-2.0", "esy" : {"build" : "dune build -p #{self.name}", "release" : {"bin" : "foracosta", "includePackages" : ["src"]}}, "scripts" : {"repl" : "esy b... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "esy": {"type": "object", "properties": {"build": {"type": "string"}, "release": {"type": "object", "properties": {"bin": {"type": "... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"pathwayTitle": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "time": {"type": "string"}, "difficulty": {"type": "string"}, "details": {"type": "object", "properties": {"steps": {"type": "arr... | {"pathwayTitle" : "KubeVirt", "title" : "First steps with KubeVirt", "description" : "KubeVirt is a virtual machine management add-on for Kubernetes. Deploy it and play with it in a hosted sandboxed interactive environment.", "time" : "5min", "difficulty" : "beginner", "details" : {"steps" : [{"title" : "Launch cluster... | json_instruct | {"type": "object", "properties": {"pathwayTitle": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "time": {"type": "string"}, "difficulty": {"type": "string"}, "details": {"type": "object", "properties": {"steps": {"type": "array", "items": {"type": "object", "properties": {"title": ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": ... | [{"name" : "HEMI", "frequency" : 118, "males" : "68.64406779661016 %", "females" : "31.35593220338983 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "requ... | {"h" : [{"d" : [{"e" : ["\ufff9`Tala'amisen~ `iso~ `ko~ `rakat~, `ca~ `ka~`talaw~ `to~ `kasi'enawan~ `han~ ?\ufffa\ufffb\u4f60\u6c7a\u5fc3\u53bb\u5317\u65b9\uff0c\u4e0d\u6015\u51b7\u55ce\uff1f"], "f" : "\u9001\u5230\u5317\u65b9\u5427\uff01"}]}], "stem" : "'amis", "t" : "tala'amisen"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"},... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["341623108002", "\u9a6c\u5e99\u793e\u533a\u5c45\u59d4\u4f1a", "220", "0"], ["341623108003", "\u5218\u5be8\u793e\u533a\u5c45\u59d4\u4f1a", "220", "0"], ["341623108004", "\u6c38\u660c\u793e\u533a\u5c45\u59d4\u4f1a", "220", "0"], ["341623108005", "\u5411\u9633\u793e\u533a\u5c45\u59d4\u4f1a", "220", "0"], ["341623108006"... | 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": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema":... | {"Time" : "2020-08-13T15:00:00Z", "Temp" : 34.5, "RelHum" : 44, "WindSpeed" : 7.7, "WindDir" : 115} | 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": "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:i... | {"id" : 85917121, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "864a1e8c1a2c7253c0710f2cff2c189c", "wof:id" : 85917121, "wof:repo" : "whosonfirst-data-admin-jp"}, "bbox" : [135.488892, 34.716782, 135.509973, 34.72807], "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": ["... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": ... | {"type" : "MultiPolygon", "coordinates" : [[[[-88.04784806999996, 44.53015166400006], [-88.03938952699994, 44.542473661000024], [-88.03882659999991, 44.54206018300003], [-88.03323962599994, 44.53708710900001], [-88.03166918199994, 44.535849789000046], [-88.02994796199991, 44.53465313200006], [-88.03486255799996, 44.527... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "civilized", "definition" : "Reclaimed from savage life and manners; instructed in arts, learning, and civil manners; refined; cultivated. Sale of conscience and duty in open market is not reconcilable with the present state of civilized society. J. Quincy."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " Find the endpoint given one endpoint and midpoint Mistake\n\nEndpoint (-1,6)\\n[imath] M [/imath] idpoint (2,9)\n\n\n", "url" : "https://www.youtube.com/watch?v=jOXqGCJ_0fw"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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": {}}}... | {"name" : "LSTM---Stock-prediction", "description" : "A long term short term memory recurrent neural network to predict stock data time series", "license" : null, "starNum" : 225, "folkNum" : 122, "watchNum" : 225, "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... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"t... | {"\u5de5\u5ee0\u540d\u7a31" : "\u6843\u5712\u7d19\u5ee0\u80a1\u4efd\u6709\u9650\u516c\u53f8\u6843\u5712\u5de5\u5ee0", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99626217", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "06610000017294", "\u5de5\u5ee0\u5730\u5740" : "\u6843\u5712\u5e02\u8606\u7af9\u5340\u6d77\u6e56... | 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... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": ... | {"id" : 767, "title" : ["[Whistler's Pass, Grassy Field]"], "description" : ["Tall yellow grasses mix with the shorter green grass in the darkened fields surrounding the trail. A few boulders are scattered in the field while some bushes with red berries lend color to the field.", "Tall yellow grasses mix with the shor... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"766": ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array",... | {"ast" : null, "code" : "export default (theme => ({\n root: {},\n refreshButton: {\n margin: -theme.spacing(1) * 2\n },\n chartWrapper: {\n position: 'relative',\n height: '300px'\n },\n stats: {\n marginTop: theme.spacing(2),\n display: 'flex',\n justifyContent: 'center'\n },\n device: {\n ... | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesCont... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id_9026": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_9026"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_9026" : {"publicdate" : "2014-10-04 01:07:55", "title" : "Little Journeys to the Homes of Great Scientists"}} | json_instruct | {"type": "object", "properties": {"id_9026": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_9026"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["610724117001", "\u4e09\u82b1\u77f3\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["610724117200", "\u6c11\u65b0\u6751\u59d4\u4f1a", "220", "0"], ["610724117201", "\u738b\u5bb6\u575d\u6751\u59d4\u4f1a", "220", "0"], ["610724117204", "\u54cd\u6f6d\u6751\u59d4\u4f1a", "220", "0"], ["610724117207", "\u56de\u9f99\u6751\u5... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-sche... | {"word" : "Dome", "definitions" : ["A rounded vault forming the roof of a building or structure, typically with a circular base.", "The revolving openable hemispherical roof of an observatory.", "A sports stadium with a domed roof.", "A thing shaped like a dome.", "A natural vault or canopy, such as that of the sky or ... | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "uid": {"type": "integer"}, "uname": {"type": "string"}, "face": {"type": "string"}, "originContentModify": {"type": "string"}, "originType": {"type": "integer"}, "reasonType": {"type": "... | {"id" : 29213, "uid" : 381318, "uname" : "\u95fb\u7fd4\u8bc6\u5973\u4eba", "face" : "http://i0.hdslb.com/bfs/face/127caa1422da7f8f8d0deeb8ca6fa211cf467689.jpg", "originContentModify" : "<p>\u867d\u7136\u8bf4lol\u4e0d\u914d\u505a\u6bd4\u8d5b\uff0c\u4f46\u5200\u5854\u4e0d\u4e5f\u662f\u6b8b\u75be\u4eba\u6e38\u620f\u5417\u... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "uid": {"type": "integer"}, "uname": {"type": "string"}, "face": {"type": "string"}, "originContentModify": {"type": "string"}, "originType": {"type": "integer"}, "reasonType": {"type": "integer"}, "punishTime": {"type": "integer"}, "punishType": {"type": "in... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", ... | [{"manufacturer" : "Huawei", "market_name" : "", "codename" : "hwp2-6011", "model" : "HUAWEI P2-6011"}, {"manufacturer" : "Huawei", "market_name" : "", "codename" : "hwp2-6011", "model" : "HUAWEI P2-6011-orange"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "... | {"index" : 11807, "hash" : 3918445198, "artDyeHash" : 3918445198, "redacted" : false, "dyeManifestHash" : 212786318, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blackl... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"946860062670": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fNa... | {"946860062670" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/Mi0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9NYXBfdmlkZW9zLUVRX01hcF92aWRfQWxwYWNhLmh0bWwtYW5hbHl0aWNzLTk0Njg2MDA2MjYyMw==.json"}, "946860062920" : {"type" : "st"}, "946860062922" :... | json_instruct | {"type": "object", "properties": {"946860062670": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "946860062920": {"type": "object", "properties": {"t... |
Create an example JSON object that satisfies 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" : 404415739, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "ec8a3a8ba8fe0877645e13f995e0b9db", "wof:id" : 404415739, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-0.5059592768471, 43.24523775557734, -0.4560425808534, 43.30074452831906... | 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": ["... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"... | {"citations" : [{"textCitation" : "[See normcli on Metamath](http://us.metamath.org/mpegif/normcli.html)"}], "argumentText" : "ARGUMENT\n\n| Step | Hyp | Ref | Expression |\n|---|---|---|---|\n\n| 1 | | normcl.1 | |- A e. ~H |\n| 2 | | #P_normcl | |- ( A e. ~H -> ( normh ` A ) e. RR ) |\n| 3 | 1, 2 | #P_ax-mp | |- ( ... | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items":... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "strin... | [{"namaKab" : "KLATEN", "originalFilename" : "IMG_20180714_0076.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 185946, "noUrut" : 1, "nama" : "H. HARIYANTO, S.Pd.", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KLATEN", "originalFilename" : "IMG_20180714_0083.jpg", "namaPartai" : "PARTAI GERAKAN INDO... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "status": {"... | {"name" : "Kalmar Token", "website" : "https://kalmar.io/", "description" : "The KALM tokens is the one fueling the ecosystem of products built on Kalmar and being used as incentive for participation in our financial products to scale adoption.", "explorer" : "https://bscscan.com/token/0x4BA0057f784858a48fe351445C672FF... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "status": {"type": "string"}, "id": {"type": "string"}, "logo": {"typ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"members": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "constants": {"type": "array", "items": {}}, "me... | {"members" : [{"name" : "size", "type" : "Vector2"}], "constants" : [], "methods" : [], "name" : "QuadMesh", "inherits" : "PrimitiveMesh"} | json_instruct | {"type": "object", "properties": {"members": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "constants": {"type": "array", "items": {}}, "methods": {"type": "array", "items": {}}, "name": {"type": "string"}, "inherits... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"id": {"type"... | {"title" : "Tale of Three Lions", "description" : "Taking place in the heart of Africa, \u201cThe Tale of Three Lions\u201d is one more thrilling adventure from the eventful life of old hunter Quatermain, the famous hero of \u201cKing Solomons Mines\u201d. This time, though there are no bloodthirsty people for the old ... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, ... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"timestamp": {"type": "integer"}, "object_list": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "id": {"type": "integer"}}, "required": ["position", "id"... | {"timestamp" : 206, "object_list" : [{"position" : [7.8977032387, 5.02402744377], "id" : 41}, {"position" : [9.11145552591, 3.69827225636], "id" : 42}, {"position" : [9.2316311035, 4.21377742374], "id" : 43}, {"position" : [8.83953460427, 4.52594444177], "id" : 44}], "frame" : 206, "size" : 4} | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "integer"}, "object_list": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "id": {"type": "integer"}}, "required": ["position", "id"]}}, "frame": {"type": "integer"}, "size": {"type": "intege... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": ... | {"type" : "FeatureCollection", "title" : "Sardinia (late Roman province)", "id" : "991344", "bbox" : [5.0, 35.0, 10.0, 40.0], "description" : "The Late Roman province of Sardinia was organized under a praeses during the reign of Diocletian. In the fifth century (455) the island was occupied by the Vandals. Justinian I ... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "st... |
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"}, "start": {"type": "st... | {"name" : "Dishorde", "version" : "2.0.0", "description" : "A Discord bridge bot for 7 Days to Die. This integrates a dedicated server with Discord, allowing players to access the game's chat from any device or location.", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"},... |
Create an example JSON object that satisfies 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" : "0x6c21ad859b1dbfdd6b01eb6cfc3bf4028103ade86779c409ed8f5f9fac0956a5", "parentHash" : "0x21907eb52e2d0e5fc56b865e327247dcd4df0926320a72cd8c32d93cde1e1169", "number" : 50282, "timestamp" : 1438986564, "nonce" : "0xe0b4242ad836714d", "difficulty" : 1514886928701, "gasLimit" : {"_hex" : "0x5ade8"}, "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"]... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array",... | {"ast" : null, "code" : "import { makeStyles, createStyles } from '@material-ui/core/styles';\nexport default makeStyles(theme => createStyles({\n root: {\n paddingTop: 56,\n height: '100%',\n [theme.breakpoints.up('sm')]: {\n paddingTop: 64\n }\n },\n shiftContent: {\n paddingLeft: 240\n },\n ... | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesCont... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3cf59f9b994407ca18491675a4fcaa9990555ff8"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$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"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "it... | {"name" : "Graviton Studio", "symbol" : "GRVT", "logoURI" : "https://raw.githubusercontent.com/dgrig1/GravitonCrypto/main/Graviton.png", "decimals" : 0, "address" : "CDvWh6Dt7zfbEgQz5CHyxrrFFnJkzGHPoFkeYRzG6CNH", "chainId" : 101, "tags" : ["social-token"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "d... |
The schema below describes a JSON structure. Generate a valid example:
{"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:i... | {"id" : 404402851, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "0dfe26e6c694c13a8c8f03699a121b04", "wof:id" : 404402851, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-1.46166328816688, 49.02481114951814, -1.41301307090759, 49.057986444014... | 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": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"t... | {"nom" : "Errouville", "circ" : "3\u00e8me circonscription", "dpt" : "Meurthe-et-Moselle", "inscrits" : 486, "abs" : 300, "votants" : 186, "blancs" : 18, "nuls" : 4, "exp" : 164, "res" : [{"nuance" : "REM", "nom" : "M. Xavier PALUSZKIEWICZ", "voix" : 90}, {"nuance" : "FI", "nom" : "M. Patrice ZOLFO", "voix" : 74}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"ty... | {"name" : "laemmi/laemmi-yourls-trim-url", "type" : "yourls-plugin", "description" : "Plugin for YOURLS. Trim the withespace before and after the orignial url before adding and editing.", "keywords" : ["yourls", "plugin"], "homepage" : "https://github.com/laemmi/laemmi-yourls-trim-url", "license" : "MIT", "authors" : [... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", ... | {"name" : "soda-framework/installer", "description" : "Soda application installer.", "keywords" : ["soda", "laravel"], "license" : "MIT", "authors" : [{"name" : "Ryan Brereton-Canham", "email" : "ryzaar@hotmail.com"}], "autoload" : {"psr-4" : {"Soda\\Installer\\" : "src/"}}, "require" : {"ext-zip" : "*", "guzzlehttp/gu... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "r... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "... | [{"manufacturer" : "AllView", "market_name" : "P9 Energy Mini", "codename" : "P9_Energy_mini", "model" : "P9_Energy_mini_TM"}, {"manufacturer" : "AllView", "market_name" : "P9 Energy mini", "codename" : "P9_Energy_mini", "model" : "P9_Energy_mini"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1971, 5], [1972, 6], [1974, 12], [1975, 8], [1976, 22], [1977, 19], [1978, 23], [1979, 19], [1980, 22], [1981, 34], [1982, 17], [1983, 12], [1984, 22], [1985, 17], [1986, 11], [1987, 17], [1988, 25], [1989, 22], [1990, 28], [1991, 27], [1992, 36], [1993, 32], [1994, 20], [1995, 39], [1996, 28], [1997, 37], [1998, 71]... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}},... | {"code" : 1205060, "parent" : 1205, "name" : "TARUTUNG", "latitude" : "2.0197712000001", "longitude" : "98.979958926505", "postal" : [22411, 22412, 22413, 22414, 22415, 22416, 22452], "children" : [1205060001, 1205060002, 1205060008, 1205060009, 1205060010, 1205060011, 1205060012, 1205060013, 1205060019, 1205060020, 12... | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"AGE_AT_FIRST_EXPOSURE": {"type": "object", "properties": {"CATEGORY": {"type": "string"}, "MIN_VALUE": {"type": "integer"}, "P10_VALUE": {"type": "integer"}, "P25_VALUE": {"type": "integer"}, "MEDIAN_VALUE": {"type": "integer"... | {"AGE_AT_FIRST_EXPOSURE" : {"CATEGORY" : "MALE", "MIN_VALUE" : 55, "P10_VALUE" : 55, "P25_VALUE" : 64, "MEDIAN_VALUE" : 70, "P75_VALUE" : 80, "P90_VALUE" : 82, "MAX_VALUE" : 82}, "PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_... | json_instruct | {"type": "object", "properties": {"AGE_AT_FIRST_EXPOSURE": {"type": "object", "properties": {"CATEGORY": {"type": "string"}, "MIN_VALUE": {"type": "integer"}, "P10_VALUE": {"type": "integer"}, "P25_VALUE": {"type": "integer"}, "MEDIAN_VALUE": {"type": "integer"}, "P75_VALUE": {"type": "integer"}, "P90_VALUE": {"type": ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homep... | {"name" : "dsisconeto/laravel-payment", "description" : "", "license" : "mit", "authors" : [{"name" : "Dejair Sisconeto", "email" : "dejairsisconeto23@gmail.com", "homepage" : "https://www.linkedin.com/in/dsisconeto/"}], "homepage" : "https://github.com/dsisconeto/laravelpagseguro", "keywords" : ["Laravel", "Payment"],... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["name", "email", ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "... | [{"id" : "1001", "provinceId" : "31", "regencyId" : "73", "districtId" : "01", "name" : "Cengkareng Barat"}, {"id" : "1002", "provinceId" : "31", "regencyId" : "73", "districtId" : "01", "name" : "Duri Kosambi"}, {"id" : "1003", "provinceId" : "31", "regencyId" : "73", "districtId" : "01", "name" : "Rawa Buaya"}, {"id"... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"]}, "$schema": "http://json-schema.or... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["i... | {"id" : 128767, "node" : [{"id" : 128767, "name" : "\u6a39\u6d77\u4eba\u9b5a", "image" : "//lain.bgm.tv/pic/cover/m/8c/59/128767_jp.jpg", "date" : "2007-05-24"}, {"id" : 128769, "name" : "\u6a39\u6d77\u4eba\u9b5a 2", "image" : "//lain.bgm.tv/pic/cover/m/55/98/128769_jp.jpg", "date" : "2008-03-19"}], "relate" : [{"relat... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "image", "date"]}}, "relate": {"type": "array", "i... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"fdb-all.js": {"type": "string"}, "fdb-all.min.js": {"type": "string"}, "fdb-angular.js": {"type": "string"}, "fdb-angular.min.js": {"type": "string"}, "fdb-autobind.js": {"type": "string"}, "fdb-autobind.min.js": {"type": "str... | {"fdb-all.js" : "sha512-2BoZQWmXSkBMyUc7a3sZCWUlbr/Z2QuMVBsgmR65WcuNuXYy9ybsbuC++9gr5FgI7OyXgKeu/P8Lt+eY3uCWZQ==", "fdb-all.min.js" : "sha512-qYJQ/b+li7igwVv8rcXWWHlr9XiOd/0d4wljNoTwDCrcXMVwwKs3mvgR+5nm//HBVbn5BVaWd0/IYd/8SCK7nA==", "fdb-angular.js" : "sha512-Ve4j6FpppbZES3EyPWkFOOBjdE7q9UejDbeBqkW3lu+Jc1dJYiIRkvihRAMu... | json_instruct | {"type": "object", "properties": {"fdb-all.js": {"type": "string"}, "fdb-all.min.js": {"type": "string"}, "fdb-angular.js": {"type": "string"}, "fdb-angular.min.js": {"type": "string"}, "fdb-autobind.js": {"type": "string"}, "fdb-autobind.min.js": {"type": "string"}, "fdb-core+persist.js": {"type": "string"}, "fdb-core... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"jwt": {"type": "string"}}, "required": ["jwt"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jwt" : "eyJhbGciOiJFUzM4NCIsImtpZCI6ImRpZDpleGFtcGxlOjEyMyNrZXktMyJ9.eyJpc3MiOiJkaWQ6ZXhhbXBsZToxMjMiLCJzdWIiOiJkaWQ6ZXhhbXBsZToxMjMiLCJ2cCI6eyJAY29udGV4dCI6WyJodHRwczovL3d3dy53My5vcmcvMjAxOC9jcmVkZW50aWFscy92MSIsImh0dHBzOi8vdzNpZC5vcmcvc2VjdXJpdHkvc3VpdGVzL2p3cy0yMDIwL3YxIl0sInR5cGUiOlsiVmVyaWZpYWJsZVByZXNlbnRhdGlvb... | json_instruct | {"type": "object", "properties": {"jwt": {"type": "string"}}, "required": ["jwt"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "n... | {"artist_id" : "AR4K1XY1187B99479D", "artist_latitude" : null, "artist_location" : "", "artist_longitude" : null, "artist_name" : "General Degree", "duration" : 222.14485, "num_songs" : 1, "song_id" : "SOBNYXK12AB0189A0D", "title" : "Inna Order", "year" : 0} | json_instruct | {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "code": {"type": "integer"}, "properties": {"type": "object", "properties": {"Ki... | {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "code" : 94, "properties" : {"Kind" : "Sub-District", "Code" : "9402227", "Name" : "BPIRI", "Year" : "2013", "Source" : "BPS", "Parent" : 9402, "City" : "JAYAWIJAYA", "Province" : "PAPUA", "Country" : "INDONESIA"}, "geometry" : {"type" : "Polygon", "coor... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "code": {"type": "integer"}, "properties": {"type": "object", "properties": {"Kind": {"type": "string"}, "Code": {"type": "string"}, "Name": {"type": "string... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$... | {"id" : "2023", "provinceId" : "91", "regencyId" : "14", "districtId" : "26", "name" : "Murni"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "number"}}, "required": ["name", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "electronegativity", "value" : 1.1} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "number"}}, "required": ["name", "value"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "legal_status": {"type": "integer"}, "fax": {"type": "string"}, "phone": {"type": "string... | {"name" : "Berufsfachschule f\u00fcr Altenpflege der Bildungsakademie Dresden (Schule in freier Tr\u00e4gerschaft)", "id" : "SN-4150975-0", "address" : " Rauschwalder Stra\u00dfe\u00a043 02826\u00a0G\u00f6rlitz\u00a0OT\u00a0Biesnitz ", "school_type" : "Berufsfachschule", "legal_status" : 1, "fax" : "03581/767812 ", ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "legal_status": {"type": "integer"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "provider": {... |
Based on the schema below, produce a valid JSON object:
{"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_10... | {"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... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"props_icons": {"type": "string"}}, "required": ["props_icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"props_icons" : "Custom icons"} | json_instruct | {"type": "object", "properties": {"props_icons": {"type": "string"}}, "required": ["props_icons"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": ... | {"derivation" : "from H7556 (\u05e8\u05b8\u05e7\u05b7\u05e7);", "pron" : "roke", "outline" : "<ol><li> spittle</li></ol>", "kjv_def" : "spit(-ting, -tle).", "lemma" : "\u05e8\u05b9\u05e7", "frequency" : 3, "strongs_def" : "spittle", "xlit" : "r\u00f4q"} | json_instruct | {"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"ConnectionString": {"type": "string"}}, "required": ["ConnectionString"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ConnectionString" : "DefaultEndpointsProtocol=https;AccountName=velidacosmostable;AccountKey=jtFtqFnBnE2hW9ifJV6lF7WYrFOX3o2kPfWm9hPZaqmfbaNGXTGzxTYXrCIc5QFYbXfVqOM3zX2Vgxo8u1xTWQ==;TableEndpoint=https://velidacosmostable.table.cosmos.azure.com:443/;"} | json_instruct | {"type": "object", "properties": {"ConnectionString": {"type": "string"}}, "required": ["ConnectionString"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "Ad... | {"IsRecentlyVerified" : false, "ID" : 90128, "UUID" : "47303B38-2D49-4F6E-B2AF-90E0949C24D7", "DataProviderID" : 1, "OperatorID" : 45, "UsageTypeID" : 3, "AddressInfo" : {"ID" : 90474, "Title" : "Auto Hagen", "AddressLine1" : "Am Holm 47", "Town" : "Neustadt", "StateOrProvince" : "Kreis Ostholstein", "Postcode" : "2373... | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "T... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"vue.js": {"type": "string"}, "vue.min.js": {"type": "string"}}, "required": ["vue.js", "vue.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vue.js" : "sha256-ODnLBsqVN6vV2iEmtLv3UDQC+Wi3Ost26BN4zYgTHZM=", "vue.min.js" : "sha256-KTAH5U4JXSt9aB5JzE+ks1qRCbENY9q6GLslvBJ4k/g="} | json_instruct | {"type": "object", "properties": {"vue.js": {"type": "string"}, "vue.min.js": {"type": "string"}}, "required": ["vue.js", "vue.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this 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"}, "severit... | {"schema_version" : "1.2.0", "id" : "GHSA-f866-mhcw-m7pp", "modified" : "2022-05-02T03:50:42Z", "published" : "2022-05-02T03:50:42Z", "aliases" : ["CVE-2009-4015"], "details" : "Lintian 1.23.x through 1.23.28, 1.24.x through 1.24.2.1, and 2.x before 2.3.2 allows remote attackers to execute arbitrary commands via shell ... | 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 sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "e... | {"nom" : "Villotte", "dpt" : "Vosges", "inscrits" : 154, "abs" : 38, "votants" : 116, "blancs" : 13, "nuls" : 3, "exp" : 100, "res" : [{"panneau" : "2", "voix" : 61}, {"panneau" : "1", "voix" : 39}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01009163": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, ... | {"type" : "Topology", "objects" : {"E01009163" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00046432", "LAD11CD" : "E08000025"}, "arcs" : [[0, 1, 2]]}, {"type" : "Polygon", "prope... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01009163": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-72.431311, 41.915048], [-72.306904, 41.929627], [-72.306647, 41.926625], [-72.305169, 41.925272], [-72.305201, 41.92421], [-72.301721, 41.92055], [-72.298796, 41.919098], [-72.297557, 41.916456], [-72.296822, 41.911091],... | 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... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "int... | {"nom" : "Cotonou", "dpt" : "Fran\u00e7ais \u00e9tablis hors de France", "inscrits" : 2451, "abs" : 1507, "votants" : 944, "blancs" : 9, "nuls" : 1, "exp" : 934, "res" : [{"panneau" : "3", "voix" : 436}, {"panneau" : "11", "voix" : 175}, {"panneau" : "9", "voix" : 161}, {"panneau" : "4", "voix" : 72}, {"panneau" : "2",... | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"... |
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": {"iconfont": {"type": "string"}}, "required":... | {"name" : "@devui-design/icons", "version" : "1.3.0", "description" : "DevUI font icons", "main" : "index.js", "scripts" : {"iconfont" : "gulp iconfont && gulp demo"}, "author" : "", "license" : "MIT", "devDependencies" : {"gulp" : "^4.0.2", "gulp-cli" : "^2.3.0", "gulp-header" : "2.0.5", "gulp-iconfont" : "10.0.1", "g... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"iconfont": {"type": "string"}}, "required": ["iconfont"]}, "author": {"type": "string"}, "license": {"type": "string"}... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"entry_name": {"type": "string"}, "name": {"type": "string"}, "accession": {"type": "string"}, "family": {"type": "string"}, "species": {"type": "string"}, "source": {"type": "string"}, "residue_numbering_sche... | {"entry_name" : "oprk_human", "name" : "κ receptor", "accession" : "P41145", "family" : "001_002_022_002", "species" : "Homo sapiens", "source" : "SWISSPROT", "residue_numbering_scheme" : "GPCRdb(A)", "sequence" : "MDSPIQIFRGEPGPTCAPSACLPPNSSAWFPGWAEPDSNGSAGSEDAQLEPAHISPAIPVIITAVYSVVFVVGLVGNSLVMFVIIRYTKMKTATNIYIF... | json_instruct | {"type": "object", "properties": {"entry_name": {"type": "string"}, "name": {"type": "string"}, "accession": {"type": "string"}, "family": {"type": "string"}, "species": {"type": "string"}, "source": {"type": "string"}, "residue_numbering_scheme": {"type": "string"}, "sequence": {"type": "string"}, "genes": {"type": "a... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test-travis": {"type": "stri... | {"name" : "chatbot-server", "version" : "0.0.1", "description" : "Facebook chatbot server", "main" : "server.js", "scripts" : {"test" : "mocha", "test-travis" : "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha"}, "author" : "", "license" : "ISC", "dependencies" : {"body-parser" : "1.18.2", "exp... | 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-travis": {"type": "string"}}, "required": ["test", "test-travis"]}, "author": {"type"... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1986, 5], [1987, 5], [1988, 5], [1990, 11], [1991, 8], [1992, 12], [1993, 8], [1994, 6], [1995, 5], [1997, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "e... | {"file_name" : "FactoryGame/Content/FactoryGame/Buildable/Factory/TradingPost/Texture/TX_Tradingpost_Stage_3_AO.uasset", "guid" : {"a" : 2070101452, "b" : 1151535455, "c" : 2423478953, "d" : 3561559390}, "exports" : [{"name" : "TX_Tradingpost_Stage_3_AO", "class" : {"package" : "/Script/Engine", "name" : "Texture2D"}, ... | json_instruct | {"type": "object", "properties": {"file_name": {"type": "string"}, "guid": {"type": "object", "properties": {"a": {"type": "integer"}, "b": {"type": "integer"}, "c": {"type": "integer"}, "d": {"type": "integer"}}, "required": ["a", "b", "c", "d"]}, "exports": {"type": "array", "items": {"type": "object", "properties": ... |
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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type... | {"name" : "ods-portal-devkit", "version" : "2.0.0", "description" : "", "main" : "gulpfile.js", "repository" : {"type" : "git", "url" : "https://github.com/opendatasoft/ods-cookbook/tree/master/widgets/external-use/local-dev-env"}, "author" : "fpassaniti", "dependencies" : {"gulp" : "latest", "gulp-live-server" : "late... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"alt": {"type": "string"}, "src": {"type": "string"}}, "required": ["alt", "src"]}}, "li... | {"name" : "Rubidium hydride", "desc" : "Rubidium hydride is the hydride of rubidium. It has the formula RbH and is an alkali metal hydride. It is synthesized using rubidium metal to react with hydrogen gas. As a hydride of an alkali metal, it is reactive towards even weak oxidizing agents. A redox reaction will occur w... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"alt": {"type": "string"}, "src": {"type": "string"}}, "required": ["alt", "src"]}}, "link": {"type": "string"}, "IUPAC name": {"type": "string"}, "Other names... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "str... | {"manifest_version" : 2, "name" : "9Now Region Switcher", "description" : "Choose between different states for the 9Now TV Guide and Livestreams", "version" : "0.0.3", "browser_action" : {"default_icon" : "icon.png", "default_popup" : "popup.html"}, "background" : {"scripts" : ["background.js"]}, "permissions" : ["webR... | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_ico... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lo... | {"id" : "656673927", "name" : "Normangate", "nodes" : [{"type" : "node", "id" : 304113806, "lat" : 52.5741296, "lon" : -0.3534811}, {"type" : "node", "id" : 3021294356, "lat" : 52.5741978, "lon" : -0.3540692}, {"type" : "node", "id" : 6151124389, "lat" : 52.5741062, "lon" : -0.3535755}, {"type" : "node", "id" : 6151124... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunte... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "intege... | {"appid" : 574230, "name" : "Mitosis", "windows" : true, "mac" : true, "linux" : false, "early_access" : true, "lookup_time" : 1491008119} | json_instruct | {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "a... | {"title" : "A Parsimonious Language Model of Social Media Credibility Across Disparate Events.", "fields" : ["credibility", "evidentiality", "misinformation", "ask price", "rumor"], "abstract" : "Social media has increasingly become central to the way billions of people experience news and events, often bypassing journ... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"typ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "ch... | {"code" : 3316030, "parent" : 3316, "name" : "KRADENAN", "latitude" : "-7.282480428995", "longitude" : "111.43727311543", "postal" : [58283, 58383], "children" : [3316030001, 3316030002, 3316030003, 3316030004, 3316030005, 3316030006, 3316030007, 3316030008, 3316030009, 3316030010]} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "AND MY OWN EXPERIENCE, AS FAR AS I HAD AN OPPORTUNITY TO OBSERVE, CONFIRMING IT, THAT MOST MEN PREFER THEIR PRIVATE ADVANTAGE TO THE PUBLIC:", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/12255.json"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"emailName": {"type": "string"}, "button": {"type": "string"}, "image": {"type": "string"}, "secondary": {"type": "string"}, "header": {"type": "string"}, "message": {"type": "string"}, "firstParagraph": {"type"... | {"emailName" : "reminder-invite", "button" : "true", "image" : "false", "secondary" : "true", "header" : "Don’t forget!", "message" : "On $DATE, $INVITER invited you to join a meeting on Crazy People Dot COM.", "firstParagraph" : "With Crazy People Dot COM, there's no more meetings about the meeting. $INVITER is ... | json_instruct | {"type": "object", "properties": {"emailName": {"type": "string"}, "button": {"type": "string"}, "image": {"type": "string"}, "secondary": {"type": "string"}, "header": {"type": "string"}, "message": {"type": "string"}, "firstParagraph": {"type": "string"}, "secondParagraph": {"type": "string"}, "thirdParagraph": {"typ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"cards-page-event-details-address": {"type": "string"}, "cards-page-event-details-attendees": {"type": "string"}, "cards-page-event-details-copied-to-clipboard": {"typ... | {"data" : {"cards-page-event-details-address" : "Address", "cards-page-event-details-attendees" : "Attendees", "cards-page-event-details-copied-to-clipboard" : "Copied to clipboard", "cards-page-event-details-dynamic-link-title" : "Event link", "cards-page-event-details-end-date" : "End time", "cards-page-event-details... | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"cards-page-event-details-address": {"type": "string"}, "cards-page-event-details-attendees": {"type": "string"}, "cards-page-event-details-copied-to-clipboard": {"type": "string"}, "cards-page-event-details-dynamic-link-title": {"type": "strin... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type"... | {"name" : "tailwindcss-demo", "version" : "1.0.0", "description" : "", "repository" : {"type" : "git", "url" : "git+https://github.com/fexblanco/tailwindcss-demo.git"}, "author" : "fexblanco", "license" : "MIT", "bugs" : {"url" : "https://github.com/fexblanco/tailwindcss-demo/issues"}, "homepage" : "https://github.com/... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "link": {"type": "string"}}, "required": ["name", "link"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "About", "link" : "/about/"}, {"name" : "Now", "link" : "/now/"}, {"name" : "Writing", "link" : "/writing/"}, {"name" : "Notes", "link" : "/notes/"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "link": {"type": "string"}}, "required": ["name", "link"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"index": {"type": "integer"}, "name": {"type": "string"}, "size": {"type": "string"}, "type": {"type": "string"}, "subtype": {"type": "null"}, "alignment": {"type": "string"}, "armor_class": {"type": "integer"}, "hit_points"... | {"index" : 97, "name" : "Earth Elemental", "size" : "Large", "type" : "elemental", "subtype" : null, "alignment" : "neutral", "armor_class" : 17, "hit_points" : 126, "hit_dice" : "12d10", "speed" : "30 ft., burrow 30 ft.", "strength" : 20, "dexterity" : 8, "constitution" : 20, "intelligence" : 5, "wisdom" : 10, "charis... | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "name": {"type": "string"}, "size": {"type": "string"}, "type": {"type": "string"}, "subtype": {"type": "null"}, "alignment": {"type": "string"}, "armor_class": {"type": "integer"}, "hit_points": {"type": "integer"}, "hit_dice": {"type": "string"}, "speed"... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type... | [{"name" : "\u5c0f\u5b9d\u5bfb\u82b104-14\u6027\u611f\u767d\u7699\u59b9\u5b50", "size" : 166122683, "link" : "https://streamtape.com/e/jPpya9BKrKszO72", "created_at" : "2022\u5e7403\u670813\u65e5 10:56:03", "downloads" : 0, "linkid" : "jPpya9BKrKszO72", "convert" : "converted", "achorname" : "\u4e38\u5b50\u5466", "subs... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe":... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"1558139": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "null"}, "fo... | {"1558139" : {"width" : 396, "thumb_url" : "http://oldnyc-assets.nypl.org/thumb/1558139.jpg", "image_url" : "http://oldnyc-assets.nypl.org/600px/1558139.jpg", "title" : "24-26 East 21st Street - Broadway", "date" : "", "text" : null, "folder" : "24-26 East 21st Street - Broadway, Manhattan, NY", "height" : 600, "years"... | json_instruct | {"type": "object", "properties": {"1558139": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "null"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "copyright": {"type": "string"}, "media_type": {"... | {"title" : "Lunar Eclipses", "explanation" : "The dark, inner shadow of planet Earth is called the umbra. Shaped like a cone extending into space, it has a circular cross section and is most easily seen during a lunar eclipse. But the complete cross section is larger than the Moon's angular size in the stages of an ecl... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "copyright": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "explanat... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "object", "properties": {"kw_collection": {"type": "integer"}, "geo_collection": {"type": "null"}}, "required": ["kw_collection", "geo_collection"]}, "time": {"type": "obje... | {"name" : "Lac-Megantic train crash", "size" : {"kw_collection" : 2342, "geo_collection" : null}, "time" : {"development" : "Instantaneous", "duration" : 14, "year" : "2013", "month" : "Jul.", "start_day" : "2013-07-06"}, "location" : {"country" : "Canada", "spread" : "Focalized", "location_description" : "Lac-Megantic... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "object", "properties": {"kw_collection": {"type": "integer"}, "geo_collection": {"type": "null"}}, "required": ["kw_collection", "geo_collection"]}, "time": {"type": "object", "properties": {"development": {"type": "string"}, "duration": {"... |
Using the following JSON schema, generate a compatible 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", "properti... | {"contract" : "0x11bf607993ebfc3426ab3952e01cf40d70afc76f", "tool" : "solhint", "start" : 1563636753.3746872, "end" : 1563636758.1090143, "duration" : 4.734327077865601, "analysis" : [{"file" : "/unique_chucks/26/0x11bf607993ebfc3426ab3952e01cf40d70afc76f.sol", "line" : "540", "column" : "2", "message" : "Line length m... | 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": {"file": {"type": "string"}, "line": {"type": "string"}, "column":... |
Create a JSON structure that matches this schema definition:
{"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" : [[[-96.612249, 32.793633], [-96.611299, 32.800863], [-96.611255, 32.811076], [-96.605734, 32.813845], [-96.595985, 32.813958], [-96.595897, 32.790419], [-96.605969, 32.792366], [-96.612232, 32.792524], [-96.612249, 32.793633... | 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... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "user": {"type": "string"}, "post": {"type": "string"}}, "required": ["id", "date", "user", "post"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 173085, "date" : "2021-08-05 15:51:51", "user" : "Hostshield_LTD", "post" : "\r\n\r\n**Our Story:** Hostshield LTD was founded in 2018 by tech-savy team and we\u2019ve been in the market for 3 years and we\u2019ve been growing since then, we believe tha... | 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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1402042008", "district_id" : "1402042", "name" : "MORONG"} | 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 an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"bottomright": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "confidence": {"type": "number"}, "topleft": {"type": "object", "properti... | [{"bottomright" : {"x" : 1279, "y" : 522}, "confidence" : 0.19, "topleft" : {"x" : 1205, "y" : 39}, "label" : "person"}, {"bottomright" : {"x" : 1279, "y" : 719}, "confidence" : 0.73, "topleft" : {"x" : 139, "y" : 45}, "label" : "person"}, {"bottomright" : {"x" : 1030, "y" : 185}, "confidence" : 0.21, "topleft" : {"x" ... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"bottomright": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "confidence": {"type": "number"}, "topleft": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"em": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "requir... | {"em" : [{"location" : {"latitude" : 50.67, "longitude" : 5.67}}, {"location" : {"latitude" : 52.09, "longitude" : 5.24}}, {"location" : {"latitude" : 51.45, "longitude" : 4.94}}], "bites" : [], "other" : [], "fever" : []} | json_instruct | {"type": "object", "properties": {"em": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}}, "required": ["location"]}}, "bites": {"type": "array", "items": {}... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "n... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[140.0, 41.666666666666664], [140.0, 41.75], [140.125, 41.75], [140.125, 41.666666666666664], [140.0, 41.666666666666664]]]}, "properties" : {"code" : 624040, "url" : "http://madefor.github.io/0410/api/v1/624040.geojson", "view" : "https://github.... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, ... | {"body" : "I hadn't noticed before that this question is posted to the HDRI list, which may have a limited number of readers who are also using evalglare on Windows. It might be worthwhile to post your questions #1 and #2 to the radiance-general mailing list in this case. Those questions have more to do with successful... | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "config": {"type": "object", "properties": {"connector.class": {"type": "string"}, "connection.url": {"type": "string"}, "type.name": {"type": "string"}, "key.ignore": {"type": "boolean"}, ... | {"name" : "elasticsearch-sink", "config" : {"connector.class" : "io.confluent.connect.elasticsearch.ElasticsearchSinkConnector", "connection.url" : "http://elasticsearch:9200", "type.name" : "_doc", "key.ignore" : false, "behavior.on.null.values" : "delete", "topics" : "customers", "tasks.max" : 1}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "config": {"type": "object", "properties": {"connector.class": {"type": "string"}, "connection.url": {"type": "string"}, "type.name": {"type": "string"}, "key.ignore": {"type": "boolean"}, "behavior.on.null.values": {"type": "string"}, "topics": {"type": "st... |
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" : 102210, "info" : {"name" : "Supernatural Dean Pie Cursor", "description" : "Credit to http://www.deangrayson.deviantart.com/ and http://pure-purgatory.tumblr.com/", "additionalInfo" : null, "format" : "uso", "category" : "tumblr", "createdAt" : "2014-06-04T23:39:08.000Z", "updatedAt" : "2014-06-04T23:39:08.000Z... | 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": "... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "copyright": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"Microsoft.Extensions.Logging.Abstracti... | {"title" : "Trifling", "copyright" : "James Hough 2017", "description" : "Trifling Library", "version" : "0.4.0-beta", "dependencies" : {"Microsoft.Extensions.Logging.Abstractions" : "1.1.0", "Microsoft.Extensions.Options" : "1.1.0", "Newtonsoft.Json" : "9.0.1"}, "frameworks" : {"netstandard1.6" : {"dependencies" : {"N... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "copyright": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"Microsoft.Extensions.Logging.Abstractions": {"type": "string"}, "Microsoft.Extensions.Options": {"type": "s... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "e... | {"name" : "NEUROHAX 5000 TABLET", "harga" : " Rp. 121.000/ kemasan", "golongan" : "http://medicastore.com/image_banner/obat_bebas.gif", "kandungan" : "Vitamin B1 100 mg, Vitamin B6 100 mg, Vitamin B12 5000 mcg.", "indikasi" : "Gangguan sistem saraf tepi, kekurangan Vitamin B.", "kontraindikasi" : "", "perhatian" : "Vi... | 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": {... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.