input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "210503012201", "text" : "\u5f20\u5176\u5be8\u6751\u59d4\u4f1a"}, {"id" : "210503012202", "text" : "\u5927\u67f3\u5cea\u6751\u59d4\u4f1a"}, {"id" : "210503012203", "text" : "\u82b1\u5cad\u6751\u59d4\u4f1a"}, {"id" : "210503012204", "text" : "\u9ec4\u6728\u5382\u6751\u59d4\u4f1a"}, {"id" : "210503012205", "text" : "\u5927\u7ffb\u8eab\u6751\u59d4\u4f1a"}, {"id" : "210503012207", "text" : "\u8fbe\u8d1d\u6c9f\u6751\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "cost": {"type": "integer"}}, "required": ["id", "name", "cost"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "hel", "name" : "hello world", "cost" : 70}, {"id" : "hel", "name" : "hello", "cost" : 10}, {"id" : "hel", "name" : "helm", "cost" : 200}, {"id" : "hel", "name" : "hello my world", "cost" : 1}, {"id" : "test", "name" : "well done", "cost" : 100}, {"id" : "IU", "name" : "Best", "cost" : 123}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "cost": {"type": "integer"}}, "required": ["id", "name", "cost"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.2.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.2.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.2.1", "0.2.2"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"latest_version" : ["0.2.2"], "meta" : {"description" : "Serial/Mass mail tool", "homepage" : "https://github.com/spiderbit/mmailer", "license" : "LICENSE"}, "versions" : {"0.2.1" : {"sha256" : "4a02388b2af3e8b05d89361e784d718db95ab502ed0716ebc14b009f14c9d7f8", "url" : "https://files.pythonhosted.org/packages/71/4a/a761f2027d949de593b5cc5bb563c4cc7c5314dad0070cdf7ca7d08a17a3/mmailer-0.2.1.tar.gz"}, "0.2.2" : {"sha256" : "76e57937faa8c0f1f51f2a920bf75ff458866b36fc622a1e533a10f4c7c83812", "url" : "https://files.pythonhosted.org/packages/ae/69/daeb0ec48b2c89a480cfb7e673023c1983d7f4c03260bd9ff3dc89656cb0/mmailer-0.2.2.tar.gz"}}}
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "object", "properties": {"0.2.1": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.2.2": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.2.1", "0.2.2"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"status_code": {"type": "integer"}, "user_list": {"type": "array", "items": {}}, "extra": {"type": "object", "properties": {"fatal_item_ids": {"type": "array", "items": {}}, "logid": {"type": "string"}, "now": {"type": "integer"}}, "required": ["fatal_item_ids", "logid", "now"]}, "log_pb": {"type": "object", "properties": {"impr_id": {"type": "string"}}, "required": ["impr_id"]}}, "required": ["status_code", "user_list", "extra", "log_pb"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status_code" : 0, "user_list" : [], "extra" : {"fatal_item_ids" : [], "logid" : "202112262316370102121452260E0F33B5", "now" : 1640531797000}, "log_pb" : {"impr_id" : "202112262316370102121452260E0F33B5"}}
json_instruct
{"type": "object", "properties": {"status_code": {"type": "integer"}, "user_list": {"type": "array", "items": {}}, "extra": {"type": "object", "properties": {"fatal_item_ids": {"type": "array", "items": {}}, "logid": {"type": "string"}, "now": {"type": "integer"}}, "required": ["fatal_item_ids", "logid", "now"]}, "log_pb": {"type": "object", "properties": {"impr_id": {"type": "string"}}, "required": ["impr_id"]}}, "required": ["status_code", "user_list", "extra", "log_pb"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"bugs": {"type": "array", "items": {"type": "object", "properties": {"history": {"type": "array", "items": {"type": "object", "properties": {"when": {"type": "string"}, "who": {"type": "string"}, "changes": {"type": "array", "items": {"type": "object", "properties": {"added": {"type": "string"}, "removed": {"type": "string"}, "field_name": {"type": "string"}}, "required": ["added", "removed", "field_name"]}}}, "required": ["when", "who", "changes"]}}, "id": {"type": "integer"}, "alias": {"type": "null"}}, "required": ["history", "id", "alias"]}}}, "required": ["bugs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"bugs" : [{"history" : [{"when" : "2020-05-22T17:29:38Z", "who" : "loines@mozilla.com", "changes" : [{"added" : "needinfo?(adavis@mozilla.com)", "removed" : "", "field_name" : "flagtypes.name"}, {"field_name" : "cc", "removed" : "", "added" : "adavis@mozilla.com, loines@mozilla.com"}]}, {"changes" : [{"field_name" : "flagtypes.name", "removed" : "needinfo?(adavis@mozilla.com)", "added" : ""}], "when" : "2020-05-22T21:32:09Z", "who" : "alex@alexdavis.ca"}, {"changes" : [{"field_name" : "flagtypes.name", "removed" : "", "added" : "needinfo?(fbertsch@mozilla.com)"}], "when" : "2020-06-11T19:26:24Z", "who" : "loines@mozilla.com"}, {"who" : "fbertsch@mozilla.com", "when" : "2020-06-17T12:49:01Z", "changes" : [{"field_name" : "flagtypes.name", "added" : "", "removed" : "needinfo?(fbertsch@mozilla.com)"}]}, {"changes" : [{"added" : "needinfo?(fbertsch@mozilla.com)", "removed" : "", "field_name" : "flagtypes.name"}], "who" : "loines@mozilla.com", "when" : "2020-06-25T15:49:27Z"}, {"who" : "fbertsch@mozilla.com", "when" : "2020-06-25T16:52:41Z", "changes" : [{"field_name" : "flagtypes.name", "added" : "needinfo?(loines@mozilla.com)", "removed" : "needinfo?(fbertsch@mozilla.com)"}]}, {"when" : "2020-06-25T17:00:46Z", "who" : "loines@mozilla.com", "changes" : [{"removed" : "needinfo?(loines@mozilla.com)", "added" : "needinfo?(adavis@mozilla.com)", "field_name" : "flagtypes.name"}]}, {"changes" : [{"field_name" : "flagtypes.name", "added" : "", "removed" : "needinfo?(adavis@mozilla.com)"}], "when" : "2020-06-26T20:34:24Z", "who" : "alex@alexdavis.ca"}, {"who" : "fbertsch@mozilla.com", "when" : "2020-11-11T20:23:28Z", "changes" : [{"field_name" : "status", "removed" : "NEW", "added" : "RESOLVED"}, {"removed" : "", "added" : "FIXED", "field_name" : "resolution"}, {"field_name" : "cf_last_resolved", "removed" : "", "added" : "2020-11-11T20:23:28Z"}]}], "id" : 1640226, "alias" : null}]}
json_instruct
{"type": "object", "properties": {"bugs": {"type": "array", "items": {"type": "object", "properties": {"history": {"type": "array", "items": {"type": "object", "properties": {"when": {"type": "string"}, "who": {"type": "string"}, "changes": {"type": "array", "items": {"type": "object", "properties": {"added": {"type": "string"}, "removed": {"type": "string"}, "field_name": {"type": "string"}}, "required": ["added", "removed", "field_name"]}}}, "required": ["when", "who", "changes"]}}, "id": {"type": "integer"}, "alias": {"type": "null"}}, "required": ["history", "id", "alias"]}}}, "required": ["bugs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "410221107200", "text" : "\u90a2\u5317\u6751\u59d4\u4f1a"}, {"id" : "410221107201", "text" : "\u90a2\u5357\u6751\u59d4\u4f1a"}, {"id" : "410221107202", "text" : "\u51b7\u5c6f\u6751\u59d4\u4f1a"}, {"id" : "410221107203", "text" : "\u5b59\u6d3c\u6751\u59d4\u4f1a"}, {"id" : "410221107204", "text" : "\u6768\u5c6f\u6751\u59d4\u4f1a"}, {"id" : "410221107205", "text" : "\u6cb3\u6cbf\u6751\u59d4\u4f1a"}, {"id" : "410221107206", "text" : "\u738b\u5bfa\u5be8\u6751\u59d4\u4f1a"}, {"id" : "410221107207", "text" : "\u5c0f\u6cb3\u5be8\u6751\u59d4\u4f1a"}, {"id" : "410221107208", "text" : "\u8c22\u5be8\u6751\u59d4\u4f1a"}, {"id" : "410221107209", "text" : "\u590f\u5be8\u6751\u59d4\u4f1a"}, {"id" : "410221107210", "text" : "\u9ec4\u5be8\u6751\u59d4\u4f1a"}, {"id" : "410221107211", "text" : "\u738b\u548c\u5bfa\u6751\u59d4\u4f1a"}, {"id" : "410221107212", "text" : "\u6768\u697c\u6751\u59d4\u4f1a"}, {"id" : "410221107213", "text" : "\u9a6c\u5e84\u6751\u6751\u59d4\u4f1a"}, {"id" : "410221107214", "text" : "\u5927\u9b4f\u5e97\u6751\u6751\u59d4\u4f1a"}, {"id" : "410221107215", "text" : "\u5b5f\u5e84\u6751\u6751\u59d4\u4f1a"}, {"id" : "410221107216", "text" : "\u5143\u5be8\u6751\u6751\u59d4\u4f1a"}, {"id" : "410221107217", "text" : "\u8096\u80e1\u540c\u6751\u6751\u59d4\u4f1a"}, {"id" : "410221107218", "text" : "\u59dc\u697c\u6751\u6751\u59d4\u4f1a"}, {"id" : "410221107219", "text" : "\u859b\u697c\u6751\u6751\u59d4\u4f1a"}, {"id" : "410221107220", "text" : "\u4e8e\u4f2f\u5c97\u6751\u6751\u59d4\u4f1a"}, {"id" : "410221107221", "text" : "\u5cb3\u5be8\u6751\u6751\u59d4\u4f1a"}, {"id" : "410221107222", "text" : "\u8349\u5bfa\u6751\u6751\u59d4\u4f1a"}, {"id" : "410221107223", "text" : "\u9a6c\u5e99\u6751\u6751\u59d4\u4f1a"}, {"id" : "410221107224", "text" : "\u6cb3\u5be8\u6751\u6751\u59d4\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}, "logo": {"type": "string"}}, "required": ["name", "type", "symbol", "decimals", "website", "description", "explorer", "status", "id", "logo"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Louvre Finance", "type" : "BEP20", "symbol" : "LOUVRE", "decimals" : 9, "website" : "https://louvrefinance.com", "description" : "Louvre Finance is the first deflationary DeFi token to disrupt the NFT industry. We'll build a full NFT ecosystem with a marketplace and an exchange exclusive for NFT related projects. The $LOUVRE token will be the currency to be used in our closed ecosystem and will also receive rewards for supporting the platform - for example, ecosystem related airdrops and, in the future, fees from the use of the platform.", "explorer" : "https://bscscan.com/token/0x24905b248dCEEb17b221A48eFA0d0388b3b38Fe4", "status" : "active", "id" : "0x24905b248dCEEb17b221A48eFA0d0388b3b38Fe4", "logo" : "ipfs://QmVwPKfaYTWqcAVcTbVNMvc6arvq82cQoTCHd5xfQR87Vu/smartchain/assets/0x24905b248dCEEb17b221A48eFA0d0388b3b38Fe4/logo.png"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}, "logo": {"type": "string"}}, "required": ["name", "type", "symbol", "decimals", "website", "description", "explorer", "status", "id", "logo"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : {"id" : "t2_233fvcbv", "name" : "Greatgamedad"}, "date" : {"day" : 1546819200, "full" : 1546822560, "month" : 1546300800, "week" : 1546732800}, "id" : "t3_adc50t", "picture" : {"filesize" : 75644, "fullUrl" : "https://preview.redd.it/kft5yl14gw821.jpg?auto=webp&s=32421e53e8ab9cf486f53c007ab70a738a0eef66", "hash" : "10cc101302", "height" : 486, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAMABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQIE/8QAIxAAAQMDBAIDAAAAAAAAAAAAAQIDBAUGEQATITESoUFxgf/EABQBAQAAAAAAAAAAAAAAAAAAAAX/xAAZEQACAwEAAAAAAAAAAAAAAAAAAQIDESH/2gAMAwEAAhEDEQA/AM9SuiVNocVuFMMhqmRRtPvAlyS+lOT5IUejkfGSD2NJXjclbkN2+bdo1T3Yjban1utFDasowtJBOTjPrR82mQgC8IzYd4dCgMYUQkcDrpKR+alNUkqQ4FKBG2oejz96DdzjzBpUqR//2Q==", "url" : "https://preview.redd.it/kft5yl14gw821.jpg?width=640&crop=smart&auto=webp&s=bc3ddbb9d3ad7540f807e7dd6718802f829bf9a5", "width" : 640}, "score" : {"comments" : 10, "downs" : 0, "ratio" : 0.99, "ups" : 187, "value" : 187}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "WIP desert outpost updated.", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/adc50t/wip_desert_outpost_updated/"}
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"oq": {"type": "string"}, "q": {"type": "string"}, "rvnm": {"type": "string"}, "stcd": {"type": "string"}, "stnm": {"type": "string"}, "tm": {"type": "integer"}, "wptn": {"type": "string"}, "z": {"type": "string"}}, "required": ["oq", "q", "rvnm", "stcd", "stnm", "tm", "wptn", "z"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"oq" : "0", "q" : "12400", "rvnm" : "\u957f\u6c5f", "stcd" : "60105400", "stnm" : "\u5bf8\u6ee9", "tm" : 1604296800000, "wptn" : "5", "z" : "175.37"}, {"oq" : "0", "q" : "1580", "rvnm" : "\u4e4c\u6c5f", "stcd" : "60803000", "stnm" : "\u6b66\u9686", "tm" : 1604296800000, "wptn" : "5", "z" : "176.02"}, {"oq" : "0", "q" : "15200", "rvnm" : "\u957f\u6c5f", "stcd" : "60107300", "stnm" : "\u5b9c\u660c", "tm" : 1604296800000, "wptn" : "4", "z" : "43.41"}, {"oq" : "0", "q" : "14200", "rvnm" : "\u957f\u6c5f", "stcd" : "60108300", "stnm" : "\u6c99\u5e02", "tm" : 1604296800000, "wptn" : "4", "z" : "34.63"}, {"oq" : "0", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60111200", "stnm" : "\u57ce\u9675\u77f6(\u83b2)", "tm" : 1604293200000, "wptn" : "4", "z" : "26.7"}, {"oq" : "0", "q" : "26300", "rvnm" : "\u957f\u6c5f", "stcd" : "60112200", "stnm" : "\u6c49\u53e3", "tm" : 1604296800000, "wptn" : "4", "z" : "21.1"}, {"oq" : "0", "q" : "27700", "rvnm" : "\u957f\u6c5f", "stcd" : "60113400", "stnm" : "\u4e5d\u6c5f", "tm" : 1604296800000, "wptn" : "4", "z" : "15.45"}, {"oq" : "0", "q" : "36700", "rvnm" : "\u957f\u6c5f", "stcd" : "60115000", "stnm" : "\u5927\u901a", "tm" : 1604296800000, "wptn" : "5", "z" : "10.37"}, {"oq" : "0", "q" : "8930", "rvnm" : "\u6d1e\u5ead\u6e56", "stcd" : "61512000", "stnm" : "\u57ce\u9675\u77f6(\u4e03)", "tm" : 1604296800000, "wptn" : "4", "z" : "26.74"}, {"oq" : "0", "q" : "6450", "rvnm" : "\u9131\u9633\u6e56", "stcd" : "62601600", "stnm" : "\u6e56\u53e3", "tm" : 1604296800000, "wptn" : "4", "z" : "14.84"}, {"oq" : "0", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60107000", "stnm" : "\u8305\u576a(\u4e8c)", "tm" : 1604296800000, "wptn" : "5", "z" : "174.257"}, {"oq" : "14700", "q" : "13000", "rvnm" : "\u957f\u6c5f", "stcd" : "60106980", "stnm" : "\u4e09\u5ce1\u6c34\u5e93", "tm" : 1604296800000, "wptn" : "5", "z" : "174.26"}, {"oq" : "0", "q" : "0", "rvnm" : "\u6c49\u6c5f", "stcd" : "61802500", "stnm" : "\u9f99\u738b\u5e99", "tm" : 1604296800000, "wptn" : "6", "z" : "164.7"}, {"oq" : "783", "q" : "154", "rvnm" : "\u6c49\u6c5f", "stcd" : "61802700", "stnm" : "\u4e39\u6c5f\u53e3\u6c34\u5e93", "tm" : 1604296800000, "wptn" : "6", "z" : "164.7"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"oq": {"type": "string"}, "q": {"type": "string"}, "rvnm": {"type": "string"}, "stcd": {"type": "string"}, "stnm": {"type": "string"}, "tm": {"type": "integer"}, "wptn": {"type": "string"}, "z": {"type": "string"}}, "required": ["oq", "q", "rvnm", "stcd", "stnm", "tm", "wptn", "z"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 5312032003, "parent" : 5312032, "name" : "RAKATEDA I", "latitude" : null, "longitude" : null, "postal" : [], "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": {}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "parent": {"type": "string"}, "archivalGroupId": {"type": "string"}, "stateToken": {"type": "string"}, "interactionModel": {"type": "string"}, "filename": {"type": "string"}, "contentSize": {"type": "integer"}, "digests": {"type": "array", "items": {"type": "string"}}, "createdDate": {"type": "string"}, "createdBy": {"type": "string"}, "lastModifiedDate": {"type": "string"}, "lastModifiedBy": {"type": "string"}, "mementoCreatedDate": {"type": "string"}, "archivalGroup": {"type": "boolean"}, "objectRoot": {"type": "boolean"}, "deleted": {"type": "boolean"}, "contentPath": {"type": "string"}, "headersVersion": {"type": "string"}}, "required": ["id", "parent", "archivalGroupId", "stateToken", "interactionModel", "filename", "contentSize", "digests", "createdDate", "createdBy", "lastModifiedDate", "lastModifiedBy", "mementoCreatedDate", "archivalGroup", "objectRoot", "deleted", "contentPath", "headersVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "info:fedora/1711.dl:6DWVZXV4RKIIA9E/MASTER0/fcr:metadata", "parent" : "info:fedora/1711.dl:6DWVZXV4RKIIA9E/MASTER0", "archivalGroupId" : "info:fedora/1711.dl:6DWVZXV4RKIIA9E", "stateToken" : "88BD1B85A43DE1B04DD4F1DF0B9C6E5F", "interactionModel" : "http://fedora.info/definitions/v4/repository#NonRdfSourceDescription", "filename" : "MASTER0", "contentSize" : 200, "digests" : ["urn:sha-512:7d598383206140e5bc4a0ddf34d001ad5aeff35f14c6466dd860885c3eab5c55b42f2439812a2be7f0798fb37dd42e2747066c20a45280e8978f57b5eaac6b5a"], "createdDate" : "2019-07-08T18:49:07.827Z", "createdBy" : "fedoraAdmin", "lastModifiedDate" : "2019-07-08T18:49:07.827Z", "lastModifiedBy" : "fedoraAdmin", "mementoCreatedDate" : "2019-07-08T18:49:07.827Z", "archivalGroup" : false, "objectRoot" : false, "deleted" : false, "contentPath" : "MASTER0~fcr-desc.nt", "headersVersion" : "1.0"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "parent": {"type": "string"}, "archivalGroupId": {"type": "string"}, "stateToken": {"type": "string"}, "interactionModel": {"type": "string"}, "filename": {"type": "string"}, "contentSize": {"type": "integer"}, "digests": {"type": "array", "items": {"type": "string"}}, "createdDate": {"type": "string"}, "createdBy": {"type": "string"}, "lastModifiedDate": {"type": "string"}, "lastModifiedBy": {"type": "string"}, "mementoCreatedDate": {"type": "string"}, "archivalGroup": {"type": "boolean"}, "objectRoot": {"type": "boolean"}, "deleted": {"type": "boolean"}, "contentPath": {"type": "string"}, "headersVersion": {"type": "string"}}, "required": ["id", "parent", "archivalGroupId", "stateToken", "interactionModel", "filename", "contentSize", "digests", "createdDate", "createdBy", "lastModifiedDate", "lastModifiedBy", "mementoCreatedDate", "archivalGroup", "objectRoot", "deleted", "contentPath", "headersVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"website": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "string"}, "id": {"type": "string"}, "director": {"type": "string"}, "phone": {"type": "string"}, "provider": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "full_time_school": {"type": "boolean"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["website", "school_type", "fax", "name", "address", "id", "director", "phone", "provider", "email", "state", "full_time_school", "programs", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"website" : "www.torhorstschule.de", "school_type" : "Gesamtschule mit GOST", "fax" : "03301 6017599", "name" : "Torhorst-Gesamtschule mit gymnasialer Oberstufe ", "address" : "Walther-Bothe-Stra\u00dfe 30 16515 Oranienburg", "id" : "BB-112768", "director" : "Frau Br\u00fcssow", "phone" : "03301 6017560", "provider" : "Kreis", "email" : "info|at|torhorstschule.de\n", "state" : "BB", "full_time_school" : false, "programs" : {"programs" : []}, "lon" : 13.244471, "lat" : 52.747779}
json_instruct
{"type": "object", "properties": {"website": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "string"}, "id": {"type": "string"}, "director": {"type": "string"}, "phone": {"type": "string"}, "provider": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "full_time_school": {"type": "boolean"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["website", "school_type", "fax", "name", "address", "id", "director", "phone", "provider", "email", "state", "full_time_school", "programs", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "summary": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "exposed-modules": {"type": "array", "items": {"type": "string"}}, "elm-version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"elm/core": {"type": "string"}, "elm-community/list-extra": {"type": "string"}}, "required": ["elm/core", "elm-community/list-extra"]}, "test-dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["type", "name", "summary", "license", "version", "exposed-modules", "elm-version", "dependencies", "test-dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "package", "name" : "Janiczek/elm-runescape", "summary" : "Functions related to the game RuneScape by Jagex Ltd.", "license" : "BSD-3-Clause", "version" : "1.0.1", "exposed-modules" : ["RuneScape.Levels", "RuneScape.Skills", "RuneScape.Quests"], "elm-version" : "0.19.0 <= v < 0.20.0", "dependencies" : {"elm/core" : "1.0.2 <= v < 2.0.0", "elm-community/list-extra" : "8.2.0 <= v < 9.0.0"}, "test-dependencies" : {}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "summary": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "exposed-modules": {"type": "array", "items": {"type": "string"}}, "elm-version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"elm/core": {"type": "string"}, "elm-community/list-extra": {"type": "string"}}, "required": ["elm/core", "elm-community/list-extra"]}, "test-dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["type", "name", "summary", "license", "version", "exposed-modules", "elm-version", "dependencies", "test-dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"programE": {"type": "string"}, "config": {"type": "object", "properties": {"github.com/pinf/pinf-for-nodejs/test/assets/packages/package-e": {"type": "object", "properties": {"configE2": {"type": "string"}}, "required": ["configE2"]}}, "required": ["github.com/pinf/pinf-for-nodejs/test/assets/packages/package-e"]}, "env": {"type": "object", "properties": {"TEST_VAR": {"type": "string"}}, "required": ["TEST_VAR"]}}, "required": ["programE", "config", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"programE" : "from program-e dir", "config" : {"github.com/pinf/pinf-for-nodejs/test/assets/packages/package-e" : {"configE2" : "from program-e dir"}}, "env" : {"TEST_VAR" : "TEST_VALUE"}}
json_instruct
{"type": "object", "properties": {"programE": {"type": "string"}, "config": {"type": "object", "properties": {"github.com/pinf/pinf-for-nodejs/test/assets/packages/package-e": {"type": "object", "properties": {"configE2": {"type": "string"}}, "required": ["configE2"]}}, "required": ["github.com/pinf/pinf-for-nodejs/test/assets/packages/package-e"]}, "env": {"type": "object", "properties": {"TEST_VAR": {"type": "string"}}, "required": ["TEST_VAR"]}}, "required": ["programE", "config", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "external_id": {"type": "string"}, "error": {"type": "null"}, "status": {"type": "string"}, "activity_id": {"type": "null"}}, "required": ["id", "external_id", "error", "status", "activity_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 16486769, "external_id" : "testing.fit", "error" : null, "status" : "The created activity has been deleted.", "activity_id" : null}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "external_id": {"type": "string"}, "error": {"type": "null"}, "status": {"type": "string"}, "activity_id": {"type": "null"}}, "required": ["id", "external_id", "error", "status", "activity_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"p" : "175fc2e0-fbc4-4a9d-8c25-ea5d407003ff", "d" : 95}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"Routes": {"type": "array", "items": {"type": "object", "properties": {"DownstreamPathTemplate": {"type": "string"}, "DownstreamScheme": {"type": "string"}, "DownstreamHostAndPorts": {"type": "array", "items": {"type": "object", "properties": {"Host": {"type": "string"}, "Port": {"type": "string"}}, "required": ["Host", "Port"]}}, "UpstreamPathTemplate": {"type": "string"}, "UpstreamHttpMethod": {"type": "array", "items": {"type": "string"}}, "QoSOptions": {"type": "object", "properties": {"ExceptionsAllowedBeforeBreaking": {"type": "integer"}, "DurationOfBreak": {"type": "integer"}, "TimeoutValue": {"type": "integer"}}, "required": ["ExceptionsAllowedBeforeBreaking", "DurationOfBreak", "TimeoutValue"]}}, "required": ["DownstreamPathTemplate", "DownstreamScheme", "DownstreamHostAndPorts", "UpstreamPathTemplate", "UpstreamHttpMethod", "QoSOptions"]}}, "GlobalConfiguration": {"type": "object", "properties": {"BaseUrl": {"type": "string"}}, "required": ["BaseUrl"]}}, "required": ["Routes", "GlobalConfiguration"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Routes" : [{"DownstreamPathTemplate" : "/{everything}", "DownstreamScheme" : "http", "DownstreamHostAndPorts" : [{"Host" : "localhost", "Port" : "5002"}], "UpstreamPathTemplate" : "/nationalBank/{everything}", "UpstreamHttpMethod" : ["GET", "POST"], "QoSOptions" : {"ExceptionsAllowedBeforeBreaking" : 5, "DurationOfBreak" : 1000, "TimeoutValue" : 2000}}], "GlobalConfiguration" : {"BaseUrl" : "http://localhost:5000"}}
json_instruct
{"type": "object", "properties": {"Routes": {"type": "array", "items": {"type": "object", "properties": {"DownstreamPathTemplate": {"type": "string"}, "DownstreamScheme": {"type": "string"}, "DownstreamHostAndPorts": {"type": "array", "items": {"type": "object", "properties": {"Host": {"type": "string"}, "Port": {"type": "string"}}, "required": ["Host", "Port"]}}, "UpstreamPathTemplate": {"type": "string"}, "UpstreamHttpMethod": {"type": "array", "items": {"type": "string"}}, "QoSOptions": {"type": "object", "properties": {"ExceptionsAllowedBeforeBreaking": {"type": "integer"}, "DurationOfBreak": {"type": "integer"}, "TimeoutValue": {"type": "integer"}}, "required": ["ExceptionsAllowedBeforeBreaking", "DurationOfBreak", "TimeoutValue"]}}, "required": ["DownstreamPathTemplate", "DownstreamScheme", "DownstreamHostAndPorts", "UpstreamPathTemplate", "UpstreamHttpMethod", "QoSOptions"]}}, "GlobalConfiguration": {"type": "object", "properties": {"BaseUrl": {"type": "string"}}, "required": ["BaseUrl"]}}, "required": ["Routes", "GlobalConfiguration"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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_keypoints": {"type": "array", "items": {}}}, "required": ["pose_keypoints", "face_keypoints", "hand_left_keypoints", "hand_right_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.0, "people" : [{"pose_keypoints" : [327.346, 90.0408, 0.898299, 327.329, 152.592, 0.82965, 272.602, 151.322, 0.757873, 260.843, 251.74, 0.787358, 255.69, 333.89, 0.801848, 378.271, 152.606, 0.754667, 433.001, 194.37, 0.897063, 421.34, 109.541, 0.889212, 294.802, 327.381, 0.536687, 296.027, 453.909, 0.420479, 0, 0, 0, 359.987, 323.474, 0.553125, 361.281, 455.214, 0.45267, 0, 0, 0, 316.93, 79.6203, 0.915559, 337.789, 79.6163, 0.911139, 299.999, 87.4025, 0.910771, 350.863, 87.4224, 0.950349], "face_keypoints" : [], "hand_left_keypoints" : [], "hand_right_keypoints" : []}]}
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_keypoints": {"type": "array", "items": {}}}, "required": ["pose_keypoints", "face_keypoints", "hand_left_keypoints", "hand_right_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"collection_id": {"type": "integer"}, "updated_at": {"type": "string"}, "body_html": {"type": "null"}, "default_product_image": {"type": "null"}, "handle": {"type": "string"}, "image": {"type": "null"}, "title": {"type": "string"}, "sort_order": {"type": "string"}, "published_at": {"type": "string"}}, "required": ["collection_id", "updated_at", "body_html", "default_product_image", "handle", "image", "title", "sort_order", "published_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"collection_id" : 1, "updated_at" : "2017-01-09T13:59:09-05:00", "body_html" : null, "default_product_image" : null, "handle" : "frontpage", "image" : null, "title" : "Home page", "sort_order" : "alpha-asc", "published_at" : "2017-01-09T13:59:09-05:00"}
json_instruct
{"type": "object", "properties": {"collection_id": {"type": "integer"}, "updated_at": {"type": "string"}, "body_html": {"type": "null"}, "default_product_image": {"type": "null"}, "handle": {"type": "string"}, "image": {"type": "null"}, "title": {"type": "string"}, "sort_order": {"type": "string"}, "published_at": {"type": "string"}}, "required": ["collection_id", "updated_at", "body_html", "default_product_image", "handle", "image", "title", "sort_order", "published_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "license", "repository", "main", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "creations-of-god", "version" : "1.0.5", "description" : "All things created by God", "license" : "MIT", "repository" : "iamwebwiz/Creations-of-God", "main" : "index.js", "keywords" : ["creations", "life", "human", "God", "existence"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "license", "repository", "main", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"properties": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "address": {"type": "string"}}, "required": ["name", "address"]}}}, "required": ["properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"properties" : [{"name" : "Brookfield", "address" : "161 Bay st"}, {"name" : "Exiger", "address" : "48 Yonge st"}]}
json_instruct
{"type": "object", "properties": {"properties": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "address": {"type": "string"}}, "required": ["name", "address"]}}}, "required": ["properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"item": {"type": "integer"}, "index": {"type": "integer"}}, "required": ["item", "index"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"item" : 539, "index" : 0}
json_instruct
{"type": "object", "properties": {"item": {"type": "integer"}, "index": {"type": "integer"}}, "required": ["item", "index"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "watch": {"type": "string"}, "build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["serve", "watch", "build", "dev"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"serve": {"type": "string"}, "uglify-js": {"type": "string"}, "rewatch": {"type": "string"}}, "required": ["serve", "uglify-js", "rewatch"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "angular-fir", "version" : "0.1.0", "description" : "a fir.im SDK based on angular.js", "main" : "dist/fir.min.js", "scripts" : {"serve" : "node_modules/.bin/serve .", "watch" : "node_modules/.bin/rewatch src/*.js -c 'npm run build'", "build" : "node_modules/.bin/uglifyjs src/fir.js --mangle --compress -o dist/fir.min.js --source-map dist/fir.min.js.map --source-map-url fir.min.js.map --source-map-root ../src/fir.js", "dev" : "npm run serve & npm run watch"}, "repository" : {"type" : "git", "url" : "git@github.com:turingou/angular-fir.git"}, "keywords" : ["angular", "fir", "fir.im", "testflight"], "author" : "turing <o.u.turing@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/turingou/angular-fir/issues"}, "homepage" : "https://github.com/turingou/angular-fir", "devDependencies" : {"serve" : "~1.4.0", "uglify-js" : "^2.4.15", "rewatch" : "~0.2.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "watch": {"type": "string"}, "build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["serve", "watch", "build", "dev"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"serve": {"type": "string"}, "uglify-js": {"type": "string"}, "rewatch": {"type": "string"}}, "required": ["serve", "uglify-js", "rewatch"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}}, "required": ["dev", "build", "serve"]}, "dependencies": {"type": "object", "properties": {"@grapecity/wijmo.vue2.all": {"type": "string"}, "vue": {"type": "string"}}, "required": ["@grapecity/wijmo.vue2.all", "vue"]}, "devDependencies": {"type": "object", "properties": {"@vitejs/plugin-vue": {"type": "string"}, "@vue/compiler-sfc": {"type": "string"}, "vite": {"type": "string"}}, "required": ["@vitejs/plugin-vue", "@vue/compiler-sfc", "vite"]}}, "required": ["name", "version", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "yft-pl", "version" : "0.0.1", "scripts" : {"dev" : "vite", "build" : "vite build", "serve" : "vite preview"}, "dependencies" : {"@grapecity/wijmo.vue2.all" : "5.20212.812-rc", "vue" : "^3.2.2"}, "devDependencies" : {"@vitejs/plugin-vue" : "^1.3.0", "@vue/compiler-sfc" : "^3.0.5", "vite" : "^2.4.4"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}}, "required": ["dev", "build", "serve"]}, "dependencies": {"type": "object", "properties": {"@grapecity/wijmo.vue2.all": {"type": "string"}, "vue": {"type": "string"}}, "required": ["@grapecity/wijmo.vue2.all", "vue"]}, "devDependencies": {"type": "object", "properties": {"@vitejs/plugin-vue": {"type": "string"}, "@vue/compiler-sfc": {"type": "string"}, "vite": {"type": "string"}}, "required": ["@vitejs/plugin-vue", "@vue/compiler-sfc", "vite"]}}, "required": ["name", "version", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"listed-building-grade": {"type": "string"}, "start-date": {"type": "string"}, "point": {"type": "string"}, "listed-building": {"type": "string"}, "documentation-url": {"type": "string"}, "name": {"type": "string"}, "slug": {"type": "string"}, "entry-date": {"type": "string"}}, "required": ["listed-building-grade", "start-date", "point", "listed-building", "documentation-url", "name", "slug", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.569081, 51.266491]}, "properties" : {"listed-building-grade" : "II", "start-date" : "1974-01-11", "point" : "POINT (-0.569081 51.266491)", "listed-building" : "1029581", "documentation-url" : "https://historicengland.org.uk/listing/the-list/list-entry/1029581", "name" : "QUEEN HYTHE", "slug" : "/listed-building/1029581", "entry-date" : "2021-05-28"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"listed-building-grade": {"type": "string"}, "start-date": {"type": "string"}, "point": {"type": "string"}, "listed-building": {"type": "string"}, "documentation-url": {"type": "string"}, "name": {"type": "string"}, "slug": {"type": "string"}, "entry-date": {"type": "string"}}, "required": ["listed-building-grade", "start-date", "point", "listed-building", "documentation-url", "name", "slug", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}}}, "required": ["city", "borders"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"city" : {"name" : "MORRINHOS DO SUL", "state" : "RS"}, "borders" : [[{"lat" : -29.312404893770804, "lng" : -49.88862091052658}, {"lat" : -29.372251991636062, "lng" : -49.890694457583095}, {"lat" : -29.40559242654922, "lng" : -49.961003780699855}, {"lat" : -29.4224244095588, "lng" : -50.03226826296992}, {"lat" : -29.40111534959368, "lng" : -50.00971769161811}, {"lat" : -29.342350467999665, "lng" : -50.03039175827297}, {"lat" : -29.310927027060586, "lng" : -50.020903767694676}, {"lat" : -29.28573334102083, "lng" : -49.955710475458034}, {"lat" : -29.253774662270814, "lng" : -49.93006217403007}, {"lat" : -29.258985413346124, "lng" : -49.88617135332527}, {"lat" : -29.312404893770804, "lng" : -49.88862091052658}]]}
json_instruct
{"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}}}, "required": ["city", "borders"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"blackfrozen": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["blackfrozen"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"blackfrozen" : {"title" : "blackfrozen", "channel_id" : 75043591, "link" : "http://twitch.tv/blackfrozen", "desc" : null, "plans" : {"$4.99" : "239911", "$9.99" : "239912", "$24.99" : "239913"}, "id" : "blackfrozen", "first_seen" : "2017-07-05 07:00:06", "badge" : null, "badge_starting" : null, "badge_3m" : null, "badge_6m" : null, "badge_12m" : null, "badge_24m" : null, "badges" : null, "bits_badges" : null, "cheermote1" : null, "cheermote100" : null, "cheermote1000" : null, "cheermote5000" : null, "cheermote10000" : null, "set" : 239911, "emotes" : [{"code" : "blackf5COOL", "image_id" : 242794, "set" : 239911}, {"code" : "blackf5KING", "image_id" : 242817, "set" : 239913}, {"code" : "blackf5LOVE", "image_id" : 242808, "set" : 239912}]}}}
json_instruct
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"blackfrozen": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["blackfrozen"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "account": {"type": "string"}, "locationSet": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}}, "required": ["include"]}, "strings": {"type": "object", "properties": {"community": {"type": "string"}}, "required": ["community"]}}, "required": ["id", "type", "account", "locationSet", "strings"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "rw-facebook", "type" : "facebook", "account" : "osmrwanda", "locationSet" : {"include" : ["rw"]}, "strings" : {"community" : "OpenStreetMap Rwanda"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "account": {"type": "string"}, "locationSet": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}}, "required": ["include"]}, "strings": {"type": "object", "properties": {"community": {"type": "string"}}, "required": ["community"]}}, "required": ["id", "type", "account", "locationSet", "strings"], "$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"}, "private": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"bats": {"type": "string"}, "bats-support": {"type": "string"}, "bats-assert": {"type": "string"}, "bats-file": {"type": "string"}}, "required": ["bats", "bats-support", "bats-assert", "bats-file"]}}, "required": ["name", "version", "description", "private", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bats-on-steroids", "version" : "1.0.0", "description" : "This file is use for dependency management only and will never be used on the end Docker image", "private" : "true", "devDependencies" : {"bats" : "^1.5.0", "bats-support" : "git+https://github.com/bats-core/bats-support", "bats-assert" : "git+https://github.com/bats-core/bats-assert", "bats-file" : "git+https://github.com/bats-core/bats-file"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"bats": {"type": "string"}, "bats-support": {"type": "string"}, "bats-assert": {"type": "string"}, "bats-file": {"type": "string"}}, "required": ["bats", "bats-support", "bats-assert", "bats-file"]}}, "required": ["name", "version", "description", "private", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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"}}, "required": ["x", "y"]}, "label": {"type": "string"}}, "required": ["bottomright", "confidence", "topleft", "label"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"bottomright" : {"x" : 1166, "y" : 130}, "confidence" : 0.16, "topleft" : {"x" : 1053, "y" : 0}, "label" : "person"}, {"bottomright" : {"x" : 876, "y" : 719}, "confidence" : 0.76, "topleft" : {"x" : 258, "y" : 50}, "label" : "person"}, {"bottomright" : {"x" : 358, "y" : 712}, "confidence" : 0.2, "topleft" : {"x" : 224, "y" : 377}, "label" : "person"}, {"bottomright" : {"x" : 58, "y" : 149}, "confidence" : 0.26, "topleft" : {"x" : 4, "y" : 37}, "label" : "car"}, {"bottomright" : {"x" : 744, "y" : 109}, "confidence" : 0.12, "topleft" : {"x" : 688, "y" : 0}, "label" : "bottle"}, {"bottomright" : {"x" : 1043, "y" : 117}, "confidence" : 0.27, "topleft" : {"x" : 924, "y" : 0}, "label" : "bottle"}, {"bottomright" : {"x" : 1279, "y" : 719}, "confidence" : 0.28, "topleft" : {"x" : 943, "y" : 290}, "label" : "chair"}, {"bottomright" : {"x" : 741, "y" : 708}, "confidence" : 0.27, "topleft" : {"x" : 293, "y" : 551}, "label" : "chair"}, {"bottomright" : {"x" : 1275, "y" : 719}, "confidence" : 0.2, "topleft" : {"x" : 1000, "y" : 540}, "label" : "chair"}, {"bottomright" : {"x" : 231, "y" : 187}, "confidence" : 0.28, "topleft" : {"x" : 59, "y" : 9}, "label" : "vase"}, {"bottomright" : {"x" : 1246, "y" : 188}, "confidence" : 0.19, "topleft" : {"x" : 1076, "y" : 2}, "label" : "vase"}]
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"}}, "required": ["x", "y"]}, "label": {"type": "string"}}, "required": ["bottomright", "confidence", "topleft", "label"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"apartDong": {"type": "string"}, "dealDay": {"type": "string"}, "apartName": {"type": "string"}, "dealdiffer": {"type": "string"}, "apartAddress": {"type": "string"}, "dealYear": {"type": "string"}, "dealFloor": {"type": "string"}, "apartCreatedYear": {"type": "string"}, "dealUpdated": {"type": "string"}, "apartSize": {"type": "string"}, "apartCityCode": {"type": "string"}, "id": {"type": "integer"}, "dealMoney": {"type": "string"}, "dealMonth": {"type": "string"}}, "required": ["apartDong", "dealDay", "apartName", "dealdiffer", "apartAddress", "dealYear", "dealFloor", "apartCreatedYear", "dealUpdated", "apartSize", "apartCityCode", "id", "dealMoney", "dealMonth"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"apartDong" : "\uccad\ub77c\ub3d9", "dealDay" : "17", "apartName" : "\ud55c\uc77c\ubca0\ub77c\uccb4", "dealdiffer" : "7,700", "apartAddress" : "155-9", "dealYear" : "2020", "dealFloor" : "10", "apartCreatedYear" : "2011", "dealUpdated" : "2020-06-23", "apartSize" : "104.376", "apartCityCode" : "28260", "id" : 91593, "dealMoney" : "59,700", "dealMonth" : "06"}, {"apartDong" : "\uccad\ub77c\ub3d9", "dealDay" : "11", "apartName" : "\uccad\ub77c\ub3d9\uc591\uc5d4\ud30c\ud2b8", "dealdiffer" : "3,500", "apartAddress" : "102-3", "dealYear" : "2020", "dealFloor" : "12", "apartCreatedYear" : "2012", "dealUpdated" : "2020-06-23", "apartSize" : "118.3699", "apartCityCode" : "28260", "id" : 91591, "dealMoney" : "62,500", "dealMonth" : "06"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"apartDong": {"type": "string"}, "dealDay": {"type": "string"}, "apartName": {"type": "string"}, "dealdiffer": {"type": "string"}, "apartAddress": {"type": "string"}, "dealYear": {"type": "string"}, "dealFloor": {"type": "string"}, "apartCreatedYear": {"type": "string"}, "dealUpdated": {"type": "string"}, "apartSize": {"type": "string"}, "apartCityCode": {"type": "string"}, "id": {"type": "integer"}, "dealMoney": {"type": "string"}, "dealMonth": {"type": "string"}}, "required": ["apartDong", "dealDay", "apartName", "dealdiffer", "apartAddress", "dealYear", "dealFloor", "apartCreatedYear", "dealUpdated", "apartSize", "apartCityCode", "id", "dealMoney", "dealMonth"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"fileName": {"type": "string"}, "contextType": {"type": "integer"}, "fileType": {"type": "integer"}}, "required": ["fileName", "contextType", "fileType"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"fileName" : "AbstractPO.java.ftl", "contextType" : 1, "fileType" : 1}, {"fileName" : "Created.java.ftl", "contextType" : 1, "fileType" : 1}, {"fileName" : "CreatedBy.java.ftl", "contextType" : 1, "fileType" : 1}, {"fileName" : "CreatedTime.java.ftl", "contextType" : 1, "fileType" : 1}, {"fileName" : "CreatedOperatedDeleted.java.ftl", "contextType" : 1, "fileType" : 1}, {"fileName" : "CreatedOperatedDeletedVersion.java.ftl", "contextType" : 1, "fileType" : 1}, {"fileName" : "Deleted.java.ftl", "contextType" : 1, "fileType" : 1}, {"fileName" : "Jsr310Created.java.ftl", "contextType" : 1, "fileType" : 1}, {"fileName" : "Jsr310CreatedOperatedDeleted.java.ftl", "contextType" : 1, "fileType" : 1}, {"fileName" : "Jsr310CreatedOperatedDeletedVersion.java.ftl", "contextType" : 1, "fileType" : 1}, {"fileName" : "Jsr310CreatedTime.java.ftl", "contextType" : 1, "fileType" : 1}, {"fileName" : "Jsr310Operated.java.ftl", "contextType" : 1, "fileType" : 1}, {"fileName" : "Jsr310OperatedTime.java.ftl", "contextType" : 1, "fileType" : 1}, {"fileName" : "Operated.java.ftl", "contextType" : 1, "fileType" : 1}, {"fileName" : "OperatedBy.java.ftl", "contextType" : 1, "fileType" : 1}, {"fileName" : "OperatedTime.java.ftl", "contextType" : 1, "fileType" : 1}, {"fileName" : "Version.java.ftl", "contextType" : 1, "fileType" : 1}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"fileName": {"type": "string"}, "contextType": {"type": "integer"}, "fileType": {"type": "integer"}}, "required": ["fileName", "contextType", "fileType"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1970, 10], [1972, 23], [1973, 51], [1974, 138], [1975, 181], [1976, 72], [1977, 95], [1978, 58], [1979, 153], [1980, 326], [1981, 209], [1982, 242], [1983, 87], [1984, 45], [1985, 49], [1986, 44], [1987, 37], [1988, 22], [1989, 23], [1990, 20], [1991, 12], [1992, 13], [1993, 8], [1994, 10], [1995, 5], [1998, 6], [1999, 5], [2002, 6], [2005, 5], [2006, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"brfs": {"type": "string"}, "cuid": {"type": "string"}, "duplexify": {"type": "string"}, "from2": {"type": "string"}, "length-prefixed-stream": {"type": "string"}, "lexicographic-integer": {"type": "string"}, "multistream": {"type": "string"}, "once": {"type": "string"}, "protocol-buffers": {"type": "string"}, "pump": {"type": "string"}, "through2": {"type": "string"}}, "required": ["brfs", "cuid", "duplexify", "from2", "length-prefixed-stream", "lexicographic-integer", "multistream", "once", "protocol-buffers", "pump", "through2"]}, "devDependencies": {"type": "object", "properties": {"concat-stream": {"type": "string"}, "levelup": {"type": "string"}, "memdown": {"type": "string"}, "tape": {"type": "string"}}, "required": ["concat-stream", "levelup", "memdown", "tape"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "browserify": {"type": "object", "properties": {"transform": {"type": "array", "items": {"type": "string"}}}, "required": ["transform"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "repository", "browserify", "scripts", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "scuttleup-blacklist", "version" : "3.4.3", "description" : "Scuttlebutt like eventual consistent log replication for levelup", "main" : "index.js", "dependencies" : {"brfs" : "^1.4.0", "cuid" : "^1.3.8", "duplexify" : "^3.4.2", "from2" : "^2.1.0", "length-prefixed-stream" : "^1.4.0", "lexicographic-integer" : "^1.1.0", "multistream" : "^1.4.1", "once" : "^1.3.2", "protocol-buffers" : "^3.1.3", "pump" : "^1.0.0", "through2" : "^2.0.0"}, "devDependencies" : {"concat-stream" : "^1.4.6", "levelup" : "^0.19.0", "memdown" : "^0.10.2", "tape" : "^2.14.0"}, "repository" : {"type" : "git", "url" : "https://github.com/chiefbiiko/scuttleup-blacklist.git"}, "browserify" : {"transform" : ["brfs"]}, "scripts" : {"test" : "tape test.js"}, "author" : "Noah Anabiik Schwarz", "license" : "MIT", "bugs" : {"url" : "https://github.com/chiefbiiko/scuttleup-blacklist/issues"}, "homepage" : "https://github.com/chiefbiiko/scuttleup-blacklist"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"brfs": {"type": "string"}, "cuid": {"type": "string"}, "duplexify": {"type": "string"}, "from2": {"type": "string"}, "length-prefixed-stream": {"type": "string"}, "lexicographic-integer": {"type": "string"}, "multistream": {"type": "string"}, "once": {"type": "string"}, "protocol-buffers": {"type": "string"}, "pump": {"type": "string"}, "through2": {"type": "string"}}, "required": ["brfs", "cuid", "duplexify", "from2", "length-prefixed-stream", "lexicographic-integer", "multistream", "once", "protocol-buffers", "pump", "through2"]}, "devDependencies": {"type": "object", "properties": {"concat-stream": {"type": "string"}, "levelup": {"type": "string"}, "memdown": {"type": "string"}, "tape": {"type": "string"}}, "required": ["concat-stream", "levelup", "memdown", "tape"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "browserify": {"type": "object", "properties": {"transform": {"type": "array", "items": {"type": "string"}}}, "required": ["transform"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "repository", "browserify", "scripts", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"production": {"type": "object", "properties": {"app_function": {"type": "string"}, "aws_environment_variables": {"type": "object", "properties": {"FLASK_CONFIG": {"type": "string"}, "SECRET_KEY": {"type": "string"}}, "required": ["FLASK_CONFIG", "SECRET_KEY"]}, "aws_region": {"type": "string"}, "lambda_description": {"type": "string"}, "project_name": {"type": "string"}, "s3_bucket": {"type": "string"}}, "required": ["app_function", "aws_environment_variables", "aws_region", "lambda_description", "project_name", "s3_bucket"]}}, "required": ["production"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"production" : {"app_function" : "app.app", "aws_environment_variables" : {"FLASK_CONFIG" : "production", "SECRET_KEY" : "abcd"}, "aws_region" : "ap-southeast-2", "lambda_description" : "Transperth Alexa Skill Zappa Deployment", "project_name" : "TransperthAlexaSkill", "s3_bucket" : ""}}
json_instruct
{"type": "object", "properties": {"production": {"type": "object", "properties": {"app_function": {"type": "string"}, "aws_environment_variables": {"type": "object", "properties": {"FLASK_CONFIG": {"type": "string"}, "SECRET_KEY": {"type": "string"}}, "required": ["FLASK_CONFIG", "SECRET_KEY"]}, "aws_region": {"type": "string"}, "lambda_description": {"type": "string"}, "project_name": {"type": "string"}, "s3_bucket": {"type": "string"}}, "required": ["app_function", "aws_environment_variables", "aws_region", "lambda_description", "project_name", "s3_bucket"]}}, "required": ["production"], "$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"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"Paul Pilone": {"type": "string"}}, "required": ["Paul Pilone"]}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "frameworks": {"type": "string"}, "source_files": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "homepage", "authors", "license", "source", "platforms", "frameworks", "source_files", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "PTKTestKit", "version" : "1.0.0", "summary" : "Various classes built to make iOS testing faster, easier, and more effective.", "homepage" : "https://github.com/Element84/PTKTestKit", "authors" : {"Paul Pilone" : "paul@element84.com"}, "license" : {"type" : "Apache 2.0", "file" : "LICENSE"}, "source" : {"git" : "https://github.com/Element84/PTKTestKit.git", "tag" : "1.0.0"}, "platforms" : {"ios" : "6.0"}, "frameworks" : "SenTestingKit", "source_files" : "PTKTestKit/*.{h,m}", "requires_arc" : false}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"Paul Pilone": {"type": "string"}}, "required": ["Paul Pilone"]}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "frameworks": {"type": "string"}, "source_files": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "homepage", "authors", "license", "source", "platforms", "frameworks", "source_files", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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#"}
{"word" : "Pretend", "definitions" : ["Behave so as to make it appear that something is the case when in fact it is not.", "Engage in an imaginative game or fantasy.", "Give the appearance of feeling or possessing (an emotion or quality); simulate.", "Lay claim to (a quality or title)"], "parts-of-speech" : "Verb"}
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#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "string"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "string"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "string"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 164442, "name" : "Rapidvideo.com", "description" : "Slim Fullscreen Design. This is a test run. I try to optimize it as much a possible after time. Please report bugs or problems.\r\nOptimized for widescreen. Removed all useless parts.\r\n\r\nMy CSS and JS Injection projects: https://github.com/c0d3d-net/User.Injection.Collection/", "user" : {"id" : 625274, "name" : "stylish.c0d3d.net", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : "ccbync"}, "updated" : "2018-09-25T02:00:37.000Z", "weekly_install_count" : 0, "total_install_count" : 9, "rating" : null, "after_screenshot_name" : "https://userstyles.org/style_screenshots/164442_after.jpeg?r=1570262473", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : "ccbync", "created" : "2018-09-25T02:00:37.000Z", "category" : "site", "raw_subcategory" : "rapidvideo", "subcategory" : "rapidvideo", "additional_info" : "v1.0", "style_tags" : [], "css" : "@-moz-document domain(\"rapidvideo.com\")\r\n{\r\n .show_div {\r\n\theight: 90%;\r\n\tbackground: none;\r\n }\r\n\r\n .video, #standout {\r\n\twidth: 100%;\r\n\theight: 100%;\r\n }\r\n\r\n .header.universal_content, #menu-dark, #navi-dark, .clear {\r\n\tdisplay: none;\r\n }\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/164442/rapidvideo-com.user.js", "style_settings" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "string"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "string"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "string"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "Postcode", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "MetadataValues": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "MetadataFieldID": {"type": "integer"}, "ItemValue": {"type": "string"}}, "required": ["ID", "MetadataFieldID", "ItemValue"]}}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "AddressInfo", "Connections", "StatusTypeID", "DateLastStatusUpdate", "MetadataValues", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"IsRecentlyVerified" : false, "ID" : 180277, "UUID" : "95ED8A98-C51E-4983-949C-D9702EA30D35", "DataProviderID" : 29, "DataProvidersReference" : "6462,1374", "AddressInfo" : {"ID" : 180636, "Title" : "K\u00f6nigsberger Str. 1", "AddressLine1" : "K\u00f6nigsberger Str. 1", "Town" : "Reinheim", "Postcode" : "64354", "CountryID" : 87, "Latitude" : 49.820683, "Longitude" : 8.830471, "DistanceUnit" : 0}, "Connections" : [{"ID" : 283148, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 11, "CurrentTypeID" : 20}, {"ID" : 283149, "ConnectionTypeID" : 33, "StatusTypeID" : 50, "LevelID" : 3, "PowerKW" : 22, "CurrentTypeID" : 30}, {"ID" : 283150, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 11, "CurrentTypeID" : 20}], "StatusTypeID" : 50, "DateLastStatusUpdate" : "2021-07-09T03:18:00Z", "MetadataValues" : [{"ID" : 12571, "MetadataFieldID" : 4, "ItemValue" : "Data from the German chargepoint registry provided by Bundesnetzagentur.de under the CC-BY 4.0 license"}], "DataQualityLevel" : 3, "DateCreated" : "2021-07-08T10:00:00Z", "SubmissionStatusTypeID" : 100}
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "Postcode", "CountryID", "Latitude", "Longitude", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "MetadataValues": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "MetadataFieldID": {"type": "integer"}, "ItemValue": {"type": "string"}}, "required": ["ID", "MetadataFieldID", "ItemValue"]}}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "AddressInfo", "Connections", "StatusTypeID", "DateLastStatusUpdate", "MetadataValues", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"t" : "miketed", "h" : [{"d" : [{"f" : "\u5207\u65b7\uff0c\u54ac\u65b7\u3002", "e" : ["\ufff9`Mi~`keted~ `to~ `keliw~.\ufffa\ufffb\u54ac\u65b7\u7d30\u7dda\u3002", "\ufff9`Mi~`keted~ `to~ `ka~`e~`r~`e~`d~.\ufffa\ufffb\u5543\u65b7\u7e69\u5b50\u3002"]}]}], "stem" : "keted"}
json_instruct
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1308070004", "district_id" : "1308070", "name" : "KOTO BANGUN"}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "047581139de7fe5899f41571853a763d0e48e518"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"users": {"type": "integer"}, "id": {"type": "string"}}, "required": ["users", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"users" : 4, "id" : "IN-DN"}, {"users" : 6, "id" : "IN-AN"}, {"users" : 1180, "id" : "IN-AP"}, {"users" : 35, "id" : "IN-AR"}, {"users" : 1062, "id" : "IN-AS"}, {"users" : 1409, "id" : "IN-BR"}, {"users" : 4808, "id" : "IN-CH"}, {"users" : 526, "id" : "IN-CT"}, {"users" : 35528, "id" : "IN-DL"}, {"users" : 0, "id" : "IN-DNDD"}, {"users" : 1465, "id" : "IN-GA"}, {"users" : 6193, "id" : "IN-GJ"}, {"users" : 591, "id" : "IN-HP"}, {"users" : 2564, "id" : "IN-HR"}, {"users" : 890, "id" : "IN-JH"}, {"users" : 19, "id" : "IN-LK"}, {"users" : 4706, "id" : "IN-KA"}, {"users" : 6011, "id" : "IN-KL"}, {"users" : 2, "id" : "IN-LD"}, {"users" : 7129, "id" : "IN-MH"}, {"users" : 72, "id" : "IN-ML"}, {"users" : 86, "id" : "IN-MN"}, {"users" : 1141, "id" : "IN-MP"}, {"users" : 50, "id" : "IN-MZ"}, {"users" : 34, "id" : "IN-NL"}, {"users" : 1530, "id" : "IN-OR"}, {"users" : 4183, "id" : "IN-PB"}, {"users" : 327, "id" : "IN-PY"}, {"users" : 3368, "id" : "IN-RJ"}, {"users" : 135, "id" : "IN-SK"}, {"users" : 1512, "id" : "IN-TG"}, {"users" : 2674, "id" : "IN-TN"}, {"users" : 126, "id" : "IN-TR"}, {"users" : 2569, "id" : "IN-UP"}, {"users" : 703, "id" : "IN-UT"}, {"users" : 3012, "id" : "IN-WB"}, {"users" : 218, "id" : "IN-JK"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"users": {"type": "integer"}, "id": {"type": "string"}}, "required": ["users", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0xe3041ba812a72fc80c9ec9ac220a9bfe4d6f3d787d6ff6edcddc6b47ef13f526", "parentHash" : "0x1a7814fba183778c70837e7500ecfaf34c225200deb55e29cf7cf8f121e71185", "number" : 28959, "timestamp" : 1438634272, "nonce" : "0x72e2d84af8b2c665", "difficulty" : 1142495277748, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xbcB2E3693d246E1fc00348754334BadEb88b2a11", "extraData" : "0x476574682f76312e302e302f6c696e75782f676f312e342e32", "transactions" : []}
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"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"install": {"type": "string"}, "1.7.0": {"type": "string"}}, "required": ["install", "1.7.0"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"install" : "messages/install.org", "1.7.0" : "messages/1.7.0.org"}
json_instruct
{"type": "object", "properties": {"install": {"type": "string"}, "1.7.0": {"type": "string"}}, "required": ["install", "1.7.0"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "official_id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "school_type_entity": {"type": "string"}, "fax": {"type": "string"}, "state": {"type": "string"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "official_id", "address", "school_type", "school_type_entity", "fax", "state", "phone", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Gesamtschule Obersberg", "id" : "HE-9237-0", "official_id" : "9237", "address" : "Am Obersberg 25, 36251 Bad Hersfeld", "school_type" : "schulformbezogene (kooperative) Gesamtschule", "school_type_entity" : "Kooperative Gesamtschule", "fax" : "06621/9594268", "state" : "HE", "phone" : "06621/9594260", "full_time_school" : false, "lon" : 9.734511, "lat" : 50.873956}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "official_id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "school_type_entity": {"type": "string"}, "fax": {"type": "string"}, "state": {"type": "string"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "official_id", "address", "school_type", "school_type_entity", "fax", "state", "phone", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"sprite_sheets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "file": {"type": "string"}}, "required": ["name", "file"]}}, "animation_files": {"type": "array", "items": {"type": "string"}}, "sprites": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "sprite_sheet": {"type": "string"}, "animation": {"type": "string"}}, "required": ["name", "sprite_sheet", "animation"]}}}, "required": ["sprite_sheets", "animation_files", "sprites"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"sprite_sheets" : [{"name" : "particle1", "file" : "../assets/gfx/sprite_sheets/particle1.png"}, {"name" : "head1", "file" : "../assets/gfx/sprite_sheets/head1.png"}], "animation_files" : ["../assets/gfx/sprite_sheets/particle1_animation.json", "../assets/gfx/sprite_sheets/head1_animation.json"], "sprites" : [{"name" : "particle1", "sprite_sheet" : "particle1", "animation" : "particle1"}, {"name" : "head1", "sprite_sheet" : "head1", "animation" : "head1"}]}
json_instruct
{"type": "object", "properties": {"sprite_sheets": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "file": {"type": "string"}}, "required": ["name", "file"]}}, "animation_files": {"type": "array", "items": {"type": "string"}}, "sprites": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "sprite_sheet": {"type": "string"}, "animation": {"type": "string"}}, "required": ["name", "sprite_sheet", "animation"]}}}, "required": ["sprite_sheets", "animation_files", "sprites"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"source": {"type": "string"}, "otherSourceFiles": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}}, "required": ["source", "otherSourceFiles", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"source" : "ListRelatedFeatures.qml", "otherSourceFiles" : ["ListRelatedFeatures.h", "ListRelatedFeatures.cpp", "RelatedFeatureListModel.cpp", "RelatedFeatureListModel.h", "RelatedFeature.cpp", "RelatedFeature.h"], "name" : "List related features"}
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "otherSourceFiles": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}}, "required": ["source", "otherSourceFiles", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01012438": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01012438"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Topology", "objects" : {"E01012438" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00062737", "LAD11CD" : "E06000006"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00062739", "LAD11CD" : "E06000006"}, "arcs" : [[4, -1, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00062743", "LAD11CD" : "E06000006"}, "arcs" : [[-5, 6, 7, -2]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00062746", "LAD11CD" : "E06000006"}, "arcs" : [[-3, -8, 8]]}]}}, "arcs" : [[[8309, 9285], [-767, -2451], [259, -1160], [-582, -612]], [[7219, 5062], [-1458, 559], [-305, -633]], [[5456, 4988], [-1545, 149], [109, -510], [-550, -87], [6, 1260]], [[3476, 5800], [1795, 1553], [-212, 1991], [290, 655], [2960, -714]], [[7816, 4364], [-677, 308], [80, 390]], [[8309, 9285], [365, 34], [1092, -990], [233, -2276], [-1817, -1110], [-366, -579]], [[7816, 4364], [-935, -2140], [-928, -951]], [[5953, 1273], [-785, 582], [794, 1519], [-959, 410], [453, 1204]], [[5953, 1273], [-4066, -1273], [-1887, 1872], [1098, -108], [-86, 754], [860, 1189], [-628, 1428], [1546, 1641], [686, -976]]], "transform" : {"scale" : [1.08676175484899e-06, 6.495037871784495e-07], "translate" : [-2.673149363460944, 53.317774471330424]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01012438": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01012438"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"textures": {"type": "array", "items": {"type": "object", "properties": {"image": {"type": "string"}, "format": {"type": "string"}, "size": {"type": "object", "properties": {"w": {"type": "integer"}, "h": {"type": "integer"}}, "required": ["w", "h"]}, "scale": {"type": "integer"}, "frames": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "rotated": {"type": "boolean"}, "trimmed": {"type": "boolean"}, "sourceSize": {"type": "object", "properties": {"w": {"type": "integer"}, "h": {"type": "integer"}}, "required": ["w", "h"]}, "spriteSourceSize": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}}, "required": ["x", "y", "w", "h"]}, "frame": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}}, "required": ["x", "y", "w", "h"]}}, "required": ["filename", "rotated", "trimmed", "sourceSize", "spriteSourceSize", "frame"]}}}, "required": ["image", "format", "size", "scale", "frames"]}}, "meta": {"type": "object", "properties": {"app": {"type": "string"}, "version": {"type": "string"}, "smartupdate": {"type": "string"}}, "required": ["app", "version", "smartupdate"]}}, "required": ["textures", "meta"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"textures" : [{"image" : "bird.png", "format" : "RGBA8888", "size" : {"w" : 32, "h" : 56}, "scale" : 1, "frames" : [{"filename" : "bird-1", "rotated" : false, "trimmed" : true, "sourceSize" : {"w" : 30, "h" : 24}, "spriteSourceSize" : {"x" : 0, "y" : 0, "w" : 30, "h" : 17}, "frame" : {"x" : 1, "y" : 1, "w" : 30, "h" : 17}}, {"filename" : "bird-0", "rotated" : false, "trimmed" : true, "sourceSize" : {"w" : 30, "h" : 24}, "spriteSourceSize" : {"x" : 0, "y" : 5, "w" : 30, "h" : 14}, "frame" : {"x" : 1, "y" : 20, "w" : 30, "h" : 14}}, {"filename" : "bird-2", "rotated" : false, "trimmed" : true, "sourceSize" : {"w" : 30, "h" : 24}, "spriteSourceSize" : {"x" : 2, "y" : 5, "w" : 28, "h" : 19}, "frame" : {"x" : 1, "y" : 36, "w" : 28, "h" : 19}}]}], "meta" : {"app" : "https://www.codeandweb.com/texturepacker", "version" : "3.0", "smartupdate" : "$TexturePacker:SmartUpdate:110b59346d85f864f14eb3cb976e2138:0384fce547ad0c22cde264227da29f9b:6a1677158d465170d66e062b762d8e2a$"}}
json_instruct
{"type": "object", "properties": {"textures": {"type": "array", "items": {"type": "object", "properties": {"image": {"type": "string"}, "format": {"type": "string"}, "size": {"type": "object", "properties": {"w": {"type": "integer"}, "h": {"type": "integer"}}, "required": ["w", "h"]}, "scale": {"type": "integer"}, "frames": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "rotated": {"type": "boolean"}, "trimmed": {"type": "boolean"}, "sourceSize": {"type": "object", "properties": {"w": {"type": "integer"}, "h": {"type": "integer"}}, "required": ["w", "h"]}, "spriteSourceSize": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}}, "required": ["x", "y", "w", "h"]}, "frame": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}}, "required": ["x", "y", "w", "h"]}}, "required": ["filename", "rotated", "trimmed", "sourceSize", "spriteSourceSize", "frame"]}}}, "required": ["image", "format", "size", "scale", "frames"]}}, "meta": {"type": "object", "properties": {"app": {"type": "string"}, "version": {"type": "string"}, "smartupdate": {"type": "string"}}, "required": ["app", "version", "smartupdate"]}}, "required": ["textures", "meta"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["name", "image", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "PAPC #266", "image" : "https://ipfs.io/ipfs/QmZrvYQ1bJG2wCARPTwLMKuTHoqkspNdvc6xGTie1nnb2F/266.png", "attributes" : [{"trait_type" : "Fur", "value" : "Brown"}, {"trait_type" : "Head", "value" : "Cap"}, {"trait_type" : "Eyes", "value" : "3D Glasses"}, {"trait_type" : "Ears", "value" : "Earring Diamond"}, {"trait_type" : "Background", "value" : "Orange"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required": ["name", "image", "attributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"EGW": {"type": "string"}, "PHB": {"type": "string"}, "TCE": {"type": "string"}, "XGE": {"type": "string"}}, "required": ["EGW", "PHB", "TCE", "XGE"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"EGW" : "fluff-spell-egw.json", "PHB" : "fluff-spell-phb.json", "TCE" : "fluff-spell-tce.json", "XGE" : "fluff-spell-xge.json"}
json_instruct
{"type": "object", "properties": {"EGW": {"type": "string"}, "PHB": {"type": "string"}, "TCE": {"type": "string"}, "XGE": {"type": "string"}}, "required": ["EGW", "PHB", "TCE", "XGE"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "38b46938125eb45f9f4eefbd72b4f657f7813583"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"apiUrl": {"type": "string"}, "userName": {"type": "string"}, "password": {"type": "string"}, "responseType": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "nodeBody": {"type": "object", "properties": {"und": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "string"}, "summary": {"type": "string"}, "format": {"type": "string"}}, "required": ["value", "summary", "format"]}}}, "required": ["und"]}, "customFields": {"type": "object", "properties": {"%s(nodeCustFieldLabel)": {"type": "string"}}, "required": ["%s(nodeCustFieldLabel)"]}, "comment": {"type": "string"}}, "required": ["apiUrl", "userName", "password", "responseType", "title", "type", "nodeBody", "customFields", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"apiUrl" : "%s(apiUrl)", "userName" : "%s(userName)", "password" : "%s(password)", "responseType" : "%s(responseType)", "title" : "%s(nodeTitleOpt)", "type" : "%s(nodeTypeOpt)", "nodeBody" : {"und" : [{"value" : "%s(nodeBodyValue)", "summary" : "%s(nodeBodySummary)", "format" : "%s(nodeBodyFormat)"}]}, "customFields" : {"%s(nodeCustFieldLabel)" : "%s(nodeCustFieldValue)"}, "comment" : "%s(nodeComment)"}
json_instruct
{"type": "object", "properties": {"apiUrl": {"type": "string"}, "userName": {"type": "string"}, "password": {"type": "string"}, "responseType": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "nodeBody": {"type": "object", "properties": {"und": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "string"}, "summary": {"type": "string"}, "format": {"type": "string"}}, "required": ["value", "summary", "format"]}}}, "required": ["und"]}, "customFields": {"type": "object", "properties": {"%s(nodeCustFieldLabel)": {"type": "string"}}, "required": ["%s(nodeCustFieldLabel)"]}, "comment": {"type": "string"}}, "required": ["apiUrl", "userName", "password", "responseType", "title", "type", "nodeBody", "customFields", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"$type": {"type": "string"}, "Enabled": {"type": "boolean"}, "PrefixProjectToNodes": {"type": "boolean"}, "NodeBasePaths": {"type": "null"}, "ProcessorEnrichers": {"type": "null"}, "SourceName": {"type": "string"}, "TargetName": {"type": "string"}}, "required": ["$type", "Enabled", "PrefixProjectToNodes", "NodeBasePaths", "ProcessorEnrichers", "SourceName", "TargetName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"$type" : "TfsAreaAndIterationProcessorOptions", "Enabled" : false, "PrefixProjectToNodes" : false, "NodeBasePaths" : null, "ProcessorEnrichers" : null, "SourceName" : "sourceName", "TargetName" : "targetName"}
json_instruct
{"type": "object", "properties": {"$type": {"type": "string"}, "Enabled": {"type": "boolean"}, "PrefixProjectToNodes": {"type": "boolean"}, "NodeBasePaths": {"type": "null"}, "ProcessorEnrichers": {"type": "null"}, "SourceName": {"type": "string"}, "TargetName": {"type": "string"}}, "required": ["$type", "Enabled", "PrefixProjectToNodes", "NodeBasePaths", "ProcessorEnrichers", "SourceName", "TargetName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"department": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "fullname": {"type": "string"}, "number": {"type": "string"}, "section": {"type": "string"}, "semester": {"type": "string"}, "shortname": {"type": "string"}, "type": {"type": "string"}, "year": {"type": "string"}}, "required": ["department", "description", "fullname", "number", "section", "semester", "shortname", "type", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"department" : "ESTH", "description" : ["This course presents the fundamental principles of exercise testing and prescription for", "both healthy and special needs individuals. Students explore techniques for assessing", "fitness and prescribing exercise using a variety of ergometers for improvement of health", "fitness parameters. Students also utilize case studies and laboratory experiences. Topics", "include health/medical histories, submaximal graded exercise testing, and assessment of", "strength, flexibility, pulmonary functions, and body composition. Offered annually. Also counts", "toward management studies concentration.", "Prerequisites: senior exercise science major; BIO 143, BIO 243 and ESTH 375."], "fullname" : "Fitness Assessment and Exercise Prescription", "number" : "376", "section" : "", "semester" : "3", "shortname" : "Exercise Prescription", "type" : "R", "year" : "2021"}
json_instruct
{"type": "object", "properties": {"department": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "fullname": {"type": "string"}, "number": {"type": "string"}, "section": {"type": "string"}, "semester": {"type": "string"}, "shortname": {"type": "string"}, "type": {"type": "string"}, "year": {"type": "string"}}, "required": ["department", "description", "fullname", "number", "section", "semester", "shortname", "type", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "CRISTINA ALINA", "frequency" : 87, "gender" : "female"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xe6938b7e5b03e0e29cb7781f76d258404714863b", "tool" : "osiris", "start" : 1564589274.6580617, "end" : 1564589277.4143658, "duration" : 2.7563040256500244, "analysis" : []}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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#"}
[{"name" : "IANCU", "frequency" : 94, "males" : "98.93617021276596 %", "females" : "1.0638297872340425 %"}]
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#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "id": {"type": "string"}}, "required": ["title", "author", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"title" : "Calendar 1926", "author" : "University of Calcutta.", "id" : "000541626"}, {"title" : "Calendar University of Allahabad 1926", "author" : "University of Allahabad.", "id" : "005397867"}, {"title" : "Examination papers 1926", "author" : "University of Bombay.", "id" : "000503239"}, {"title" : "The university code ... 1925-1926", "author" : "University of Delhi.", "id" : "002133507"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "id": {"type": "string"}}, "required": ["title", "author", "id"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"Araure": {"type": "string"}, "El Playon": {"type": "string"}, "Ocumare": {"type": "string"}, "Puerto Piritu": {"type": "string"}}, "required": ["Araure", "El Playon", "Ocumare", "Puerto Piritu"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Araure" : "AUR", "El Playon" : "EPY", "Ocumare" : "OCU", "Puerto Piritu" : "PPT"}
json_instruct
{"type": "object", "properties": {"Araure": {"type": "string"}, "El Playon": {"type": "string"}, "Ocumare": {"type": "string"}, "Puerto Piritu": {"type": "string"}}, "required": ["Araure", "El Playon", "Ocumare", "Puerto Piritu"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["513224215200", "\u9ebb\u4f9d\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513224215201", "\u5c71\u5df4\u6751\u6c11\u59d4\u5458\u4f1a", "210", "0"], ["513224215202", "\u4e0a\u78e8\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513224215203", "\u957f\u6c9f\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513224215204", "\u89c1\u57f9\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1503030013", "district_id" : "1503030", "name" : "PULAU ARO"}
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#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"_guid_": {"type": "string"}, "id": {"type": "string"}, "value": {"type": "object", "properties": {"ToTimestamp": {"type": "string"}, "FromTimestamp": {"type": "string"}, "OrganisationName": {"type": "null"}, "OrganisationAddress": {"type": "object", "properties": {}, "required": []}}, "required": ["ToTimestamp", "FromTimestamp", "OrganisationName", "OrganisationAddress"]}}, "required": ["_guid_", "id", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_guid_" : "F-206_PreviousOrganisations", "id" : "18000951-fa61-4bba-aecb-66aed2bd6b90", "value" : {"ToTimestamp" : "2021-01-10T12:00:00.12345", "FromTimestamp" : "2021-01-10T12:00:00.12345", "OrganisationName" : null, "OrganisationAddress" : {}}}
json_instruct
{"type": "object", "properties": {"_guid_": {"type": "string"}, "id": {"type": "string"}, "value": {"type": "object", "properties": {"ToTimestamp": {"type": "string"}, "FromTimestamp": {"type": "string"}, "OrganisationName": {"type": "null"}, "OrganisationAddress": {"type": "object", "properties": {}, "required": []}}, "required": ["ToTimestamp", "FromTimestamp", "OrganisationName", "OrganisationAddress"]}}, "required": ["_guid_", "id", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "Necropolis", "definitions" : ["A cemetery, especially a large one belonging to an ancient city."], "parts-of-speech" : "Noun"}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ast" : null, "code" : "\"use strict\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _createSvgIcon = _interopRequireDefault(require(\"./utils/createSvgIcon\"));\n\nvar _default = (0, _createSvgIcon.default)(_react.default.createElement(_react.default.Fragment, null, _react.default.createElement(\"path\", {\n fill: \"none\",\n d: \"M0 0h24v24H0V0z\"\n}), _react.default.createElement(\"g\", null, _react.default.createElement(\"path\", {\n d: \"M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95 0 1.22.99 2.2 2.2 2.2s2.2-.98 2.2-2.2c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z\"\n}))), 'UsbOutlined');\n\nexports.default = _default;", "map" : null, "metadata" : {}, "sourceType" : "script"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "keywords": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}}, "required": ["id", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 100, "keywords" : [{"id" : 1992, "name" : "super hero"}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "keywords": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}}, "required": ["id", "keywords"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"value_locale": {"type": "string"}, "segment": {"type": "string"}, "noSlidesAvailable": {"type": "string"}, "slide_text": {"type": "string"}}, "required": ["value_locale", "segment", "noSlidesAvailable", "slide_text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"value_locale" : "de", "segment" : "Segment", "noSlidesAvailable" : "Keine Folien verf\u00fcgbar.", "slide_text" : "Folientext"}
json_instruct
{"type": "object", "properties": {"value_locale": {"type": "string"}, "segment": {"type": "string"}, "noSlidesAvailable": {"type": "string"}, "slide_text": {"type": "string"}}, "required": ["value_locale", "segment", "noSlidesAvailable", "slide_text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"limit" : 2, "name" : "Blue dragon mask", "value" : 900, "highalch" : 540, "id" : 19284, "lowalch" : 360, "name_pt" : "M\u00e1scara de drag\u00e3o azul", "price" : 1584158, "last" : 1584158}
json_instruct
{"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "species": {"type": "string"}, "attack": {"type": "string"}, "defense": {"type": "string"}, "attribute": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "is_xyz": {"type": "boolean"}, "is_synchro": {"type": "boolean"}, "is_fusion": {"type": "boolean"}, "is_link": {"type": "boolean"}, "is_extra_deck": {"type": "boolean"}, "monster_types": {"type": "array", "items": {"type": "string"}}, "stars": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "species", "attack", "defense", "attribute", "is_pendulum", "is_xyz", "is_synchro", "is_fusion", "is_link", "is_extra_deck", "monster_types", "stars"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Metaphys Daedalus", "number" : "45960523", "is_illegal" : false, "text" : "If this card is Special Summoned by the effect of a \"Metaphys\" monster: You can banish all other face-up Special Summoned monsters on the field. If this card is banished, during the Standby Phase of the next turn: You can shuffle this banished card into the Deck; banish 1 \"Metaphys\" card from your Deck, except \"Metaphys Daedalus\".", "type" : "Monster", "is_monster" : true, "is_spell" : false, "is_trap" : false, "species" : "Wyrm", "attack" : "2600", "defense" : "1500", "attribute" : "LIGHT", "is_pendulum" : false, "is_xyz" : false, "is_synchro" : false, "is_fusion" : false, "is_link" : false, "is_extra_deck" : false, "monster_types" : ["Effect"], "stars" : "7"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "number": {"type": "string"}, "is_illegal": {"type": "boolean"}, "text": {"type": "string"}, "type": {"type": "string"}, "is_monster": {"type": "boolean"}, "is_spell": {"type": "boolean"}, "is_trap": {"type": "boolean"}, "species": {"type": "string"}, "attack": {"type": "string"}, "defense": {"type": "string"}, "attribute": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "is_xyz": {"type": "boolean"}, "is_synchro": {"type": "boolean"}, "is_fusion": {"type": "boolean"}, "is_link": {"type": "boolean"}, "is_extra_deck": {"type": "boolean"}, "monster_types": {"type": "array", "items": {"type": "string"}}, "stars": {"type": "string"}}, "required": ["name", "number", "is_illegal", "text", "type", "is_monster", "is_spell", "is_trap", "species", "attack", "defense", "attribute", "is_pendulum", "is_xyz", "is_synchro", "is_fusion", "is_link", "is_extra_deck", "monster_types", "stars"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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://json-schema.org/draft-07/schema#"}
{"title" : "MMD \u6975\u697d\u6d44\u571f AB5\uff08modify1.09\uff09", "author" : "yy512", "description" : "NULL", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/178562/thumbnail-178562_0001.jpg?itok=CQgSDLKW", "download" : "https://www.iwara.tv/api/video/yrkaahjkvoi0jvavw", "origin" : "https://www.iwara.tv/videos/yrkaahjkvoi0jvavw"}
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://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Steinhammerschule St\u00e4dt. Gem. Grundschule Marten - Primarstufe -", "id" : "NRW-129150", "address" : "Schulte-Heuthaus-Str. 28, 44379 Dortmund", "school_type" : "Grundschule", "fax" : "0231 28672966", "phone" : "0231 28672960", "website" : "", "email" : " 129150@schule.nrw.de ", "state" : "NRW", "programs" : {"programs" : []}, "full_time_school" : false, "lon" : 7.38524, "lat" : 51.508046}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["In a food processor or blender, process undrained peppers with chicken broth, garlic, oregano, and basil until smooth.", "Transfer liquid to a saucepan, and heat over medium-low heat. Simmer for 5 minutes. Slowly whisk in cream, and heat through.", "Serve in soup bowls over crumbled feta cheese. Sprinkle additional feta cheese and oregano on top for garnish."], "ingredients" : ["1 (12 ounce) jar roasted red bell peppers", "1 (13.75 ounce) can low-sodium chicken broth", "1 teaspoon minced garlic", "3/4 teaspoon dried oregano", "1/8 teaspoon dried basil", "1 cup heavy cream", "1/2 cup crumbled feta cheese"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Red Pepper Soup with Feta Cheese", "url" : "http://allrecipes.com/recipe/68281/red-pepper-soup-with-feta-cheese/"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"visualRange": {"type": "string"}}, "required": ["visualRange"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"visualRange" : "0,1"}
json_instruct
{"type": "object", "properties": {"visualRange": {"type": "string"}}, "required": ["visualRange"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"build_from": {"type": "object", "properties": {"aarch64": {"type": "string"}, "amd64": {"type": "string"}, "armhf": {"type": "string"}, "i386": {"type": "string"}}, "required": ["aarch64", "amd64", "armhf", "i386"]}, "args": {"type": "object", "properties": {}, "required": []}}, "required": ["build_from", "args"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"build_from" : {"aarch64" : "hassioaddons/ubuntu-base-aarch64:2.2.1", "amd64" : "hassioaddons/ubuntu-base-amd64:2.2.1", "armhf" : "hassioaddons/ubuntu-base-armhf:2.2.1", "i386" : "hassioaddons/ubuntu-base-i386:2.2.1"}, "args" : {}}
json_instruct
{"type": "object", "properties": {"build_from": {"type": "object", "properties": {"aarch64": {"type": "string"}, "amd64": {"type": "string"}, "armhf": {"type": "string"}, "i386": {"type": "string"}}, "required": ["aarch64", "amd64", "armhf", "i386"]}, "args": {"type": "object", "properties": {}, "required": []}}, "required": ["build_from", "args"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "dev", "build", "test"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/ol": {"type": "string"}, "class-transformer": {"type": "string"}, "class-validator": {"type": "string"}, "lodash": {"type": "string"}, "ol": {"type": "string"}, "onchange": {"type": "string"}, "reflect-metadata": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/ol", "class-transformer", "class-validator", "lodash", "ol", "onchange", "reflect-metadata", "typescript"]}, "devDependencies": {"type": "object", "properties": {"@types/lodash": {"type": "string"}, "clean-webpack-plugin": {"type": "string"}, "ts-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@types/lodash", "clean-webpack-plugin", "ts-loader", "webpack", "webpack-cli", "webpack-dev-server"]}, "map": {"type": "object", "properties": {"class-transformer": {"type": "string"}}, "required": ["class-transformer"]}, "packages": {"type": "object", "properties": {"class-transformer": {"type": "object", "properties": {"main": {"type": "string"}, "defaultExtension": {"type": "string"}}, "required": ["main", "defaultExtension"]}}, "required": ["class-transformer"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies", "map", "packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "typescript", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"start" : "tsc -w", "dev" : "webpack-dev-server", "build" : "webpack --config webpack.config.prod.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : [], "author" : "", "license" : "ISC", "dependencies" : {"@types/ol" : "^6.1.0", "class-transformer" : "^0.2.3", "class-validator" : "^0.11.0", "lodash" : "^4.17.15", "ol" : "^6.2.1", "onchange" : "^6.1.0", "reflect-metadata" : "^0.1.13", "typescript" : "3.4.3"}, "devDependencies" : {"@types/lodash" : "^4.14.149", "clean-webpack-plugin" : "^3.0.0", "ts-loader" : "^6.2.1", "webpack" : "^4.42.0", "webpack-cli" : "^3.3.11", "webpack-dev-server" : "^3.10.3"}, "map" : {"class-transformer" : "node_modules/class-transformer"}, "packages" : {"class-transformer" : {"main" : "index.js", "defaultExtension" : "js"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "dev", "build", "test"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@types/ol": {"type": "string"}, "class-transformer": {"type": "string"}, "class-validator": {"type": "string"}, "lodash": {"type": "string"}, "ol": {"type": "string"}, "onchange": {"type": "string"}, "reflect-metadata": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/ol", "class-transformer", "class-validator", "lodash", "ol", "onchange", "reflect-metadata", "typescript"]}, "devDependencies": {"type": "object", "properties": {"@types/lodash": {"type": "string"}, "clean-webpack-plugin": {"type": "string"}, "ts-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@types/lodash", "clean-webpack-plugin", "ts-loader", "webpack", "webpack-cli", "webpack-dev-server"]}, "map": {"type": "object", "properties": {"class-transformer": {"type": "string"}}, "required": ["class-transformer"]}, "packages": {"type": "object", "properties": {"class-transformer": {"type": "object", "properties": {"main": {"type": "string"}, "defaultExtension": {"type": "string"}}, "required": ["main", "defaultExtension"]}}, "required": ["class-transformer"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies", "map", "packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"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_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "another option is vmware with a linux image.\n\n\nbut my vote, preference, soul (and pocket) goes the Mac OS X way...\nI would not be using radiance without a mac. \nlife is short and it is once, why suffering?\n\n\nG\n\n\nOn 16 Jun 2011, at 19:05, Lars O. Grobe wrote:\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2011-June/007919.html).</sup>", "attachments" : [], "created_by_name" : "Giugi", "created_at" : "June 16, 2011 at 11:39AM", "created_by" : "Giugi", "parent_id" : "radiance-general_007914", "id" : "radiance-general_007919"}
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_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "codemirror": {"type": "string"}, "bootstrap": {"type": "string"}, "x-editable": {"type": "string"}, "json2": {"type": "string"}, "d3": {"type": "string"}, "js-beautify": {"type": "string"}, "jsplumb": {"type": "string"}, "jquery-ui": {"type": "string"}, "requirejs": {"type": "string"}}, "required": ["jquery", "codemirror", "bootstrap", "x-editable", "json2", "d3", "js-beautify", "jsplumb", "jquery-ui", "requirejs"]}}, "required": ["name", "homepage", "authors", "description", "main", "keywords", "license", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "pyflow", "homepage" : "https://github.com/gangtao/pyflow", "authors" : ["Gang Tao <gang.tao@outlook.com>"], "description" : "", "main" : "", "keywords" : ["pyflow"], "license" : "MIT", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"jquery" : "^3.1.1", "codemirror" : "^5.22.2", "bootstrap" : "^3.3.7", "x-editable" : "^1.5.1", "json2" : "*", "d3" : "*", "js-beautify" : "*", "jsplumb" : "^2.3.2", "jquery-ui" : "^1.12.1", "requirejs" : "~2.1.22"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "codemirror": {"type": "string"}, "bootstrap": {"type": "string"}, "x-editable": {"type": "string"}, "json2": {"type": "string"}, "d3": {"type": "string"}, "js-beautify": {"type": "string"}, "jsplumb": {"type": "string"}, "jquery-ui": {"type": "string"}, "requirejs": {"type": "string"}}, "required": ["jquery", "codemirror", "bootstrap", "x-editable", "json2", "d3", "js-beautify", "jsplumb", "jquery-ui", "requirejs"]}}, "required": ["name", "homepage", "authors", "description", "main", "keywords", "license", "ignore", "dependencies"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"km": {"type": "string"}}, "required": ["km"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "exclude_files": {"type": "string"}, "frameworks": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "source_files", "exclude_files", "frameworks", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "KMNavTransition", "version" : "1.0.0", "summary" : "\u8ba9\u4f60\u7684\u5bfc\u822a\u680f\u652f\u6301\u6e10\u53d8\u8fc7\u6e21", "description" : "\u8ba9\u4f60\u7684\u5bfc\u822a\u680f\u652f\u6301\u6e10\u53d8\u8fc7\u6e21, \u652f\u6301\u900f\u660e\u5ea6\u6e10\u53d8\u548c\u989c\u8272\u6e10\u53d8, \u4f7f\u7528\u7684\u5c31\u662f\u7cfb\u7edf\u7684NavigationBar, \u62e5\u6709\u7cfb\u7edf\u81ea\u5e26\u8fc7\u6e21\u7684\u5176\u4ed6\u7279\u6027\u3002", "homepage" : "https://github.com/hkm5558/KMNavTransition", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"km" : "15112600181@163.com"}, "platforms" : {"ios" : "9.0"}, "source" : {"git" : "https://github.com/hkm5558/KMNavTransition.git", "tag" : "1.0.0"}, "source_files" : ["KMNavTransition", "KMNavTransition/**/*.{h,m}"], "exclude_files" : "KMNavTransition/Exclude", "frameworks" : "UIKit", "requires_arc" : true}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"km": {"type": "string"}}, "required": ["km"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "exclude_files": {"type": "string"}, "frameworks": {"type": "string"}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "platforms", "source", "source_files", "exclude_files", "frameworks", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Vadim Yelagin": {"type": "string"}}, "required": ["Vadim Yelagin"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}, "resource_bundles": {"type": "object", "properties": {}, "required": []}, "public_header_files": {"type": "string"}, "frameworks": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"ReactiveCocoa": {"type": "array", "items": {"type": "string"}}}, "required": ["ReactiveCocoa"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "requires_arc", "source_files", "resource_bundles", "public_header_files", "frameworks", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ETRCollectionModel", "version" : "0.1.0", "summary" : "MVVM for iOS tables and collections.", "description" : " ETRCollectionModel\n MVVM for iOS tables and collections.\n", "homepage" : "https://github.com/Vadim-Yelagin/ETRCollectionModel", "license" : "MIT", "authors" : {"Vadim Yelagin" : "vadim.yelagin@gmail.com"}, "source" : {"git" : "https://github.com/Vadim-Yelagin/ETRCollectionModel.git", "tag" : "0.1.0"}, "platforms" : {"ios" : "6.0"}, "requires_arc" : true, "source_files" : "Pod/Classes/**/*", "resource_bundles" : {}, "public_header_files" : "Pod/Classes/**/*.h", "frameworks" : ["UIKit", "CoreData"], "dependencies" : {"ReactiveCocoa" : ["~> 2.3"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Vadim Yelagin": {"type": "string"}}, "required": ["Vadim Yelagin"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}, "source_files": {"type": "string"}, "resource_bundles": {"type": "object", "properties": {}, "required": []}, "public_header_files": {"type": "string"}, "frameworks": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"ReactiveCocoa": {"type": "array", "items": {"type": "string"}}}, "required": ["ReactiveCocoa"]}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "requires_arc", "source_files", "resource_bundles", "public_header_files", "frameworks", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "tradeable": {"type": "boolean"}, "stackable": {"type": "boolean"}, "noteable": {"type": "boolean"}, "equipable": {"type": "boolean"}, "tradeable_ge": {"type": "boolean"}, "icon": {"type": "string"}, "wiki_url": {"type": "string"}}, "required": ["id", "name", "qualified_name", "examine", "members", "release_date", "quest", "weight", "value", "tradeable", "stackable", "noteable", "equipable", "tradeable_ge", "icon", "wiki_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 7951, "name" : "Herman's book", "qualified_name" : "Herman's book", "examine" : "A book taken from the desk of Herman Caranos.", "members" : true, "release_date" : "2006-05-02", "quest" : true, "weight" : 1.814, "value" : 1, "tradeable" : false, "stackable" : false, "noteable" : false, "equipable" : false, "tradeable_ge" : false, "icon" : "iVBORw0KGgoAAAANSUhEUgAAACQAAAAgCAYAAAB6kdqOAAACXUlEQVR4Xu3WQWsTURDA8bxv4MlLL7kVCkIoSCilYBCRUOlFEXootIgikoOKUhSVVqUHS2jxQwjtpVYapSaS1tj20A818n/LbKcvMW2yT7sHB4YNYdn325nZ3Vco/I/o4STJXIST+7NXZeHueF5QTh7OlfOEclKbn8gTysmTe5MZUFHnz8nioyl59mCyD6p/cv5UuRgL5eRl7VqKajY/pwlq7nbJH1kULGjO43ybXKdULPoMVxgwnLx+XElRFhTiLMomaAWFVx8inCw9ve5R/UA2bWvBlEsjsUDJDACiQrSChaiGZojRCoFhxkpjl9NZyghy8u75jRRDdXQhHWodbNK2jFTM6upbX6XBnsquOMFoq2wbLKgXimO1Muoxa2srHqRP2RBVOo2xrbKgXigF8btefy+zM1e6ZmhAUDIvFmOrE6J6gUgwQAD9FYxmCApRigFC6kAPjQFiMfp2DkF/QlElIHemx7JgiJOXn2IUNAgKCDlavJQFQyTfK0VwDJ+yfjAwzEwkDOHSBakQmPU301J/VZUPL6qysnjT/9ernfpU0apIGCLZXnCn3DGLsTAVOj7unMKR2lqS83nnZJyZMJItAihtmQ64VuXoqC0fl2/5pGJku92Q77tb0mhs+gopKLz6EJFsMVic1lAFXVj/J8Hu7X2VX52mHB7+kIODluzvf5NW60v6aYgEIro3ViQ4kArTdxOVAQKw83PXD3RkUKGg/bepMPuhJXWgt7c/yc7ORsz5OTssTCvF0W5HolfnPGFh+iRqCy8EpGFhVAjUhYI0LOyfzc95IleYWPEbD+SIOWJikrYAAAAASUVORK5CYII=", "wiki_url" : "https://oldschool.runescape.wiki/w/Herman's_book"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "tradeable": {"type": "boolean"}, "stackable": {"type": "boolean"}, "noteable": {"type": "boolean"}, "equipable": {"type": "boolean"}, "tradeable_ge": {"type": "boolean"}, "icon": {"type": "string"}, "wiki_url": {"type": "string"}}, "required": ["id", "name", "qualified_name", "examine", "members", "release_date", "quest", "weight", "value", "tradeable", "stackable", "noteable", "equipable", "tradeable_ge", "icon", "wiki_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"localities" : ["Daniels, MD", "Ilchester, MD", "Ellicott City, MD", "Oella, MD", "Ellicott, MD"], "state" : "MD", "postal_code" : "21043", "locality" : "Ellicott City, MD", "lat" : 39.255836, "region" : {"fips" : "24", "abbr" : "MD", "name" : "Maryland"}, "city" : "Ellicott City", "type" : "STANDARD", "lng" : -76.801491, "counties" : [{"fips" : "005", "name" : "Baltimore County"}, {"fips" : "027", "name" : "Howard County"}]}
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$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"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "babel": {"type": "object", "properties": {"presets": {"type": "array", "items": {"type": "string"}}}, "required": ["presets"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-env": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-stage-2": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-preset-env", "babel-preset-es2015", "babel-preset-stage-2", "webpack", "webpack-cli", "webpack-dev-server"]}}, "required": ["name", "version", "main", "repository", "author", "license", "scripts", "babel", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "yarn-esx", "version" : "1.0.0", "main" : "index.js", "repository" : "git@github.com:guangie88/yarn-esx.git", "author" : "Chen Weiguang <chen.weiguang@gmail.com>", "license" : "MIT", "scripts" : {"start" : "webpack-dev-server --config ./webpack.config.js --mode development"}, "babel" : {"presets" : ["env", "stage-2"]}, "devDependencies" : {"babel-core" : "^6.26.3", "babel-loader" : "^7.1.5", "babel-preset-env" : "^1.7.0", "babel-preset-es2015" : "^6.24.1", "babel-preset-stage-2" : "^6.24.1", "webpack" : "^4.16.5", "webpack-cli" : "^3.1.0", "webpack-dev-server" : "^3.1.5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "babel": {"type": "object", "properties": {"presets": {"type": "array", "items": {"type": "string"}}}, "required": ["presets"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-env": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-stage-2": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-preset-env", "babel-preset-es2015", "babel-preset-stage-2", "webpack", "webpack-cli", "webpack-dev-server"]}}, "required": ["name", "version", "main", "repository", "author", "license", "scripts", "babel", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id_2745": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_2745"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id_2745" : {"title" : "Richard I", "language" : "English", "totaltime" : "6:26:36", "url_librivox" : "http://librivox.org/richard-i-by-jacob-abbott/", "url_iarchive" : "http://www.archive.org/details/richard_first_0902_librivox", "readers" : ["1401", "1841", "2481", "2825", "3263", "3370", "3397"], "authors" : "699", "genres" : "General"}}
json_instruct
{"type": "object", "properties": {"id_2745": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_2745"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"readable-stream": {"type": "string"}}, "required": ["readable-stream"]}, "devDependencies": {"type": "object", "properties": {"tape": {"type": "string"}, "through": {"type": "string"}}, "required": ["tape", "through"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "testling": {"type": "object", "properties": {"files": {"type": "string"}, "browsers": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "browsers"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "testling", "repository", "homepage", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "time-window-stream", "version" : "0.1.0", "description" : "concatenate all data chunks that fall within a time window", "main" : "index.js", "dependencies" : {"readable-stream" : "~1.0.2"}, "devDependencies" : {"tape" : "~1.0.4", "through" : "~2.3.4"}, "scripts" : {"test" : "tape test/*.js"}, "testling" : {"files" : "test/*.js", "browsers" : ["ie/8..latest", "chrome/latest", "ff/latest", "opera/latest", "safari/latest"]}, "repository" : {"type" : "git", "url" : "git://github.com/substack/time-window-stream.git"}, "homepage" : "https://github.com/substack/time-window-stream", "keywords" : ["windowed", "concat", "stream", "timeout", "through"], "author" : {"name" : "James Halliday", "email" : "mail@substack.net", "url" : "http://substack.net"}, "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"readable-stream": {"type": "string"}}, "required": ["readable-stream"]}, "devDependencies": {"type": "object", "properties": {"tape": {"type": "string"}, "through": {"type": "string"}}, "required": ["tape", "through"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "testling": {"type": "object", "properties": {"files": {"type": "string"}, "browsers": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "browsers"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "testling", "repository", "homepage", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "group": {"type": "string"}, "method": {"type": "string"}, "dataUrl": {"type": "string"}}, "required": ["_id", "name", "group", "method", "dataUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "57b21331cd697cd9095bf995", "name" : "Parlamentarni kompas", "group" : "c", "method" : "kompas", "dataUrl" : "https://analize.parlameter.si/v1/p/getCompass"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "group": {"type": "string"}, "method": {"type": "string"}, "dataUrl": {"type": "string"}}, "required": ["_id", "name", "group", "method", "dataUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"chromedriver": {"type": "string"}, "eslint": {"type": "string"}, "nightwatch": {"type": "string"}}, "required": ["chromedriver", "eslint", "nightwatch"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "stackblitz", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "nightwatch test/ --env browserstack.chrome"}, "repository" : {"type" : "git", "url" : "git+https://github.com/beatfactor/nightwatch-stackblitz.git"}, "keywords" : [], "author" : "", "license" : "MIT", "bugs" : {"url" : "https://github.com/beatfactor/nightwatch-stackblitz/issues"}, "homepage" : "https://github.com/beatfactor/nightwatch-stackblitz#readme", "devDependencies" : {"chromedriver" : "^96.0.0", "eslint" : "^8.6.0", "nightwatch" : "^2.0.0-beta.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"chromedriver": {"type": "string"}, "eslint": {"type": "string"}, "nightwatch": {"type": "string"}}, "required": ["chromedriver", "eslint", "nightwatch"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"packages": {"type": "object", "properties": {"wpackagist-plugin/add-google-plus-one-social-share-button": {"type": "object", "properties": {"1.0.0": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "dist", "source", "homepage", "require", "type"]}, "dev-trunk": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "time": {"type": "string"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "time", "dist", "source", "homepage", "require", "type"]}}, "required": ["1.0.0", "dev-trunk"]}}, "required": ["wpackagist-plugin/add-google-plus-one-social-share-button"]}}, "required": ["packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"packages" : {"wpackagist-plugin/add-google-plus-one-social-share-button" : {"1.0.0" : {"name" : "wpackagist-plugin/add-google-plus-one-social-share-button", "version" : "1.0.0", "version_normalized" : "1.0.0.0", "uid" : 7101, "dist" : {"type" : "zip", "url" : "https://downloads.wordpress.org/plugin/add-google-plus-one-social-share-button.1.0.0.zip"}, "source" : {"type" : "svn", "url" : "https://plugins.svn.wordpress.org/add-google-plus-one-social-share-button/", "reference" : "tags/1.0.0"}, "homepage" : "https://wordpress.org/plugins/add-google-plus-one-social-share-button/", "require" : {"composer/installers" : "~1.0"}, "type" : "wordpress-plugin"}, "dev-trunk" : {"name" : "wpackagist-plugin/add-google-plus-one-social-share-button", "version" : "dev-trunk", "version_normalized" : "9999999-dev", "uid" : 7102, "time" : "2011-07-07 18:40:32", "dist" : {"type" : "zip", "url" : "https://downloads.wordpress.org/plugin/add-google-plus-one-social-share-button.zip?timestamp=1310064032"}, "source" : {"type" : "svn", "url" : "https://plugins.svn.wordpress.org/add-google-plus-one-social-share-button/", "reference" : "trunk"}, "homepage" : "https://wordpress.org/plugins/add-google-plus-one-social-share-button/", "require" : {"composer/installers" : "~1.0"}, "type" : "wordpress-plugin"}}}}
json_instruct
{"type": "object", "properties": {"packages": {"type": "object", "properties": {"wpackagist-plugin/add-google-plus-one-social-share-button": {"type": "object", "properties": {"1.0.0": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "dist", "source", "homepage", "require", "type"]}, "dev-trunk": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "time": {"type": "string"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "time", "dist", "source", "homepage", "require", "type"]}}, "required": ["1.0.0", "dev-trunk"]}}, "required": ["wpackagist-plugin/add-google-plus-one-social-share-button"]}}, "required": ["packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "string"}, "pkg": {"type": "object", "properties": {"assets": {"type": "array", "items": {"type": "string"}}}, "required": ["assets"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "csv": {"type": "string"}, "single": {"type": "string"}, "generate_metadata": {"type": "string"}, "update_metadata": {"type": "string"}, "s": {"type": "string"}, "db": {"type": "string"}}, "required": ["build", "csv", "single", "generate_metadata", "update_metadata", "s", "db"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"canvas": {"type": "string"}, "gif-encoder-2": {"type": "string"}, "prettier": {"type": "string"}, "sha1": {"type": "string"}, "sqlite3": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["canvas", "gif-encoder-2", "prettier", "sha1", "sqlite3", "ts-node", "typescript"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/sha1": {"type": "string"}, "@types/sqlite3": {"type": "string"}}, "required": ["@types/node", "@types/sha1", "@types/sqlite3"]}}, "required": ["name", "version", "description", "main", "bin", "pkg", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "nft_images_generator", "version" : "1.1.1", "description" : "NFT images generator", "main" : "index.ts", "bin" : "index.ts", "pkg" : {"assets" : ["layers/**/*", "node_modules/**/*", "src/**/*"]}, "scripts" : {"build" : "ts-node index.ts", "csv" : "ts-node src/csv.ts", "single" : "ts-node utils/create_single.ts", "generate_metadata" : "node utils/generate_metadata.js", "update_metadata" : "ts-node utils/update_metadata.ts", "s" : "ts-node utils/collection_exclude.ts", "db" : "ts-node utils/db.ts"}, "author" : "Andrey cvetkov (Mangus232)", "license" : "MIT", "dependencies" : {"canvas" : "^2.9.1", "gif-encoder-2" : "^1.0.5", "prettier" : "^2.5.1", "sha1" : "^1.1.1", "sqlite3" : "^5.0.2", "ts-node" : "^10.5.0", "typescript" : "^4.5.5"}, "devDependencies" : {"@types/node" : "^17.0.16", "@types/sha1" : "^1.1.3", "@types/sqlite3" : "^3.1.8"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "string"}, "pkg": {"type": "object", "properties": {"assets": {"type": "array", "items": {"type": "string"}}}, "required": ["assets"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "csv": {"type": "string"}, "single": {"type": "string"}, "generate_metadata": {"type": "string"}, "update_metadata": {"type": "string"}, "s": {"type": "string"}, "db": {"type": "string"}}, "required": ["build", "csv", "single", "generate_metadata", "update_metadata", "s", "db"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"canvas": {"type": "string"}, "gif-encoder-2": {"type": "string"}, "prettier": {"type": "string"}, "sha1": {"type": "string"}, "sqlite3": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["canvas", "gif-encoder-2", "prettier", "sha1", "sqlite3", "ts-node", "typescript"]}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "@types/sha1": {"type": "string"}, "@types/sqlite3": {"type": "string"}}, "required": ["@types/node", "@types/sha1", "@types/sqlite3"]}}, "required": ["name", "version", "description", "main", "bin", "pkg", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"t" : "sakamoli'", "h" : [{"d" : [{"f" : "\u5b30\u5152\u5410\u5976\u7684\u539f\u56e0\u3002", "e" : ["\ufff9`Pakinali~ `to~ `ko~ `fecol~ `na~ `wawa~ `iso~, `oya~ `to~ `ko~ `saka~`moli'~ `nira~.\ufffa\ufffb\u4f60\u7684\u5b69\u5b50\u904e\u98fd\u4e86\uff0c\u6240\u4ee5\u5410\u5976\u3002"]}]}], "stem" : "moli'"}
json_instruct
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "version", "license", "main", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "lowladb", "description" : "The LowlaDB client library for modern browsers.", "version" : "0.1.0", "license" : "MIT", "main" : "dist/lowladb.js", "ignore" : ["src", "tests", ".gitignore", ".travis.yml", "Gruntfile.js", "karma.conf.js", "package.json"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "version", "license", "main", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Preheat oven to 350 degrees F (175 degrees C).", "Prick the ham with a fork. Place the pineapple slices on the ham, securing with toothpicks. Press the cloves into the ham. Place the ham in a baking dish with the water.", "In a saucepan over low heat, melt the butter, and mix in the syrup, brown sugar, and honey until heated through. Pour 1/2 the mixture over the ham.", "Bake the ham 1 hour and 30 minutes in the preheated oven. Baste frequently with the remaining butter and syrup mixture.", "Remove the ham from heat, and drain pan drippings into a saucepan over medium heat. Cook and stir until thickened, and serve with the ham."], "ingredients" : ["1 (4 pound) boneless ham", "1 (8 ounce) can pineapple slices, canned in syrup", "10 whole cloves", "2 cups water", "1 cup maple syrup", "1/4 cup brown sugar", "2 tablespoons honey", "2 tablespoons butter"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Mapled Ham", "url" : "http://allrecipes.com/recipe/67362/mapled-ham/"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "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"}, "rarity": {"type": "string"}, "type": {"type": "string"}, "subtypes": {"type": "array", "items": {}}, "cost": {"type": "integer"}, "power": {"type": "integer"}, "health": {"type": "integer"}, "set": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"]}, "collectible": {"type": "boolean"}, "soulSummon": {"type": "integer"}, "soulTrap": {"type": "integer"}, "text": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {}}, "unique": {"type": "boolean"}, "imageUrl": {"type": "string"}, "id": {"type": "string"}, "code": {"type": "string"}}, "required": ["name", "rarity", "type", "subtypes", "cost", "power", "health", "set", "collectible", "soulSummon", "soulTrap", "text", "attributes", "keywords", "unique", "imageUrl", "id", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Stolen Pants", "rarity" : "Epic", "type" : "Item", "subtypes" : [], "cost" : 2, "power" : -1, "health" : -1, "set" : {"name" : "Houses of Morrowind", "id" : "hom"}, "collectible" : true, "soulSummon" : 400, "soulTrap" : 100, "text" : "+1/+1. Summon: Summon a 0/1 Sheepish Dunmer in the other lane. Last Gasp: Give Sheepish Dunmer his pants.", "attributes" : ["Neutral"], "keywords" : [], "unique" : false, "imageUrl" : "https://www.legends-decks.com/img_cards/stolenpants.png", "id" : "069ea216-a4f7-5664-8c2b-ef65870a62ab", "code" : "pv"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "rarity": {"type": "string"}, "type": {"type": "string"}, "subtypes": {"type": "array", "items": {}}, "cost": {"type": "integer"}, "power": {"type": "integer"}, "health": {"type": "integer"}, "set": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "id"]}, "collectible": {"type": "boolean"}, "soulSummon": {"type": "integer"}, "soulTrap": {"type": "integer"}, "text": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {}}, "unique": {"type": "boolean"}, "imageUrl": {"type": "string"}, "id": {"type": "string"}, "code": {"type": "string"}}, "required": ["name", "rarity", "type", "subtypes", "cost", "power", "health", "set", "collectible", "soulSummon", "soulTrap", "text", "attributes", "keywords", "unique", "imageUrl", "id", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 18152, "cartId" : "e84a5fff-a5c5-4d45-bcbd-d3b7b735315f", "preferredProducts" : [], "productReviews" : []}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"slug": {"type": "string"}, "title": {"type": "string"}, "parent_slug": {"type": "null"}, "path": {"type": "string"}, "repoCount": {"type": "integer"}, "userCount": {"type": "integer"}, "popularity": {"type": "integer"}}, "required": ["slug", "title", "parent_slug", "path", "repoCount", "userCount", "popularity"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"slug" : "canada-ecoin", "title" : "Canada eCoin", "parent_slug" : null, "path" : "canada-ecoin", "repoCount" : 12, "userCount" : 3, "popularity" : 607}
json_instruct
{"type": "object", "properties": {"slug": {"type": "string"}, "title": {"type": "string"}, "parent_slug": {"type": "null"}, "path": {"type": "string"}, "repoCount": {"type": "integer"}, "userCount": {"type": "integer"}, "popularity": {"type": "integer"}}, "required": ["slug", "title", "parent_slug", "path", "repoCount", "userCount", "popularity"], "$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"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}}, "required": ["mocha"]}, "dependencies": {"type": "object", "properties": {"lodash.camelcase": {"type": "string"}, "lodash.isdate": {"type": "string"}, "lodash.isobject": {"type": "string"}, "lodash.isregexp": {"type": "string"}, "lodash.snakecase": {"type": "string"}}, "required": ["lodash.camelcase", "lodash.isdate", "lodash.isobject", "lodash.isregexp", "lodash.snakecase"]}}, "required": ["name", "version", "author", "license", "main", "repository", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "casekeys", "version" : "0.0.2", "author" : "@aj0strow", "license" : "MIT", "main" : "index.js", "repository" : {"type" : "git", "url" : "git://github.com/aj0strow/casekeys.git"}, "scripts" : {"test" : "mocha casekeys-test.js"}, "devDependencies" : {"mocha" : "^2.3.4"}, "dependencies" : {"lodash.camelcase" : "^3.0.1", "lodash.isdate" : "^3.0.1", "lodash.isobject" : "^3.0.2", "lodash.isregexp" : "^3.0.3", "lodash.snakecase" : "^3.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "devDependencies": {"type": "object", "properties": {"mocha": {"type": "string"}}, "required": ["mocha"]}, "dependencies": {"type": "object", "properties": {"lodash.camelcase": {"type": "string"}, "lodash.isdate": {"type": "string"}, "lodash.isobject": {"type": "string"}, "lodash.isregexp": {"type": "string"}, "lodash.snakecase": {"type": "string"}}, "required": ["lodash.camelcase", "lodash.isdate", "lodash.isobject", "lodash.isregexp", "lodash.snakecase"]}}, "required": ["name", "version", "author", "license", "main", "repository", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"assessment" : [{"name" : "Reflective essay 1", "weight" : 25}, {"name" : "Case study report and workshop facilitation", "weight" : 50}, {"name" : "Reflective essay 2", "weight" : 25}]}
json_instruct
{"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 99331, "cartId" : "856219e6-dbd6-40ea-8f57-25311ad75c4b", "preferredProducts" : [1232, 1130, 2620], "productReviews" : []}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "image": {"type": "string"}, "frameWidth": {"type": "integer"}, "frameHeight": {"type": "integer"}, "frames": {"type": "integer"}, "smoothing": {"type": "string"}, "fps": {"type": "integer"}, "scale": {"type": "integer"}, "format": {"type": "string"}}, "required": ["id", "image", "frameWidth", "frameHeight", "frames", "smoothing", "fps", "scale", "format"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "brand_secondary_lizard_orange", "image" : "assets/animations/brands/secondary_lizard_orange.png", "frameWidth" : 130, "frameHeight" : 187, "frames" : 146, "smoothing" : "bilinear", "fps" : 15, "scale" : 2, "format" : "bgra"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "image": {"type": "string"}, "frameWidth": {"type": "integer"}, "frameHeight": {"type": "integer"}, "frames": {"type": "integer"}, "smoothing": {"type": "string"}, "fps": {"type": "integer"}, "scale": {"type": "integer"}, "format": {"type": "string"}}, "required": ["id", "image", "frameWidth", "frameHeight", "frames", "smoothing", "fps", "scale", "format"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "integer"}, "z": {"type": "number"}, "yaw": {"type": "integer"}, "pitch": {"type": "integer"}, "flags": {"type": "integer"}, "teleportId": {"type": "integer"}}, "required": ["x", "y", "z", "yaw", "pitch", "flags", "teleportId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"x" : -17.5, "y" : 69, "z" : 263.5, "yaw" : 0, "pitch" : 0, "flags" : 0, "teleportId" : 3}
json_instruct
{"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "integer"}, "z": {"type": "number"}, "yaw": {"type": "integer"}, "pitch": {"type": "integer"}, "flags": {"type": "integer"}, "teleportId": {"type": "integer"}}, "required": ["x", "y", "z", "yaw", "pitch", "flags", "teleportId"], "$schema": "http://json-schema.org/draft-07/schema#"}