input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "attributes": {"type": "object", "properties": {"title": {"type": "string"}, "owner": {"type": "string"}, "city": {"type": "string"}, "location": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "category": {"type": "string"}, "bedrooms": {"type": "integer"}, "image": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "owner", "city", "location", "category", "bedrooms", "image", "description"]}}, "required": ["type", "id", "attributes"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"type" : "rentals", "id" : "grand-old-mansion", "attributes" : {"title" : "Grand Old Mansion", "owner" : "Veruca Salt", "city" : "San Francisco", "location" : {"lat" : 37.7749, "lng" : -122.4194}, "category" : "Estate", "bedrooms" : 15, "image" : "https://upload.wikimedia.org/wikipedia/commons/c/cb/Crane_estate_(5).jpg", "description" : "This grand old mansion sits on over 100 acres of rolling hills and dense redwood forests."}}} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "attributes": {"type": "object", "properties": {"title": {"type": "string"}, "owner": {"type": "string"}, "city": {"type": "string"}, "location": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "category": {"type": "string"}, "bedrooms": {"type": "integer"}, "image": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "owner", "city", "location", "category", "bedrooms", "image", "description"]}}, "required": ["type", "id", "attributes"]}}, "required": ["data"], "$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"}, "description": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "require": {"type": "object", "properties": {}, "required": []}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"MacFJA\\InjectionFactory\\": {"type": "string"}}, "required": ["MacFJA\\InjectionFactory\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "minimum-stability", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "macfja/injection-factory", "description" : "Dependency Injection through factory", "minimum-stability" : "dev", "license" : "MIT", "authors" : [{"name" : "MacFJA"}], "require" : {}, "require-dev" : {"phpunit/phpunit" : "4.8.*@dev"}, "autoload" : {"psr-4" : {"MacFJA\\InjectionFactory\\" : "lib/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "require": {"type": "object", "properties": {}, "required": []}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"MacFJA\\InjectionFactory\\": {"type": "string"}}, "required": ["MacFJA\\InjectionFactory\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "minimum-stability", "license", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[2000, 9], [2002, 6], [2004, 6], [2005, 6], [2006, 8], [2007, 10], [2008, 15], [2009, 18], [2010, 16], [2011, 16], [2012, 21], [2013, 23], [2014, 33]] | 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": {"samples": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["path", "displayName"]}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "keyword": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}}, "required": ["url", "name"]}, "discription": {"type": "string"}, "unity": {"type": "string"}, "version": {"type": "string"}, "displayName": {"type": "string"}, "name": {"type": "string"}}, "required": ["samples", "dependencies", "keyword", "author", "discription", "unity", "version", "displayName", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"samples" : [{"path" : "Samples~/ReSize", "displayName" : "ReSize"}, {"path" : "Samples~/Rotation", "displayName" : "Rotation"}], "dependencies" : {}, "keyword" : ["gl"], "author" : {"url" : "https://github.com/bluebackblue/UpmGl", "name" : "BlueBack"}, "discription" : "\uff27\uff2c\u64cd\u4f5c", "unity" : "2020.1", "version" : "0.0.20", "displayName" : "BlueBack.Gl", "name" : "blueback.gl"} | json_instruct | {"type": "object", "properties": {"samples": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["path", "displayName"]}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "keyword": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"url": {"type": "string"}, "name": {"type": "string"}}, "required": ["url", "name"]}, "discription": {"type": "string"}, "unity": {"type": "string"}, "version": {"type": "string"}, "displayName": {"type": "string"}, "name": {"type": "string"}}, "required": ["samples", "dependencies", "keyword", "author", "discription", "unity", "version", "displayName", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "font_family": {"type": "string"}, "css_prefix_text": {"type": "string"}, "description": {"type": "string"}, "glyphs": {"type": "array", "items": {"type": "object", "properties": {"icon_id": {"type": "string"}, "name": {"type": "string"}, "font_class": {"type": "string"}, "unicode": {"type": "string"}, "unicode_decimal": {"type": "integer"}}, "required": ["icon_id", "name", "font_class", "unicode", "unicode_decimal"]}}}, "required": ["id", "name", "font_family", "css_prefix_text", "description", "glyphs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1907447", "name" : "\u5c0f\u7c73\u6709\u54c1", "font_family" : "iconfont", "css_prefix_text" : "icon-", "description" : "", "glyphs" : [{"icon_id" : "9885888", "name" : "\u624b\u673a", "font_class" : "shouji", "unicode" : "e620", "unicode_decimal" : 58912}, {"icon_id" : "402163", "name" : "\u5fae\u4fe1", "font_class" : "weixin", "unicode" : "e66f", "unicode_decimal" : 58991}, {"icon_id" : "2930558", "name" : "\u5ba2\u670d", "font_class" : "kefu", "unicode" : "e6d6", "unicode_decimal" : 59094}, {"icon_id" : "3691636", "name" : "\u5934\u50cf", "font_class" : "touxiang", "unicode" : "e600", "unicode_decimal" : 58880}, {"icon_id" : "4668578", "name" : "\u4e0b\u62c9\u56fe\u6807", "font_class" : "xialatubiao", "unicode" : "e615", "unicode_decimal" : 58901}, {"icon_id" : "6036296", "name" : "\u626b\u7801", "font_class" : "xingzhuang", "unicode" : "e63f", "unicode_decimal" : 58943}, {"icon_id" : "7256171", "name" : "\u65b0\u4eba\u6709\u793c", "font_class" : "icon_right_", "unicode" : "e6d8", "unicode_decimal" : 59096}, {"icon_id" : "7482196", "name" : "\u56de\u5230\u9876\u90e8", "font_class" : "huidaodingbu", "unicode" : "e73c", "unicode_decimal" : 59196}, {"icon_id" : "11383059", "name" : "\u4e0b\u62c9\u56fe\u6807", "font_class" : "xialatubiao1", "unicode" : "e61b", "unicode_decimal" : 58907}, {"icon_id" : "12621129", "name" : "\u67e5\u627e", "font_class" : "chazhao", "unicode" : "e638", "unicode_decimal" : 58936}, {"icon_id" : "15175971", "name" : "\u8d2d\u7269 \u8f66", "font_class" : "gouwuche", "unicode" : "e62e", "unicode_decimal" : 58926}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "font_family": {"type": "string"}, "css_prefix_text": {"type": "string"}, "description": {"type": "string"}, "glyphs": {"type": "array", "items": {"type": "object", "properties": {"icon_id": {"type": "string"}, "name": {"type": "string"}, "font_class": {"type": "string"}, "unicode": {"type": "string"}, "unicode_decimal": {"type": "integer"}}, "required": ["icon_id", "name", "font_class", "unicode", "unicode_decimal"]}}}, "required": ["id", "name", "font_family", "css_prefix_text", "description", "glyphs"], "$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" : "0x29c0342edaccebe519803cc2b1aabe016b222bba", "tool" : "oyente", "start" : 1563272430.3711157, "end" : 1563272435.8849602, "duration" : 5.5138444900512695, "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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"family": {"type": "string"}, "variants": {"type": "array", "items": {"type": "string"}}, "subsets": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "lastModified": {"type": "string"}, "files": {"type": "object", "properties": {"300": {"type": "string"}, "500": {"type": "string"}, "600": {"type": "string"}, "700": {"type": "string"}, "regular": {"type": "string"}}, "required": ["300", "500", "600", "700", "regular"]}, "category": {"type": "string"}, "kind": {"type": "string"}}, "required": ["family", "variants", "subsets", "version", "lastModified", "files", "category", "kind"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"family" : "Yrsa", "variants" : ["300", "regular", "500", "600", "700"], "subsets" : ["latin", "latin-ext"], "version" : "v6", "lastModified" : "2020-09-02", "files" : {"300" : "http://fonts.gstatic.com/s/yrsa/v6/wlpxgwnQFlxs3af93IQ73W5OcCk.ttf", "500" : "http://fonts.gstatic.com/s/yrsa/v6/wlpxgwnQFlxs3f_83IQ73W5OcCk.ttf", "600" : "http://fonts.gstatic.com/s/yrsa/v6/wlpxgwnQFlxs3dP73IQ73W5OcCk.ttf", "700" : "http://fonts.gstatic.com/s/yrsa/v6/wlpxgwnQFlxs3bf63IQ73W5OcCk.ttf", "regular" : "http://fonts.gstatic.com/s/yrsa/v6/wlp-gwnQFlxs5QvV-IwQwWc.ttf"}, "category" : "serif", "kind" : "webfonts#webfont"} | json_instruct | {"type": "object", "properties": {"family": {"type": "string"}, "variants": {"type": "array", "items": {"type": "string"}}, "subsets": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "lastModified": {"type": "string"}, "files": {"type": "object", "properties": {"300": {"type": "string"}, "500": {"type": "string"}, "600": {"type": "string"}, "700": {"type": "string"}, "regular": {"type": "string"}}, "required": ["300", "500", "600", "700", "regular"]}, "category": {"type": "string"}, "kind": {"type": "string"}}, "required": ["family", "variants", "subsets", "version", "lastModified", "files", "category", "kind"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"__identifier": {"type": "string"}, "__value": {"type": "string"}, "__type": {"type": "string"}, "defUid": {"type": "integer"}}, "required": ["__identifier", "__value", "__type", "defUid"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"__identifier" : "string", "__value" : "thatStringThing", "__type" : "String", "defUid" : 76} | json_instruct | {"type": "object", "properties": {"__identifier": {"type": "string"}, "__value": {"type": "string"}, "__type": {"type": "string"}, "defUid": {"type": "integer"}}, "required": ["__identifier", "__value", "__type", "defUid"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "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" : "0x02a7d3df825edd218ffd17abd2c8fbdfd93c7a760c6a5dd7c632bea15cb00472", "parentHash" : "0x89f8134449989ece1e08f3429a4a0a95895db0da3fe98f221b775cba52996dc8", "number" : 50047, "timestamp" : 1438983166, "nonce" : "0x06d4e45f4b6e1b1a", "difficulty" : 1503874227222, "gasLimit" : {"_hex" : "0x4cb90"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xE13f83e0288E460362D9E7421f0601fB88C4fd91", "extraData" : "0x476574682f76312e302e312f6c696e75782f676f312e342e32", "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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"main.css": {"type": "string"}, "main.css.map": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}}, "required": ["main.css", "main.css.map", "main.js", "main.js.map"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"main.css" : "static/css/main.d1583d53.css", "main.css.map" : "static/css/main.d1583d53.css.map", "main.js" : "static/js/main.a453cac5.js", "main.js.map" : "static/js/main.a453cac5.js.map"} | json_instruct | {"type": "object", "properties": {"main.css": {"type": "string"}, "main.css.map": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}}, "required": ["main.css", "main.css.map", "main.js", "main.js.map"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"946797203885": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "946797204090": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946797204091": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946797220436": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["946797203885", "946797204090", "946797204091", "946797220436"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"946797203885" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/MS0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9NYXBfdmlkZW9zLUVRX01hcF92aWRfa2hvYWxhLmh0bWwtYW5hbHl0aWNzLTk0Njc5NzIwMzc1Mg==.json"}, "946797204090" : {"type" : "st"}, "946797204091" : {"type" : "ss"}, "946797220436" : {"type" : "sf"}} | json_instruct | {"type": "object", "properties": {"946797203885": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "946797204090": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946797204091": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "946797220436": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["946797203885", "946797204090", "946797204091", "946797220436"], "$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"}, "description": {"type": "string"}, "website": {"type": "string"}, "license": {"type": "array", "items": {"type": "object", "properties": {"spdx": {"type": "string"}, "licenseURL": {"type": "string"}}, "required": ["spdx", "licenseURL"]}}, "SDGs": {"type": "array", "items": {"type": "object", "properties": {"SDGNumber": {"type": "integer"}, "evidenceText": {"type": "string"}, "evidenceURL": {"type": "string"}}, "required": ["SDGNumber", "evidenceText", "evidenceURL"]}}, "sectors": {"type": "array", "items": {"type": "string"}}, "type": {"type": "array", "items": {"type": "string"}}, "repositoryURL": {"type": "string"}, "organizations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "org_type": {"type": "string"}}, "required": ["name", "website", "org_type"]}}, "stage": {"type": "string"}}, "required": ["name", "description", "website", "license", "SDGs", "sectors", "type", "repositoryURL", "organizations", "stage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Global Healthsites Mapping Project", "description" : "Healthsites is an innovative Global initiative improving Global baseline health facility data by using OpenStreetMap as the data store.", "website" : "https://healthsites.io/", "license" : [{"spdx" : "BSD-3-Clause", "licenseURL" : "https://github.com/healthsites/healthsites/blob/master/LICENSE-CODE.txt"}, {"spdx" : "ODbL-1.0", "licenseURL" : "https://github.com/healthsites/healthsites/wiki/Data"}], "SDGs" : [{"SDGNumber" : 3, "evidenceText" : "In a time of crisis, such as the COVID-19 disease outbreak, there is a rush to establish accurate health care location data that can be used to support people on the ground. This has been demonstrated by events such as the Haiti earthquake and the Ebola epidemic in West Africa. As a result valuable time is wasted establishing accurate and accessible baseline data. Healthsites.io establishes this data and the tools necessary to upload, manage and make the data easily accessible", "evidenceURL" : "https://covid19innovationhub.org/innovation/the-global-healthsites-mapping-project, \nhttps://wiki.openstreetmap.org/wiki/Global_Healthsites_Mapping_Project, \nhttps://www.data4sdgs.org/partner/global-healthsites-mapping-project"}], "sectors" : ["Health"], "type" : ["software", "data"], "repositoryURL" : "https://github.com/healthsites/healthsites", "organizations" : [{"name" : "OPEN HEALTHSITE CONSULTING LTD", "website" : "https://healthsites.io", "org_type" : "owner"}], "stage" : "nominee"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "website": {"type": "string"}, "license": {"type": "array", "items": {"type": "object", "properties": {"spdx": {"type": "string"}, "licenseURL": {"type": "string"}}, "required": ["spdx", "licenseURL"]}}, "SDGs": {"type": "array", "items": {"type": "object", "properties": {"SDGNumber": {"type": "integer"}, "evidenceText": {"type": "string"}, "evidenceURL": {"type": "string"}}, "required": ["SDGNumber", "evidenceText", "evidenceURL"]}}, "sectors": {"type": "array", "items": {"type": "string"}}, "type": {"type": "array", "items": {"type": "string"}}, "repositoryURL": {"type": "string"}, "organizations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "org_type": {"type": "string"}}, "required": ["name", "website", "org_type"]}}, "stage": {"type": "string"}}, "required": ["name", "description", "website", "license", "SDGs", "sectors", "type", "repositoryURL", "organizations", "stage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"citations" : [{"textCitation" : "[See dvdsrcl on Metamath](http://us.metamath.org/mpegif/dvdsrcl.html)"}], "names" : ["dvdsrcl"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cB", "#T_wceq", "#T_cbs", "#T_cfv", "#T_cR", "#T_c.pa", "#T_wceq", "#T_cdsr", "#T_cfv", "#T_cR", "#T_cX", "#T_c.pa", "#T_cY", "#T_wi", "#T_cX", "#T_wcel", "#T_cB"], "metaLanguage" : "METAMATH", "remarks" : " Closure of a dividing element. (Contributed by Mario Carneiro, 5-Dec-2014.) ", "statement" : "dvdsr.1 $e |- B = ( Base ` R ) $.\ndvdsr.2 $e |- .|| = ( ||r ` R ) $.\ndvdsrcl $p |- ( X .|| Y -> X e. B ) $."} | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "modern.css": {"type": "string"}, "modern.js": {"type": "string"}, "skinname-modern": {"type": "string"}, "modern-desc": {"type": "string"}}, "required": ["@metadata", "modern.css", "modern.js", "skinname-modern", "modern-desc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["Arifin.wijaya", "Bennylin", "Iwan Novirion"]}, "modern.css" : "/* CSS yang ada di sini akan diterapkan pada kulit Modern. */", "modern.js" : "/* Semua JavaScript di sini akan dimuatkan untuk para pengguna yang menggunakan kulit Modern */", "skinname-modern" : "Modern", "modern-desc" : "Tema biru/abu-abu dengan bilah samping dan bilah atas. Berasal dari MonoBook."} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "modern.css": {"type": "string"}, "modern.js": {"type": "string"}, "skinname-modern": {"type": "string"}, "modern-desc": {"type": "string"}}, "required": ["@metadata", "modern.css", "modern.js", "skinname-modern", "modern-desc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : "23300", "rvnm" : "\u957f\u6c5f", "stcd" : "60105400", "stnm" : "\u5bf8\u6ee9", "tm" : 1596819600000, "wptn" : "5", "z" : "171.55"}, {"oq" : "0", "q" : "2780", "rvnm" : "\u4e4c\u6c5f", "stcd" : "60803000", "stnm" : "\u6b66\u9686", "tm" : 1596819600000, "wptn" : "5", "z" : "176.3"}, {"oq" : "0", "q" : "32200", "rvnm" : "\u957f\u6c5f", "stcd" : "60107300", "stnm" : "\u5b9c\u660c", "tm" : 1596819600000, "wptn" : "6", "z" : "49.08"}, {"oq" : "0", "q" : "29100", "rvnm" : "\u957f\u6c5f", "stcd" : "60108300", "stnm" : "\u6c99\u5e02", "tm" : 1596819600000, "wptn" : "4", "z" : "41.1"}, {"oq" : "0", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60111200", "stnm" : "\u57ce\u9675\u77f6(\u83b2)", "tm" : 1596819600000, "wptn" : "5", "z" : "33.03"}, {"oq" : "0", "q" : "51000", "rvnm" : "\u957f\u6c5f", "stcd" : "60112200", "stnm" : "\u6c49\u53e3", "tm" : 1596819600000, "wptn" : "4", "z" : "27.12"}, {"oq" : "0", "q" : "54000", "rvnm" : "\u957f\u6c5f", "stcd" : "60113400", "stnm" : "\u4e5d\u6c5f", "tm" : 1596819600000, "wptn" : "4", "z" : "20.75"}, {"oq" : "0", "q" : "64400", "rvnm" : "\u957f\u6c5f", "stcd" : "60115000", "stnm" : "\u5927\u901a", "tm" : 1596819600000, "wptn" : "4", "z" : "14.7"}, {"oq" : "0", "q" : "19000", "rvnm" : "\u6d1e\u5ead\u6e56", "stcd" : "61512000", "stnm" : "\u57ce\u9675\u77f6(\u4e03)", "tm" : 1596819600000, "wptn" : "5", "z" : "33.11"}, {"oq" : "0", "q" : "8650", "rvnm" : "\u9131\u9633\u6e56", "stcd" : "62601600", "stnm" : "\u6e56\u53e3", "tm" : 1596819600000, "wptn" : "4", "z" : "20.26"}, {"oq" : "0", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60107000", "stnm" : "\u8305\u576a(\u4e8c)", "tm" : 1596816000000, "wptn" : "4", "z" : "158.84"}, {"oq" : "31600", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60106980", "stnm" : "\u4e09\u5ce1\u6c34\u5e93", "tm" : 1596819600000, "wptn" : "6", "z" : "158.84"}, {"oq" : "0", "q" : "0", "rvnm" : "\u6c49\u6c5f", "stcd" : "61802500", "stnm" : "\u9f99\u738b\u5e99", "tm" : 1596819600000, "wptn" : "6", "z" : "161.6"}, {"oq" : "2350", "q" : "0", "rvnm" : "\u6c49\u6c5f", "stcd" : "61802700", "stnm" : "\u4e39\u6c5f\u53e3\u6c34\u5e93", "tm" : 1596816000000, "wptn" : "6", "z" : "161.6"}] | 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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.1.1dev": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.2dev": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1dev": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.1dev", "0.1.2dev", "0.1dev"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"latest_version" : ["0.1.2dev"], "meta" : {"description" : "Xapian base full text indexing for couchdb", "homepage" : "http://ish.io"}, "versions" : {"0.1.1dev" : {"sha256" : "f8bbcc06acc1f62388c0ec0181aa31abe6e5349b9bf37a68886e0f9bec7b95b3", "url" : "https://files.pythonhosted.org/packages/8a/bb/bddef8230f2b23622a760f374288d0796c9850f614f7fb05f6d90bfad60b/couchfti-0.1.1dev.tar.gz"}, "0.1.2dev" : {"sha256" : "e09518d6d85547791ed451c66e9d263b2ff2bb080d60e9f4a61a286c10e9672c", "url" : "https://files.pythonhosted.org/packages/e5/86/bc9e573f9c030767341170bbbeaef019ebf379187c3381af0ced07de33af/couchfti-0.1.2dev.tar.gz"}, "0.1dev" : {"sha256" : "6c9be254c87cb2347be059ab4fec7c0863cc0f290e8169c5ad817da7b924bac0", "url" : "https://files.pythonhosted.org/packages/b1/b5/bba35da3b51101ddadb86b4b9475c4e87e56e6d0063f286d9649bca6aa95/couchfti-0.1dev.tar.gz"}}} | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["description", "homepage"]}, "versions": {"type": "object", "properties": {"0.1.1dev": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1.2dev": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}, "0.1dev": {"type": "object", "properties": {"sha256": {"type": "string"}, "url": {"type": "string"}}, "required": ["sha256", "url"]}}, "required": ["0.1.1dev", "0.1.2dev", "0.1dev"]}}, "required": ["latest_version", "meta", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"upper_left_x": {"type": "number"}, "upper_left_y": {"type": "integer"}, "bottom_right_x": {"type": "number"}, "bottom_right_y": {"type": "number"}, "time": {"type": "integer"}, "is_final": {"type": "boolean"}, "event_type": {"type": "string"}, "op_order": {"type": "integer"}, "id": {"type": "integer"}}, "required": ["upper_left_x", "upper_left_y", "bottom_right_x", "bottom_right_y", "time", "is_final", "event_type", "op_order", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"upper_left_x" : 22.05044183243779, "upper_left_y" : 0, "bottom_right_x" : 1246.6980574493673, "bottom_right_y" : 1728.4154020964695, "time" : 1480179753546, "is_final" : false, "event_type" : "movement", "op_order" : 31, "id" : 31} | json_instruct | {"type": "object", "properties": {"upper_left_x": {"type": "number"}, "upper_left_y": {"type": "integer"}, "bottom_right_x": {"type": "number"}, "bottom_right_y": {"type": "number"}, "time": {"type": "integer"}, "is_final": {"type": "boolean"}, "event_type": {"type": "string"}, "op_order": {"type": "integer"}, "id": {"type": "integer"}}, "required": ["upper_left_x", "upper_left_y", "bottom_right_x", "bottom_right_y", "time", "is_final", "event_type", "op_order", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"info": {"type": "object", "properties": {"schema": {"type": "string"}, "_postman_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["schema", "_postman_id", "name"]}, "item": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "item": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "request": {"type": "object", "properties": {"method": {"type": "string"}, "body": {"type": "object", "properties": {"mode": {"type": "string"}, "formdata": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "type": {"type": "string"}, "desc": {"type": "string"}, "value": {"type": "string"}}, "required": ["key", "type", "desc", "value"]}}}, "required": ["mode", "formdata"]}, "url": {"type": "string"}, "description": {"type": "string"}, "header": {"type": "array", "items": {}}}, "required": ["method", "body", "url", "description", "header"]}, "description": {"type": "string"}}, "required": ["name", "request", "description"]}}}, "required": ["name", "item"]}}}, "required": ["info", "item"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"info" : {"schema" : "https://schema.getpostman.com/json/collection/v2.0.0/collection.json", "_postman_id" : "a686707b-2884-4af3-9364-fa6cfddc9f81", "name" : "smart-doc 2020-07-29 12:17:55"}, "item" : [{"name" : "\u672a\u8bbe\u7f6e\u63a5\u53e3\u540d\u79f0", "item" : [{"name" : "\u672a\u8bbe\u7f6e\u63a5\u53e3\u540d\u79f0", "request" : {"method" : "GET", "body" : {"mode" : "formdata", "formdata" : [{"key" : "p0", "type" : "text", "desc" : "No comments found.", "value" : "kwowmq"}]}, "url" : "http://localhost:8080/qdoc/example/path0?p0=kwowmq", "description" : "", "header" : []}, "description" : ""}]}, {"name" : "\u672a\u8bbe\u7f6e\u63a5\u53e3\u540d\u79f0", "item" : [{"name" : "\u672a\u8bbe\u7f6e\u63a5\u53e3\u540d\u79f0", "request" : {"method" : "GET", "body" : {"mode" : "formdata", "formdata" : [{"key" : "p0", "type" : "text", "desc" : "No comments found.", "value" : "g4a8gq"}]}, "url" : "http://localhost:8080/qdoc/example/path0?p0=g4a8gq", "description" : "", "header" : []}, "description" : ""}]}]} | json_instruct | {"type": "object", "properties": {"info": {"type": "object", "properties": {"schema": {"type": "string"}, "_postman_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["schema", "_postman_id", "name"]}, "item": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "item": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "request": {"type": "object", "properties": {"method": {"type": "string"}, "body": {"type": "object", "properties": {"mode": {"type": "string"}, "formdata": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "type": {"type": "string"}, "desc": {"type": "string"}, "value": {"type": "string"}}, "required": ["key", "type", "desc", "value"]}}}, "required": ["mode", "formdata"]}, "url": {"type": "string"}, "description": {"type": "string"}, "header": {"type": "array", "items": {}}}, "required": ["method", "body", "url", "description", "header"]}, "description": {"type": "string"}}, "required": ["name", "request", "description"]}}}, "required": ["name", "item"]}}}, "required": ["info", "item"], "$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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"argon2": {"type": "string"}, "crypto": {"type": "string"}, "fs": {"type": "string"}, "http": {"type": "string"}, "https": {"type": "string"}, "mime-types": {"type": "string"}, "url": {"type": "string"}, "ws": {"type": "string"}}, "required": ["argon2", "crypto", "fs", "http", "https", "mime-types", "url", "ws"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "a-basic-website-template", "version" : "1.0.0", "description" : "", "main" : "servers.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/jasonac1994/a-basic-website-template.git"}, "author" : "Jason Clay", "license" : "MIT", "bugs" : {"url" : "https://github.com/jasonac1994/a-basic-website-template/issues"}, "homepage" : "https://github.com/jasonac1994/a-basic-website-template#readme", "dependencies" : {"argon2" : "^0.16.1", "crypto" : "0.0.3", "fs" : "0.0.1-security", "http" : "0.0.0", "https" : "^1.0.0", "mime-types" : "^2.1.15", "url" : "^0.11.0", "ws" : "^3.0.0"}} | 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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"argon2": {"type": "string"}, "crypto": {"type": "string"}, "fs": {"type": "string"}, "http": {"type": "string"}, "https": {"type": "string"}, "mime-types": {"type": "string"}, "url": {"type": "string"}, "ws": {"type": "string"}}, "required": ["argon2", "crypto", "fs", "http", "https", "mime-types", "url", "ws"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-xqxc-r4xh-rx35", "modified" : "2022-05-01T17:55:55Z", "published" : "2022-05-01T17:55:55Z", "aliases" : ["CVE-2007-1669"], "details" : "zoo decoder 2.10 (zoo-2.10), as used in multiple products including (1) Barracuda Spam Firewall 3.4 and later with virusdef before 2.0.6399, (2) Spam Firewall before 3.4 20070319 with virusdef before 2.0.6399o, and (3) AMaViS 2.4.1 and earlier, allows remote attackers to cause a denial of service (infinite loop) via a ZOO archive with a direntry structure that points to a previous file.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2007-1669"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/34080"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/25122"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/25315"}, {"type" : "WEB", "url" : "http://securityreason.com/securityalert/2680"}, {"type" : "WEB", "url" : "http://www.amavis.org/security/asa-2007-2.txt"}, {"type" : "WEB", "url" : "http://www.attrition.org/pipermail/vim/2007-July/001725.html"}, {"type" : "WEB", "url" : "http://www.osvdb.org/35795"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/archive/1/467646/100/0/threaded"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/23823"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2007/1699"}], "database_specific" : {"cwe_ids" : [], "severity" : "HIGH", "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x5ce8e61f28f5948de4913bcaada90039481f1f53", "tool" : "osiris", "start" : 1564586159.3890522, "end" : 1564586171.9461462, "duration" : 12.557094097137451, "analysis" : [{"errors" : [], "file" : "/unique_chucks/7/0x5ce8e61f28f5948de4913bcaada90039481f1f53.sol", "name" : "BasicToken"}, {"errors" : [], "file" : "/unique_chucks/7/0x5ce8e61f28f5948de4913bcaada90039481f1f53.sol", "name" : "BurnableToken"}, {"errors" : [], "file" : "/unique_chucks/7/0x5ce8e61f28f5948de4913bcaada90039481f1f53.sol", "name" : "GOSSAMER"}, {"errors" : [], "file" : "/unique_chucks/7/0x5ce8e61f28f5948de4913bcaada90039481f1f53.sol", "name" : "Ownable"}, {"errors" : [], "file" : "/unique_chucks/7/0x5ce8e61f28f5948de4913bcaada90039481f1f53.sol", "name" : "SafeMath"}, {"errors" : [], "file" : "/unique_chucks/7/0x5ce8e61f28f5948de4913bcaada90039481f1f53.sol", "name" : "StandardToken"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$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"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"devserver": {"type": "string"}, "buildfiles": {"type": "string"}, "testserver": {"type": "string"}}, "required": ["devserver", "buildfiles", "testserver"]}, "devDependencies": {"type": "object", "properties": {"@prisma/cli": {"type": "string"}, "@types/cors": {"type": "string"}, "@types/express": {"type": "string"}, "@types/hapi__joi": {"type": "string"}, "@types/jsonwebtoken": {"type": "string"}, "ts-node-dev": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@prisma/cli", "@types/cors", "@types/express", "@types/hapi__joi", "@types/jsonwebtoken", "ts-node-dev", "typescript"]}, "dependencies": {"type": "object", "properties": {"@hapi/joi": {"type": "string"}, "@prisma/client": {"type": "string"}, "bcrypt": {"type": "string"}, "body-parser": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "fastest-validator": {"type": "string"}, "jsonwebtoken": {"type": "string"}}, "required": ["@hapi/joi", "@prisma/client", "bcrypt", "body-parser", "cors", "express", "fastest-validator", "jsonwebtoken"]}, "description": {"type": "string"}, "author": {"type": "string"}}, "required": ["name", "version", "license", "scripts", "devDependencies", "dependencies", "description", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "sixstarts-backend", "version" : "1.0.0", "license" : "MIT", "scripts" : {"devserver" : "ts-node-dev --respawn --transpileOnly src/index.ts", "buildfiles" : "yarn tsc", "testserver" : "node dist/index"}, "devDependencies" : {"@prisma/cli" : "2.0.0-beta.8", "@types/cors" : "^2.8.6", "@types/express" : "^4.17.6", "@types/hapi__joi" : "^17.1.2", "@types/jsonwebtoken" : "^8.5.0", "ts-node-dev" : "^1.0.0-pre.44", "typescript" : "^3.8.3"}, "dependencies" : {"@hapi/joi" : "^17.1.1", "@prisma/client" : "2.0.0-beta.8", "bcrypt" : "^5.0.0", "body-parser" : "^1.19.0", "cors" : "^2.8.5", "express" : "^4.17.1", "fastest-validator" : "^1.4.2", "jsonwebtoken" : "^8.5.1"}, "description" : "Backend apliccation for a samp TDM.", "author" : "Rafanel2"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"devserver": {"type": "string"}, "buildfiles": {"type": "string"}, "testserver": {"type": "string"}}, "required": ["devserver", "buildfiles", "testserver"]}, "devDependencies": {"type": "object", "properties": {"@prisma/cli": {"type": "string"}, "@types/cors": {"type": "string"}, "@types/express": {"type": "string"}, "@types/hapi__joi": {"type": "string"}, "@types/jsonwebtoken": {"type": "string"}, "ts-node-dev": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@prisma/cli", "@types/cors", "@types/express", "@types/hapi__joi", "@types/jsonwebtoken", "ts-node-dev", "typescript"]}, "dependencies": {"type": "object", "properties": {"@hapi/joi": {"type": "string"}, "@prisma/client": {"type": "string"}, "bcrypt": {"type": "string"}, "body-parser": {"type": "string"}, "cors": {"type": "string"}, "express": {"type": "string"}, "fastest-validator": {"type": "string"}, "jsonwebtoken": {"type": "string"}}, "required": ["@hapi/joi", "@prisma/client", "bcrypt", "body-parser", "cors", "express", "fastest-validator", "jsonwebtoken"]}, "description": {"type": "string"}, "author": {"type": "string"}}, "required": ["name", "version", "license", "scripts", "devDependencies", "dependencies", "description", "author"], "$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" : ["Heat 1 1/2 tablespoons of olive oil in a saucepan over medium heat. Stir in the orzo pasta; cook and stir until the orzo has lightly browned, 3 to 4 minutes. Stir in the onion, and cook until the onion begins to soften, about 3 minutes. Add 1 clove of garlic; cook until fragrant, about 30 seconds. Pour in the vegetable broth, and bring to a boil over high heat. Reduce heat to medium-low, and cover; simmer until the orzo is tender yet still a little firm to the bite, 12 to 14 minutes.", "In a mixing bowl, combine cherry tomatoes, 1/2 of the fresh basil, garlic, and remaining olive oil.", "Spoon the cooked orzo into a serving bowl. Top with tomato mixture, and sprinkle with Gorgonzola and remaining basil."], "ingredients" : ["1 1/2 tablespoons olive oil", "1 cup uncooked orzo pasta", "1 red onion, chopped", "1 clove garlic, minced", "1 1/4 cups vegetable broth", "1 pint cherry tomatoes, halved", "12 leaves fresh basil, chopped", "1 clove garlic, minced", "1 1/2 tablespoons olive oil", "1 cup crumbled Gorgonzola cheese, or to taste"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Orzo with Tomatoes, Basil, and Gorgonzola", "url" : "http://allrecipes.com/recipe/170600/orzo-with-tomatoes-basil-and-gorgon/"} | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}}, "required": ["default_icon"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}}, "required": ["manifest_version", "name", "description", "version", "browser_action", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"manifest_version" : 2, "name" : "Skroutz common stores", "description" : "Chrome extension that finds all the common stores for the products you want on Skroutz.", "version" : "0.0.1", "browser_action" : {"default_icon" : "icon.png"}, "content_scripts" : [{"matches" : ["http://www.skroutz.gr/*", "https://www.skroutz.gr/*"], "js" : ["js/content_script.js"]}]} | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}}, "required": ["default_icon"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}}, "required": ["manifest_version", "name", "description", "version", "browser_action", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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"}, "tag": {"type": "string"}}, "required": ["t", "h", "stem", "tag"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "kakarkaren", "h" : [{"d" : [{"f" : "\u8981\u6316\u3001\u6398\uff0c\u8981\u6316\u3001\u6398\u7684\uff08\u6ce5\u571f\u7b49\uff09\u3002", "e" : ["\ufff9`Ka~`karkaren~ `ko~ `tefon~.\ufffa\ufffb\u8981\u6316\u4e95\u3002"]}]}], "stem" : "karkar", "tag" : "[\u758a 2]"} | 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"}, "tag": {"type": "string"}}, "required": ["t", "h", "stem", "tag"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 10311, "hash" : 3988648779, "artDyeHash" : 3988648779, "redacted" : false, "dyeManifestHash" : 298431819, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : ["Toss the watermelon chunks and mint together in a large bowl. Pour the lemon juice over the watermelon and toss again to coat evenly. Refrigerate 30 minutes before serving."], "ingredients" : ["1 watermelon, cut into bite-sized chunks", "4 sprigs fresh mint leaves, minced", "1/2 lemon, juiced"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "KM-Style Watermelon", "url" : "http://allrecipes.com/recipe/215575/km-style-watermelon/"} | 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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"ps": {"type": "integer"}, "xbox": {"type": "integer"}}, "required": ["ps", "xbox"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ps" : 3064, "xbox" : 1726} | json_instruct | {"type": "object", "properties": {"ps": {"type": "integer"}, "xbox": {"type": "integer"}}, "required": ["ps", "xbox"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "armylvlimit": {"type": "integer"}, "cost": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["id", "armylvlimit", "cost"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 1006, "armylvlimit" : 20, "cost" : [[1, 3000000], [22017, 2000]]}, {"id" : 1011, "armylvlimit" : 20, "cost" : [[1, 3000000], [22017, 2000]]}, {"id" : 1017, "armylvlimit" : 20, "cost" : [[1, 30000], [22016, 1000]]}, {"id" : 1029, "armylvlimit" : 20, "cost" : [[1, 30000], [22016, 1000]]}, {"id" : 1032, "armylvlimit" : 20, "cost" : [[1, 30000], [22016, 1000]]}, {"id" : 1035, "armylvlimit" : 20, "cost" : [[1, 30000], [22016, 1000]]}, {"id" : 1045, "armylvlimit" : 20, "cost" : [[1, 3000000], [22017, 2000]]}, {"id" : 1051, "armylvlimit" : 20, "cost" : [[1, 3000000], [22017, 2000]]}, {"id" : 1055, "armylvlimit" : 20, "cost" : [[1, 30000], [22016, 1000]]}, {"id" : 1057, "armylvlimit" : 20, "cost" : [[1, 3000000], [22017, 2000]]}, {"id" : 1062, "armylvlimit" : 20, "cost" : [[1, 3000000], [22017, 2000]]}, {"id" : 1079, "armylvlimit" : 20, "cost" : [[1, 3000000], [22017, 2000]]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "armylvlimit": {"type": "integer"}, "cost": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["id", "armylvlimit", "cost"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"pages/contato": {"type": "boolean"}}, "required": ["pages/contato"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "d5646e28555d28906ace", "c" : {"pages/contato" : false}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"pages/contato": {"type": "boolean"}}, "required": ["pages/contato"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "number"}, "feels_like": {"type": "number"}, "temp_min": {"type": "number"}, "temp_max": {"type": "number"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}, "sea_level": {"type": "integer"}, "grnd_level": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity", "sea_level", "grnd_level"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}, "gust": {"type": "integer"}}, "required": ["speed", "deg", "gust"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"coord" : {"lon" : 10.5, "lat" : 51.5}, "weather" : [{"id" : 800, "main" : "Clear", "description" : "clear sky", "icon" : "01d"}], "base" : "stations", "main" : {"temp" : 10.09, "feels_like" : 8.38, "temp_min" : 9.71, "temp_max" : 12.49, "pressure" : 1034, "humidity" : 47, "sea_level" : 1034, "grnd_level" : 997}, "visibility" : 10000, "wind" : {"speed" : 5.63, "deg" : 86, "gust" : 7}, "clouds" : {"all" : 6}, "dt" : 1650114477, "sys" : {"type" : 2, "id" : 74551, "country" : "DE", "sunrise" : 1650082819, "sunset" : 1650132895}, "timezone" : 7200, "id" : 2921044, "name" : "Germany", "cod" : 200} | json_instruct | {"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "number"}, "feels_like": {"type": "number"}, "temp_min": {"type": "number"}, "temp_max": {"type": "number"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}, "sea_level": {"type": "integer"}, "grnd_level": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity", "sea_level", "grnd_level"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}, "gust": {"type": "integer"}}, "required": ["speed", "deg", "gust"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x2636e24d8c1c820ee786aa16df2085f852b677f5", "tool" : "solhint", "start" : 1563659438.76293, "end" : 1563659442.7474766, "duration" : 3.984546661376953, "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"subreddit" : "huntersbell", "hour" : "01", "avg" : 1.6054054054054054}, {"subreddit" : "huntersbell", "hour" : "02", "avg" : 1.3681318681318682}, {"subreddit" : "huntersbell", "hour" : "03", "avg" : 1.474025974025974}, {"subreddit" : "huntersbell", "hour" : "04", "avg" : 1.6305732484076434}, {"subreddit" : "huntersbell", "hour" : "05", "avg" : 1.4873949579831933}, {"subreddit" : "huntersbell", "hour" : "06", "avg" : 1.423728813559322}, {"subreddit" : "huntersbell", "hour" : "07", "avg" : 1.5384615384615385}, {"subreddit" : "huntersbell", "hour" : "08", "avg" : 1.5128205128205128}, {"subreddit" : "huntersbell", "hour" : "09", "avg" : 1.7540983606557377}, {"subreddit" : "huntersbell", "hour" : "10", "avg" : 1.3448275862068966}, {"subreddit" : "huntersbell", "hour" : "11", "avg" : 2.0172413793103448}, {"subreddit" : "huntersbell", "hour" : "12", "avg" : 1.6551724137931034}, {"subreddit" : "huntersbell", "hour" : "13", "avg" : 1.5454545454545454}, {"subreddit" : "huntersbell", "hour" : "14", "avg" : 1.875}, {"subreddit" : "huntersbell", "hour" : "15", "avg" : 1.788888888888889}, {"subreddit" : "huntersbell", "hour" : "16", "avg" : 1.5080645161290323}, {"subreddit" : "huntersbell", "hour" : "17", "avg" : 1.4195804195804196}, {"subreddit" : "huntersbell", "hour" : "18", "avg" : 1.4710144927536233}, {"subreddit" : "huntersbell", "hour" : "19", "avg" : 1.5780346820809248}, {"subreddit" : "huntersbell", "hour" : "20", "avg" : 1.467455621301775}, {"subreddit" : "huntersbell", "hour" : "21", "avg" : 1.6826347305389222}, {"subreddit" : "huntersbell", "hour" : "22", "avg" : 1.4913294797687862}, {"subreddit" : "huntersbell", "hour" : "23", "avg" : 1.690909090909091}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[892.0, 1784.0, 2676.0, 3568.0, 4460.0, 5352.0, 6244.0, 7136.0, 8028.0, 8920.0, 9812.0, 10704.0, 11596.0, 12488.0, 13380.0, 14272.0, 15164.0, 16056.0, 16948.0, 17840.0, 18732.0, 19624.0, 20516.0, 21408.0, 22300.0, 23192.0, 24084.0, 24976.0, 25868.0, 26760.0, 27652.0, 28544.0, 29436.0, 30328.0, 31220.0, 32112.0, 33004.0, 33896.0, 34788.0, 35680.0, 36572.0, 37464.0, 38356.0, 39248.0, 40140.0, 41032.0, 41924.0, 42816.0, 43708.0, 44600.0, 45492.0, 46384.0, 47276.0, 48168.0, 49060.0, 49952.0, 50844.0, 51736.0, 52628.0, 53520.0, 54412.0, 55304.0, 56196.0, 57088.0, 57980.0, 58872.0, 59764.0, 60656.0, 61548.0, 62440.0, 63332.0, 64224.0, 65116.0, 66008.0, 66900.0, 67792.0, 68684.0, 69576.0, 70468.0, 71360.0, 72252.0, 73144.0, 74036.0, 74928.0, 75820.0, 76712.0, 77604.0, 78496.0, 79388.0, 80280.0, 81172.0, 82064.0, 82956.0, 83848.0, 84740.0, 85632.0, 86524.0, 87416.0, 88308.0, 89200.0], [992800.0, 1983249.0, 2973137.0, 3975453.0, 4956386.0, 5951872.0, 6931809.0, 7925973.0, 8918786.0, 9913096.0, 10902630.0, 11894628.0, 12887677.0, 13878959.0, 14868427.0, 15860104.0, 16852507.0, 17839054.0, 18830151.0, 19813836.0, 20817675.0, 21810166.0, 22972596.0, 23794351.0, 24765225.0, 25776327.0, 26770402.0, 27760945.0, 28759169.0, 29731550.0, 30721288.0, 31722803.0, 32703530.0, 33707558.0, 34688471.0, 35687735.0, 36678724.0, 37666128.0, 38665845.0, 39655206.0, 40643193.0, 41610111.0, 42602077.0, 43590005.0, 44580394.0, 45569674.0, 46544916.0, 47526856.0, 48539781.0, 49521284.0, 50675355.0, 51534917.0, 52527276.0, 53544574.0, 54479962.0, 55470227.0, 56445864.0, 57452569.0, 58431701.0, 59466247.0, 60457493.0, 61451532.0, 62456272.0, 63429770.0, 64427674.0, 65406635.0, 66419360.0, 67395288.0, 68536213.0, 69357969.0, 70374867.0, 71320699.0, 72309658.0, 73300252.0, 74352041.0, 75281319.0, 76277569.0, 77303248.0, 78253992.0, 79309775.0, 80298710.0, 81279649.0, 82395866.0, 83219239.0, 84182046.0, 85259543.0, 86180400.0, 87169762.0, 88167284.0, 89146545.0, 90140930.0, 91119031.0, 92150611.0, 93290400.0, 94108184.0, 95092242.0, 96054389.0, 97076634.0, 98156805.0, 99149124.0]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "username": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "username", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "17841406338772941", "username" : "ikroskun", "name" : "LiuKun"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "username": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "username", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : ["Red Oak, IA"], "state" : "IA", "postal_code" : "51566", "locality" : "Red Oak, IA", "lat" : 41.016459, "region" : {"fips" : "19", "abbr" : "IA", "name" : "Iowa"}, "city" : "Red Oak", "type" : "STANDARD", "lng" : -95.230901, "counties" : [{"fips" : "137", "name" : "Montgomery County"}, {"fips" : "145", "name" : "Page County"}, {"fips" : "155", "name" : "Pottawattamie 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "img": {"type": "string"}, "links": {"type": "object", "properties": {"website": {"type": "string"}, "linkedin": {"type": "string"}, "github": {"type": "string"}}, "required": ["website", "linkedin", "github"]}, "jobTitle": {"type": "string"}, "location": {"type": "object", "properties": {"city": {"type": "string"}, "state": {"type": "string"}, "country": {"type": "string"}}, "required": ["city", "state", "country"]}}, "required": ["id", "name", "img", "links", "jobTitle", "location"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "c645d2a9-f7a8-4546-b48d-7d98f91d79d5", "name" : "Preston Davis", "img" : "", "links" : {"website" : "http://www.prestondavis.io", "linkedin" : "https://www.linkedin.com/in/preston-davis-016211139/", "github" : "https://www.github.com/premdav"}, "jobTitle" : "Full Stack Web Developer", "location" : {"city" : "Oklahoma City", "state" : "OK", "country" : "USA"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "img": {"type": "string"}, "links": {"type": "object", "properties": {"website": {"type": "string"}, "linkedin": {"type": "string"}, "github": {"type": "string"}}, "required": ["website", "linkedin", "github"]}, "jobTitle": {"type": "string"}, "location": {"type": "object", "properties": {"city": {"type": "string"}, "state": {"type": "string"}, "country": {"type": "string"}}, "required": ["city", "state", "country"]}}, "required": ["id", "name", "img", "links", "jobTitle", "location"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : "sapitayong", "h" : [{"d" : [{"f" : "\uff08\u7bc0\u65e5\u671f\u9593\uff09\u6bba\u8c6c\u7684\u7528\u5177\u3002", "e" : ["\ufff9`Sapi~`ta~`yong~ `a~ `f~u`n~u`s~.\ufffa\ufffb\u6bba\u8c6c\u5200\u3002"]}]}], "stem" : "tayong"} | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"guzzlehttp/guzzle": {"type": "string"}}, "required": ["guzzlehttp/guzzle"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Fonts\\": {"type": "string"}}, "required": ["Fonts\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Fonts\\Tests\\": {"type": "string"}}, "required": ["Fonts\\Tests\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "require", "require-dev", "license", "authors", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "adamb/google-fonts", "description" : "Get a list of Google Fonts and search by type or weight", "type" : "library", "require" : {"guzzlehttp/guzzle" : "^7.0"}, "require-dev" : {"phpunit/phpunit" : "^9.0"}, "license" : "MIT", "authors" : [{"name" : "Adam Binnersley", "email" : "[email protected]"}], "autoload" : {"psr-4" : {"Fonts\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Fonts\\Tests\\" : "tests/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"guzzlehttp/guzzle": {"type": "string"}}, "required": ["guzzlehttp/guzzle"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Fonts\\": {"type": "string"}}, "required": ["Fonts\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Fonts\\Tests\\": {"type": "string"}}, "required": ["Fonts\\Tests\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "type", "require", "require-dev", "license", "authors", "autoload", "autoload-dev"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "status": {"type": "string"}, "date": {"type": "string"}, "publisher": {"type": "string"}, "description": {"type": "string"}, "copyright": {"type": "string"}, "caseSensitive": {"type": "boolean"}, "content": {"type": "string"}, "concept": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "display": {"type": "string"}}, "required": ["code", "display"]}}}, "required": ["resourceType", "id", "url", "version", "name", "status", "date", "publisher", "description", "copyright", "caseSensitive", "content", "concept"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resourceType" : "CodeSystem", "id" : "CareConnect-RegistrationStatus-1", "url" : "https://fhir.hl7.org.uk/STU3/CodeSystem/CareConnect-RegistrationStatus-1", "version" : "1.0.0", "name" : "Care Connect Registration Status", "status" : "draft", "date" : "2017-08-01T00:00:00+00:00", "publisher" : "HL7 UK", "description" : "A CodeSystem that identifies the status of registration for a patient at the healthcare organisation.", "copyright" : "Copyright \u00a9 2016 HL7 UK", "caseSensitive" : true, "content" : "complete", "concept" : [{"code" : "A", "display" : "Active"}, {"code" : "D", "display" : "Deduction Pending"}, {"code" : "I", "display" : "Inactive"}, {"code" : "R", "display" : "Registration Pending"}]} | json_instruct | {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "status": {"type": "string"}, "date": {"type": "string"}, "publisher": {"type": "string"}, "description": {"type": "string"}, "copyright": {"type": "string"}, "caseSensitive": {"type": "boolean"}, "content": {"type": "string"}, "concept": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "display": {"type": "string"}}, "required": ["code", "display"]}}}, "required": ["resourceType", "id", "url", "version", "name", "status", "date", "publisher", "description", "copyright", "caseSensitive", "content", "concept"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"closure-compiler": {"type": "string"}}, "required": ["closure-compiler"]}, "_release": {"type": "string"}, "_resolution": {"type": "object", "properties": {"type": {"type": "string"}, "branch": {"type": "string"}, "commit": {"type": "string"}}, "required": ["type", "branch", "commit"]}, "_source": {"type": "string"}, "_target": {"type": "string"}, "_originalSource": {"type": "string"}, "_direct": {"type": "boolean"}}, "required": ["name", "main", "authors", "description", "moduleType", "keywords", "license", "homepage", "ignore", "dependencies", "devDependencies", "_release", "_resolution", "_source", "_target", "_originalSource", "_direct"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "vibrant", "main" : "dist/Vibrant.js", "authors" : ["Jari Zwarts <[email protected]>"], "description" : "Get color variations from an image. Basically a JS port of Android's Palette", "moduleType" : ["amd"], "keywords" : ["color", "detection", "variation", "image", "picture", "canvas", "vibrant", "muted", "colour"], "license" : "MIT", "homepage" : "http://jari.io/", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {}, "devDependencies" : {"closure-compiler" : "~0.2.6"}, "_release" : "aa6ef202d5", "_resolution" : {"type" : "branch", "branch" : "master", "commit" : "aa6ef202d5054dfece70b3299af7c4ddf0d336af"}, "_source" : "https://github.com/jariz/vibrant.js.git", "_target" : "*", "_originalSource" : "vibrant", "_direct" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"closure-compiler": {"type": "string"}}, "required": ["closure-compiler"]}, "_release": {"type": "string"}, "_resolution": {"type": "object", "properties": {"type": {"type": "string"}, "branch": {"type": "string"}, "commit": {"type": "string"}}, "required": ["type", "branch", "commit"]}, "_source": {"type": "string"}, "_target": {"type": "string"}, "_originalSource": {"type": "string"}, "_direct": {"type": "boolean"}}, "required": ["name", "main", "authors", "description", "moduleType", "keywords", "license", "homepage", "ignore", "dependencies", "devDependencies", "_release", "_resolution", "_source", "_target", "_originalSource", "_direct"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : {"0" : {"m1" : "* \u0647\u0627\u0646 \u06a9\u0648\u0632\u0647\u200c\u06af\u0631\u0627 \u0628\u067e\u0627\u06cc \u0627\u06af\u0631 \u0647\u0634\u06cc\u0627\u0631\u06cc\u060c", "m2" : "\u062a\u0627 \u0686\u0646\u062f \u06a9\u0646\u06cc \u0628\u0631 \u06af\u0650\u0644 \u0645\u0631\u062f\u0645 \u062e\u0648\u0627\u0631\u06cc\u061f"}, "1" : {"m1" : "\u0627\u0646\u06af\u0634\u062a\u0650 \u0641\u0631\u06cc\u062f\u0648\u0646 \u0648 \u06a9\u064e\u0641\u0650 \u06a9\u06cc\u062e\u0633\u0631\u0648\u060c", "m2" : "\u0628\u0631\u0686\u0631\u062e \u0646\u0647\u0627\u062f\u0647\u200c\u0627\u06cc\u060c \u0686\u0647 \u0645\u06cc\u200c\u067e\u0646\u062f\u0627\u0631\u06cc\u061f"}}} | json_instruct | {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["360104008001", "\u516b\u5927\u5c71\u4eba\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["360104008002", "\u5cb1\u5c71\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["360104008005", "\u8fce\u5bbe\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["360104008006", "\u68a8\u56ed\u5357\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["360104008007", "\u68a8\u56ed\u5317\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["360104008008", "\u8fce\u5bbe\u4e1c\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["360104008009", "\u68a8\u56ed\u897f\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["360104008010", "\u6c5f\u8054\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["360104008011", "\u6885\u6e56\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["360104008012", "\u5c27\u987a\u5357\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["360104008013", "\u5c27\u987a\u5317\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["360104008014", "\u6c34\u69ad\u6e7e\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["360104008015", "\u541b\u6e56\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"/api": {"type": "object", "properties": {"target": {"type": "string"}, "secure": {"type": "boolean"}}, "required": ["target", "secure"]}, "/media": {"type": "object", "properties": {"target": {"type": "string"}, "secure": {"type": "boolean"}}, "required": ["target", "secure"]}, "/favicon.ico": {"type": "object", "properties": {"target": {"type": "string"}, "secure": {"type": "boolean"}}, "required": ["target", "secure"]}}, "required": ["/api", "/media", "/favicon.ico"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"/api" : {"target" : "http://localhost:3000/", "secure" : false}, "/media" : {"target" : "http://localhost:3000/", "secure" : false}, "/favicon.ico" : {"target" : "http://localhost:3000/", "secure" : false}} | json_instruct | {"type": "object", "properties": {"/api": {"type": "object", "properties": {"target": {"type": "string"}, "secure": {"type": "boolean"}}, "required": ["target", "secure"]}, "/media": {"type": "object", "properties": {"target": {"type": "string"}, "secure": {"type": "boolean"}}, "required": ["target", "secure"]}, "/favicon.ico": {"type": "object", "properties": {"target": {"type": "string"}, "secure": {"type": "boolean"}}, "required": ["target", "secure"]}}, "required": ["/api", "/media", "/favicon.ico"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"derivation" : "from G4862 (\u03c3\u03c5\u03bc\u03c0\u03c1\u03b5\u03c3\u03b2\u03cd\u03c4\u03b5\u03c1\u03bf\u03c2) and G4245 (\u03c3\u03c5\u03bc\u03c0\u03c1\u03b5\u03c3\u03b2\u03cd\u03c4\u03b5\u03c1\u03bf\u03c2);", "kjv_def" : "presbyter, also an elder", "lemma" : "\u03c3\u03c5\u03bc\u03c0\u03c1\u03b5\u03c3\u03b2\u03cd\u03c4\u03b5\u03c1\u03bf\u03c2", "frequency" : 1, "strongs_def" : " a co-presbyter", "outline" : "<ol><li> a fellow elder</li></ol>"} | json_instruct | {"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"slug": {"type": "string"}, "absolutePathRegex": {"type": "string"}, "prev": {"type": "object", "properties": {"fileAbsolutePath": {"type": "string"}, "fields": {"type": "object", "properties": {"slug": {"type": "string"}}, "required": ["slug"]}, "frontmatter": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}}, "required": ["fileAbsolutePath", "fields", "frontmatter"]}, "next": {"type": "object", "properties": {"fileAbsolutePath": {"type": "string"}, "fields": {"type": "object", "properties": {"slug": {"type": "string"}}, "required": ["slug"]}, "frontmatter": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}}, "required": ["fileAbsolutePath", "fields", "frontmatter"]}}, "required": ["slug", "absolutePathRegex", "prev", "next"]}}, "required": ["pageContext"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pageContext" : {"slug" : "/stained-doors", "absolutePathRegex" : "/^/Users/Home/Desktop/Code/painting-portfolio/content/projects/doors/", "prev" : {"fileAbsolutePath" : "/Users/Home/Desktop/Code/painting-portfolio/content/projects/fernwood-exterior/index.mdx", "fields" : {"slug" : "/fernwood-exterior"}, "frontmatter" : {"title" : "Fernwood Exterior"}}, "next" : {"fileAbsolutePath" : "/Users/Home/Desktop/Code/painting-portfolio/content/projects/cordova-bay/index.mdx", "fields" : {"slug" : "/living-room-and-bedroom"}, "frontmatter" : {"title" : "Living Room and Bedroom"}}}} | json_instruct | {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {"slug": {"type": "string"}, "absolutePathRegex": {"type": "string"}, "prev": {"type": "object", "properties": {"fileAbsolutePath": {"type": "string"}, "fields": {"type": "object", "properties": {"slug": {"type": "string"}}, "required": ["slug"]}, "frontmatter": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}}, "required": ["fileAbsolutePath", "fields", "frontmatter"]}, "next": {"type": "object", "properties": {"fileAbsolutePath": {"type": "string"}, "fields": {"type": "object", "properties": {"slug": {"type": "string"}}, "required": ["slug"]}, "frontmatter": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}}, "required": ["fileAbsolutePath", "fields", "frontmatter"]}}, "required": ["slug", "absolutePathRegex", "prev", "next"]}}, "required": ["pageContext"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/plugin-transform-runtime": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/runtime": {"type": "string"}, "babel-jest": {"type": "string"}, "babel-preset-env": {"type": "string"}, "jest": {"type": "string"}, "memory-fs": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/plugin-transform-runtime", "@babel/preset-env", "@babel/runtime", "babel-jest", "babel-preset-env", "jest", "memory-fs", "webpack"]}, "dependencies": {"type": "object", "properties": {"loader-utils": {"type": "string"}, "schema-utils": {"type": "string"}}, "required": ["loader-utils", "schema-utils"]}, "jest": {"type": "object", "properties": {"testEnvironment": {"type": "string"}}, "required": ["testEnvironment"]}}, "required": ["name", "version", "description", "keywords", "main", "scripts", "engines", "license", "repository", "author", "devDependencies", "dependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "webpack-loader-starter", "version" : "1.0.0", "description" : "A starting point for creating Webpack loaders based on the tutorial from the Webpack site", "keywords" : ["webpack", "loader", "starter", "boilerplate", "template", "scaffold"], "main" : "./dist/loader.js", "scripts" : {"build" : "./node_modules/.bin/babel src --out-dir dist", "test" : "jest"}, "engines" : {"node" : "~13"}, "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/james2doyle/webpack-loader-starter"}, "author" : "James Doyle <[email protected]>", "devDependencies" : {"@babel/cli" : "^7.8.4", "@babel/core" : "^7.8.7", "@babel/plugin-transform-runtime" : "^7.8.3", "@babel/preset-env" : "^7.8.7", "@babel/runtime" : "^7.8.7", "babel-jest" : "^25.1.0", "babel-preset-env" : "^1.7.0", "jest" : "^25.1.0", "memory-fs" : "^0.5.0", "webpack" : "^4.42.0"}, "dependencies" : {"loader-utils" : "^1.4.0", "schema-utils" : "^2.6.5"}, "jest" : {"testEnvironment" : "node"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/plugin-transform-runtime": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/runtime": {"type": "string"}, "babel-jest": {"type": "string"}, "babel-preset-env": {"type": "string"}, "jest": {"type": "string"}, "memory-fs": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/plugin-transform-runtime", "@babel/preset-env", "@babel/runtime", "babel-jest", "babel-preset-env", "jest", "memory-fs", "webpack"]}, "dependencies": {"type": "object", "properties": {"loader-utils": {"type": "string"}, "schema-utils": {"type": "string"}}, "required": ["loader-utils", "schema-utils"]}, "jest": {"type": "object", "properties": {"testEnvironment": {"type": "string"}}, "required": ["testEnvironment"]}}, "required": ["name", "version", "description", "keywords", "main", "scripts", "engines", "license", "repository", "author", "devDependencies", "dependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0xfe938786117fdb7f11a77877c40c6ea8bfa0c818", "tool" : "securify", "start" : 1563586224.4884021, "end" : 1563586228.711429, "duration" : 4.223026990890503, "analysis" : null} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"description": {"type": "string"}, "start_date": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["description", "start_date", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "SciPy 2016, the 15th annual Scientific Computing with Python conference, will be held July 11-17, 2016 in Austin, Texas. The annual SciPy Conference brings together over 650 participants from industry, academia, and government to showcase their latest projects, learn from skilled users and developers, and collaborate on code development. The full program will consist of 2 days of tutorials (July 11-12), 3 days of talks (July 13-15), and 2 days of developer sprints (July 16-17).", "start_date" : "2016-07-11", "title" : "SciPy 2016", "url" : "http://scipy2016.scipy.org/"} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "start_date": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["description", "start_date", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"temperature": {"type": "array", "items": {"type": "integer"}}, "util.gpu": {"type": "array", "items": {"type": "integer"}}, "util.memory": {"type": "array", "items": {"type": "integer"}}, "power.draw": {"type": "array", "items": {"type": "number"}}, "memory.used": {"type": "array", "items": {"type": "integer"}}, "timestamp": {"type": "array", "items": {"type": "number"}}}, "required": ["temperature", "util.gpu", "util.memory", "power.draw", "memory.used", "timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"temperature" : [43, 43, 43, 43, 43], "util.gpu" : [0, 0, 1, 1, 35], "util.memory" : [0, 0, 0, 0, 0], "power.draw" : [58.419, 58.574, 58.778, 61.25, 66.537], "memory.used" : [16384000, 16384000, 144048128, 144048128, 144048128], "timestamp" : [1629480668609.673, 1629480668697.9712, 1629480668798.074, 1629480668897.982, 1629480668998.101]} | json_instruct | {"type": "object", "properties": {"temperature": {"type": "array", "items": {"type": "integer"}}, "util.gpu": {"type": "array", "items": {"type": "integer"}}, "util.memory": {"type": "array", "items": {"type": "integer"}}, "power.draw": {"type": "array", "items": {"type": "number"}}, "memory.used": {"type": "array", "items": {"type": "integer"}}, "timestamp": {"type": "array", "items": {"type": "number"}}}, "required": ["temperature", "util.gpu", "util.memory", "power.draw", "memory.used", "timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1990, 6], [1999, 5], [2002, 5], [2005, 5], [2006, 11], [2009, 6], [2010, 8], [2012, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"and": {"type": "string"}, "between": {"type": "string"}, "click-to-start-recording": {"type": "string"}, "click-to-stop-recording": {"type": "string"}, "enter": {"type": "string"}, "enter-text": {"type": "string"}, "integer": {"type": "string"}, "larger-or-equal-to": {"type": "string"}, "number": {"type": "string"}, "select-between": {"type": "string"}, "select-placeholder": {"type": "string"}, "slider-disabled": {"type": "string"}, "smaller-or-equal-to": {"type": "string"}}, "required": ["and", "between", "click-to-start-recording", "click-to-stop-recording", "enter", "enter-text", "integer", "larger-or-equal-to", "number", "select-between", "select-placeholder", "slider-disabled", "smaller-or-equal-to"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"and" : "e", "between" : "tra", "click-to-start-recording" : "Cliccare per avviare la registrazione", "click-to-stop-recording" : "Cliccare per interrompere la registrazione", "enter" : "Entra in", "enter-text" : "Inserire il testo...", "integer" : "intero", "larger-or-equal-to" : "pi\u00f9 grande o uguale a", "number" : "numero", "select-between" : "Selezionare tra", "select-placeholder" : "Selezionare...", "slider-disabled" : "In questo momento l'ingresso del cursore \u00e8 disabilitato.", "smaller-or-equal-to" : "pi\u00f9 piccolo o uguale a"} | json_instruct | {"type": "object", "properties": {"and": {"type": "string"}, "between": {"type": "string"}, "click-to-start-recording": {"type": "string"}, "click-to-stop-recording": {"type": "string"}, "enter": {"type": "string"}, "enter-text": {"type": "string"}, "integer": {"type": "string"}, "larger-or-equal-to": {"type": "string"}, "number": {"type": "string"}, "select-between": {"type": "string"}, "select-placeholder": {"type": "string"}, "slider-disabled": {"type": "string"}, "smaller-or-equal-to": {"type": "string"}}, "required": ["and", "between", "click-to-start-recording", "click-to-stop-recording", "enter", "enter-text", "integer", "larger-or-equal-to", "number", "select-between", "select-placeholder", "slider-disabled", "smaller-or-equal-to"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "acabed5500d7ad74b60c01d736b4d2ca3f16108a"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"source": {"type": "object", "properties": {"type": {"type": "string"}, "path": {"type": "string"}}, "required": ["type", "path"]}}, "required": ["source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"source" : {"type" : "local", "path" : "/Users/slikk66/.plugman/cache/org.apache.cordova.media/0.2.15/package"}} | json_instruct | {"type": "object", "properties": {"source": {"type": "object", "properties": {"type": {"type": "string"}, "path": {"type": "string"}}, "required": ["type", "path"]}}, "required": ["source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"timestamp" : "2020-10-11T09:10:27Z", "data" : [{"data_type" : "pm10", "value" : "0.20", "max" : "1.00", "min" : "0.00", "sd" : "0.41"}, {"data_type" : "pm2.5", "value" : "0.20", "max" : "1.00", "min" : "0.00", "sd" : "0.41"}, {"data_type" : "pm1", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}, {"data_type" : "pm10", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00", "sensor" : 2}, {"data_type" : "pm2.5", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00", "sensor" : 2}, {"data_type" : "pm1", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00", "sensor" : 2}, {"data_type" : "noise", "value" : "30.24", "max" : "35.30", "min" : "26.60", "sd" : "1.26"}, {"data_type" : "illuminance", "value" : "52.00", "max" : "52.00", "min" : "52.00", "sd" : "0.00"}, {"data_type" : "irradiance", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}, {"data_type" : "temperature", "value" : "6.04", "max" : "6.09", "min" : "6.01", "sd" : "0.08"}, {"data_type" : "humidity", "value" : "71.15", "max" : "71.46", "min" : "70.37", "sd" : "0.39"}, {"data_type" : "presure", "value" : "691.18", "max" : "691.27", "min" : "691.09", "sd" : "0.14"}, {"data_type" : "voltage", "value" : "5.04", "max" : "5.05", "min" : "5.04", "sd" : "0.04"}, {"data_type" : "batery", "value" : "4.23", "max" : "4.23", "min" : "4.22", "sd" : "0.05"}, {"data_type" : "panel", "value" : "0.01", "max" : "0.03", "min" : "0.00", "sd" : "0.06"}]} | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["450222102001", "\u592a\u5e73\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["450222102201", "\u592a\u5e73\u6751\u59d4\u4f1a", "122", "0"], ["450222102202", "\u9f99\u5174\u6751\u59d4\u4f1a", "220", "0"], ["450222102203", "\u4e0a\u706b\u6751\u59d4\u4f1a", "220", "0"], ["450222102204", "\u957f\u5cad\u6751\u59d4\u4f1a", "220", "0"], ["450222102205", "\u9ec4\u5b9c\u6751\u59d4\u4f1a", "220", "0"], ["450222102206", "\u8fd1\u6f6d\u6751\u59d4\u4f1a", "220", "0"], ["450222102207", "\u6768\u6885\u6751\u59d4\u4f1a", "220", "0"], ["450222102208", "\u677f\u8d21\u6751\u59d4\u4f1a", "220", "0"], ["450222102209", "\u897f\u5cb8\u6751\u59d4\u4f1a", "220", "0"], ["450222102210", "\u6c5f\u5934\u6751\u59d4\u4f1a", "220", "0"], ["450222102211", "\u6728\u754c\u6751\u59d4\u4f1a", "220", "0"], ["450222102212", "\u5c71\u5480\u6751\u59d4\u4f1a", "220", "0"], ["450222102213", "\u677f\u6599\u6751\u59d4\u4f1a", "220", "0"], ["450222102214", "\u4e0a\u6cb9\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "allowanonymous": {"type": "boolean"}, "allowedgroups": {"type": "array", "items": {"type": "string"}}, "apis": {"type": "object", "properties": {"loglist": {"type": "object", "properties": {"allowanonymous": {"type": "boolean"}}, "required": ["allowanonymous"]}}, "required": ["loglist"]}}, "required": ["title", "allowanonymous", "allowedgroups", "apis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "General", "allowanonymous" : false, "allowedgroups" : ["public"], "apis" : {"loglist" : {"allowanonymous" : false}}} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "allowanonymous": {"type": "boolean"}, "allowedgroups": {"type": "array", "items": {"type": "string"}}, "apis": {"type": "object", "properties": {"loglist": {"type": "object", "properties": {"allowanonymous": {"type": "boolean"}}, "required": ["allowanonymous"]}}, "required": ["loglist"]}}, "required": ["title", "allowanonymous", "allowedgroups", "apis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "extract_to": {"type": "string"}, "pre_install": {"type": "array", "items": {"type": "string"}}, "bin": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "checkver": {"type": "string"}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["version", "description", "homepage", "license", "url", "hash", "extract_to", "pre_install", "bin", "shortcuts", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "6.1.9", "description" : ".NET debugger and assembly editor", "homepage" : "https://github.com/dnSpyEx/dnSpy", "license" : "GPL-3.0-only", "url" : "https://github.com/dnSpyEx/dnSpy/releases/download/v6.1.9/dnSpy-net-win64.zip", "hash" : "8c01e7fd5c1684cd52dbee6c18d267990f2c1d2f3cfd23d037ea324508ce8e12", "extract_to" : "dnSpy", "pre_install" : ["Expand-7zipArchive \"$dir\\dnSpy\\dnSpy-net-win64.zip\" \"$dir\" -Removal", "Remove-Item \"$dir\\dnSpy\" -Force -Recurse"], "bin" : [["dnSpy.Console.exe", "dnSpy-win64.Console"], ["dnSpy.exe", "dnSpy-win64"]], "shortcuts" : [["dnSpy.exe", "dnSpy-win64"]], "checkver" : "github", "autoupdate" : {"url" : "https://github.com/dnSpyEx/dnSpy/releases/download/v$version/dnSpy-net-win64.zip"}} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "extract_to": {"type": "string"}, "pre_install": {"type": "array", "items": {"type": "string"}}, "bin": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "checkver": {"type": "string"}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["version", "description", "homepage", "license", "url", "hash", "extract_to", "pre_install", "bin", "shortcuts", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"compileOnSave": {"type": "boolean"}, "compilerOptions": {"type": "object", "properties": {"esModuleInterop": {"type": "boolean"}, "lib": {"type": "array", "items": {"type": "string"}}, "outDir": {"type": "string"}, "declaration": {"type": "boolean"}}, "required": ["esModuleInterop", "lib", "outDir", "declaration"]}, "include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["compileOnSave", "compilerOptions", "include", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"compileOnSave" : true, "compilerOptions" : {"esModuleInterop" : true, "lib" : ["esnext", "dom"], "outDir" : "types", "declaration" : true}, "include" : ["src/**/*"], "exclude" : ["node_modules", "**/*.test.ts"]} | json_instruct | {"type": "object", "properties": {"compileOnSave": {"type": "boolean"}, "compilerOptions": {"type": "object", "properties": {"esModuleInterop": {"type": "boolean"}, "lib": {"type": "array", "items": {"type": "string"}}, "outDir": {"type": "string"}, "declaration": {"type": "boolean"}}, "required": ["esModuleInterop", "lib", "outDir", "declaration"]}, "include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["compileOnSave", "compilerOptions", "include", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"10017": {"type": "string"}, "10019": {"type": "string"}, "10021": {"type": "string"}}, "required": ["10017", "10019", "10021"]}, "timeto": {"type": "object", "properties": {"10017": {"type": "number"}, "10019": {"type": "number"}, "10021": {"type": "number"}}, "required": ["10017", "10019", "10021"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 10018, "title" : ["[High Plains, Cliff's Edge]"], "description" : ["The plain ends just to the south at the edge of a deep ravine, where the wind blows wispy tendrils of mist past the sudden border of the grass to disperse over the rocks far below. The dark forms of huge birds circle overhead, casting drifting shadows in the fog-filtered sunlight.", "The plain ends just to the south at the edge of a deep ravine, where the wind blows wispy tendrils of mist past the sudden border of the grass to disperse over the rocks far below. The dark forms of huge birds circle overhead, casting drifting shadows over the fog-shrouded moons."], "paths" : ["Obvious paths: northeast, southeast, west"], "location" : "the Yegharren Plains", "wayto" : {"10017" : "southeast", "10019" : "northeast", "10021" : "west"}, "timeto" : {"10017" : 0.2, "10019" : 0.2, "10021" : 0.2}, "image" : "en-sylvarraend-1264234799.png", "image_coords" : [1270, 488, 1280, 498], "tags" : ["some cothinar flower"]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"10017": {"type": "string"}, "10019": {"type": "string"}, "10021": {"type": "string"}}, "required": ["10017", "10019", "10021"]}, "timeto": {"type": "object", "properties": {"10017": {"type": "number"}, "10019": {"type": "number"}, "10021": {"type": "number"}}, "required": ["10017", "10019", "10021"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "docFormat": {"type": "string"}, "triples": {"type": "array", "items": {"type": "object", "properties": {"triple": {"type": "object", "properties": {"subject": {"type": "string"}, "predicate": {"type": "string"}, "object": {"type": "string"}}, "required": ["subject", "predicate", "object"]}}, "required": ["triple"]}}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "tags", "friends", "greeting", "favoriteFruit", "location", "docFormat", "triples"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "55ee5e446d09a8750b4403e6", "index" : 788, "guid" : "49923b0a-a6d4-4a5a-bfdf-58247b631713", "isActive" : true, "balance" : "$63,550.93", "picture" : "http://placehold.it/32x32", "age" : 66, "eyeColor" : "brown", "name" : "Ryan Farrell", "gender" : "male", "company" : "HALAP", "email" : "[email protected]", "phone" : "+1 (802) 553-3789", "address" : "557 Townsend Street, Coyote, Idaho, 4908", "about" : "Consequat nisi eu Lorem do quis elit est. Irure nostrud minim commodo sunt deserunt enim culpa eiusmod tempor aliqua exercitation nulla incididunt adipisicing. Ut esse velit anim velit ullamco id occaecat. Magna ut incididunt pariatur do duis tempor nisi reprehenderit duis ut dolore labore elit. Magna dolore amet amet eiusmod adipisicing veniam amet ipsum. Do anim pariatur in ex veniam esse ex enim minim id voluptate nisi minim qui. Id magna anim in quis non eiusmod id.\r\n", "registered" : "2014-06-12T04:37:05 -07:00", "tags" : ["minim", "tempor", "nisi", "aute", "ut", "enim", "magna"], "friends" : [{"id" : 0, "name" : "Lelia Gardner"}, {"id" : 1, "name" : "Denise Nash"}, {"id" : 2, "name" : "Hardy Maddox"}], "greeting" : "Hello, Ryan Farrell! You have 7 unread messages.", "favoriteFruit" : "pear", "location" : {"latitude" : 84.227039, "longitude" : 100.42594}, "docFormat" : "json", "triples" : [{"triple" : {"subject" : "/sample-data/data-788.json", "predicate" : "http://www.w3.org/2000/01/rdf-schema#label", "object" : "Ryan Farrell"}}, {"triple" : {"subject" : "/sample-data/data-788.json", "predicate" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "object" : "http://xmlns.com/foaf/0.1/Person"}}, {"triple" : {"subject" : "/sample-data/data-788.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-2056.json"}}, {"triple" : {"subject" : "/sample-data/data-788.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-2886.json"}}, {"triple" : {"subject" : "/sample-data/data-788.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-543.json"}}]} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "docFormat": {"type": "string"}, "triples": {"type": "array", "items": {"type": "object", "properties": {"triple": {"type": "object", "properties": {"subject": {"type": "string"}, "predicate": {"type": "string"}, "object": {"type": "string"}}, "required": ["subject", "predicate", "object"]}}, "required": ["triple"]}}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "tags", "friends", "greeting", "favoriteFruit", "location", "docFormat", "triples"], "$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"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"gulp-rename": {"type": "string"}, "yeoman-generator": {"type": "string"}}, "required": ["gulp-rename", "yeoman-generator"]}, "gitHead": {"type": "string"}, "description": {"type": "string"}, "_npmVersion": {"type": "string"}, "_nodeVersion": {"type": "string"}, "dist": {"type": "object", "properties": {"integrity": {"type": "string"}, "shasum": {"type": "string"}, "tarball": {"type": "string"}}, "required": ["integrity", "shasum", "tarball"]}, "versions": {"type": "array", "items": {"type": "object", "properties": {"number": {"type": "string"}, "date": {"type": "string"}}, "required": ["number", "date"]}}, "created": {"type": "string"}, "modified": {"type": "string"}, "lastPublisher": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "owners": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}}, "required": ["name", "version", "license", "author", "files", "keywords", "dependencies", "gitHead", "description", "_npmVersion", "_nodeVersion", "dist", "versions", "created", "modified", "lastPublisher", "owners"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "generator-react-native-cross-platform", "version" : "0.8.6", "license" : "ISC", "author" : {"name" : "Tim Behrsin", "email" : "[email protected]"}, "files" : ["generators"], "keywords" : ["yeoman-generator"], "dependencies" : {"gulp-rename" : "^1.2.2", "yeoman-generator" : "^1.1.1"}, "gitHead" : "72e39381a6c9d0b8359bd2e6526d40dbe37b7b1c", "description" : "Creates two projects within one repository: - Smartphone app (React Native) and desktop app (React Native Web with Electron) - Server in Node.js (Mongoose, Docker, SASS, Express, Handlebars)", "_npmVersion" : "5.0.3", "_nodeVersion" : "6.2.1", "dist" : {"integrity" : "sha512-cVt8W7+76oRqvOLD5SXjI1FR2joI24JJ6gTE5ymQQdik304Hh7HqCpPO7dLRw8O48Nxn2O4nKGRiRbaVFhZcGw==", "shasum" : "5875725379e83e4a8a36f0f598b6a4682a49eaca", "tarball" : "https://registry.npmjs.org/generator-react-native-cross-platform/-/generator-react-native-cross-platform-0.8.6.tgz"}, "versions" : [{"number" : "0.8.1", "date" : "2017-07-16T17:23:18.933Z"}, {"number" : "0.8.2", "date" : "2017-07-17T12:30:17.622Z"}, {"number" : "0.8.3", "date" : "2017-07-17T12:33:50.647Z"}, {"number" : "0.8.5", "date" : "2017-07-17T12:39:37.261Z"}, {"number" : "0.8.6", "date" : "2017-07-17T13:03:09.777Z"}], "created" : "2017-07-16T17:23:18.933Z", "modified" : "2017-07-17T13:03:09.777Z", "lastPublisher" : {"name" : "tbehrsin", "email" : "[email protected]"}, "owners" : [{"name" : "tbehrsin", "email" : "[email protected]"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"gulp-rename": {"type": "string"}, "yeoman-generator": {"type": "string"}}, "required": ["gulp-rename", "yeoman-generator"]}, "gitHead": {"type": "string"}, "description": {"type": "string"}, "_npmVersion": {"type": "string"}, "_nodeVersion": {"type": "string"}, "dist": {"type": "object", "properties": {"integrity": {"type": "string"}, "shasum": {"type": "string"}, "tarball": {"type": "string"}}, "required": ["integrity", "shasum", "tarball"]}, "versions": {"type": "array", "items": {"type": "object", "properties": {"number": {"type": "string"}, "date": {"type": "string"}}, "required": ["number", "date"]}}, "created": {"type": "string"}, "modified": {"type": "string"}, "lastPublisher": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "owners": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}}, "required": ["name", "version", "license", "author", "files", "keywords", "dependencies", "gitHead", "description", "_npmVersion", "_nodeVersion", "dist", "versions", "created", "modified", "lastPublisher", "owners"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"manufacturer" : "beafon", "market_name" : "M6s", "codename" : "M6s", "model" : "M6s"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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_4faew", "name" : "Hogwing"}, "date" : {"day" : 1585353600, "full" : 1585409119, "month" : 1583020800, "week" : 1584835200}, "id" : "t3_fqm6mm", "picture" : {"filesize" : 161018, "fullUrl" : "https://external-preview.redd.it/5uJEmpxq_EsY1V8j2eFUQKm8K13n1Bi_2nCC_T7Af-w.jpg?auto=webp&s=9691b343ea14e07acfa3d8456fdc3ad96fe38f99", "hash" : "115e70ee25", "height" : 853, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAQAAwDASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQMG/8QAIRAAAgEDBQADAAAAAAAAAAAAAQIDAAURBBIhMVETMnH/xAAVAQEBAAAAAAAAAAAAAAAAAAABAv/EABkRAAIDAQAAAAAAAAAAAAAAAAECABESMf/aAAwDAQACEQMRAD8AoLKmm+VwixM7HORncSfR5R894TSTPE8Zcg/YgHPFay46RTMWMYZ+eRGMHHZ/aHisMb7iyAnPZU+ChWfRvktguRXZ/9k=", "url" : "https://external-preview.redd.it/5uJEmpxq_EsY1V8j2eFUQKm8K13n1Bi_2nCC_T7Af-w.jpg?width=640&crop=smart&auto=webp&s=be08dd472104cb8184f8a4d8b940f73f0084cff0", "width" : 640}, "score" : {"comments" : 6, "downs" : 0, "ratio" : 0.97, "ups" : 83, "value" : 83}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "Sci-fi greeble panels made from cereal box", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/fqm6mm/scifi_greeble_panels_made_from_cereal_box/"} | 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": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["610528001001", "\u8f66\u7ad9\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["610528001002", "\u671b\u6e56\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["610528001003", "\u5b9d\u5854\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["610528001004", "\u6e2d\u5316\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["610528001005", "\u9676\u827a\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["610528001006", "\u5bcc\u534e\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["610528001007", "\u6e2d\u8fd0\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["610528001008", "\u4e66\u5e97\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["610528001009", "\u6e29\u6cc9\u793e\u533a", "121", "0"], ["610528001010", "\u77f3\u5ddd\u6cb3\u793e\u533a", "121", "0"], ["610528001200", "\u675c\u6751\u59d4\u4f1a", "122", "0"], ["610528001201", "\u5357\u97e9\u6751\u59d4\u4f1a", "122", "0"], ["610528001202", "\u4e1c\u5316\u6751\u59d4\u4f1a", "122", "0"], ["610528001203", "\u83b2\u6e56\u6751\u59d4\u4f1a", "122", "0"], ["610528001204", "\u8fde\u57ce\u6751\u59d4\u4f1a", "122", "0"], ["610528001205", "\u5367\u9f99\u6751\u59d4\u4f1a", "122", "0"], ["610528001206", "\u5c16\u89d2\u6751\u59d4\u4f1a", "122", "0"], ["610528001207", "\u96c6\u65b0\u6751\u59d4\u4f1a", "122", "0"], ["610528001208", "\u8fe4\u5c71\u6751\u59d4\u4f1a", "122", "0"], ["610528001209", "\u8c22\u6751\u59d4\u4f1a", "122", "0"], ["610528001210", "\u8096\u534e\u6751\u59d4\u4f1a", "122", "0"], ["610528001211", "\u7559\u62db\u6751\u59d4\u4f1a", "122", "0"], ["610528001212", "\u891a\u586c\u6751\u59d4\u4f1a", "122", "0"], ["610528001214", "\u59da\u6751\u59d4\u4f1a", "220", "0"], ["610528001215", "\u65b0\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["610528001216", "\u4e1c\u6e20\u6751\u59d4\u4f1a", "220", "0"], ["610528001217", "\u5411\u9633\u6751\u59d4\u4f1a", "220", "0"], ["610528001219", "\u4e0a\u5b98\u6751\u59d4\u4f1a", "121", "0"], ["610528001220", "\u725b\u6751\u59d4\u4f1a", "122", "0"], ["610528001221", "\u7682\u89d2\u6751\u59d4\u4f1a", "122", "0"], ["610528001222", "\u5143\u826f\u6751\u59d4\u4f1a", "122", "0"], ["610528001223", "\u4f59\u6e7e\u6751\u59d4\u4f1a", "122", "0"], ["610528001224", "\u4e94\u661f\u6751\u59d4\u4f1a", "220", "0"], ["610528001225", "\u5317\u91cc\u6751\u59d4\u4f1a", "122", "0"], ["610528001226", "\u5b9a\u56fd\u6751\u59d4\u4f1a", "122", "0"], ["610528001229", "\u534e\u6731\u6751\u59d4\u4f1a", "121", "0"], ["610528001230", "\u4f55\u4ed9\u6751\u59d4\u4f1a", "122", "0"], ["610528001231", "\u4e0b\u5e99\u6751\u59d4\u4f1a", "122", "0"], ["610528001232", "\u65e7\u53bf\u6751\u59d4\u4f1a", "122", "0"], ["610528001233", "\u95eb\u6751\u6751\u59d4\u4f1a", "122", "0"], ["610528001235", "\u4f18\u4e1c\u6751\u59d4\u4f1a", "220", "0"], ["610528001237", "\u9526\u5ddd\u6751\u59d4\u4f1a", "220", "0"], ["610528001238", "\u987a\u9633\u6751\u59d4\u4f1a", "122", "0"], ["610528001239", "\u6000\u9633\u6751\u59d4\u4f1a", "220", "0"], ["610528001240", "\u53cc\u4e49\u6751\u59d4\u4f1a", "122", "0"], ["610528001242", "\u5218\u5761\u6751\u59d4\u4f1a", "122", "0"], ["610528001244", "\u4e1c\u65b0\u6751\u59d4\u4f1a", "122", "0"], ["610528001245", "\u891a\u738b\u6751\u59d4\u4f1a", "122", "0"], ["610528001246", "\u6e29\u6cc9\u6751\u59d4\u4f1a", "122", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"browser": {"type": "object", "properties": {"./foo.js": {"type": "string"}, "./nested/foo.js": {"type": "string"}}, "required": ["./foo.js", "./nested/foo.js"]}}, "required": ["browser"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"browser" : {"./foo.js" : "./foo-browser.js", "./nested/foo.js" : "./nested/foo-browser.js"}} | json_instruct | {"type": "object", "properties": {"browser": {"type": "object", "properties": {"./foo.js": {"type": "string"}, "./nested/foo.js": {"type": "string"}}, "required": ["./foo.js", "./nested/foo.js"]}}, "required": ["browser"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "enablement_condition_base": {"type": "string"}, "enablement_condition_use": {"type": "string"}, "enablement_condition_1": {"type": "string"}, "_class": {"type": "string"}, "_classVer": {"type": "string"}}, "required": ["id", "enablement_condition_base", "enablement_condition_use", "enablement_condition_1", "_class", "_classVer"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "654031c0-62b4-11e6-a333-3141fb1fa606", "enablement_condition_base" : "2", "enablement_condition_use" : "", "enablement_condition_1" : "", "_class" : "enablement@develop-and-test", "_classVer" : ""} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "enablement_condition_base": {"type": "string"}, "enablement_condition_use": {"type": "string"}, "enablement_condition_1": {"type": "string"}, "_class": {"type": "string"}, "_classVer": {"type": "string"}}, "required": ["id", "enablement_condition_base", "enablement_condition_use", "enablement_condition_1", "_class", "_classVer"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"oid": {"type": "string"}, "hafta": {"type": "integer"}, "buyukIkramiyeKazananIl": {"type": "string"}, "cekilisTarihi": {"type": "string"}, "cekilisTuru": {"type": "string"}, "rakamlar": {"type": "string"}, "rakamlarNumaraSirasi": {"type": "string"}, "devretti": {"type": "boolean"}, "devirSayisi": {"type": "integer"}, "bilenKisiler": {"type": "array", "items": {"type": "object", "properties": {"oid": {"type": "string"}, "kisiBasinaDusenIkramiye": {"type": "number"}, "kisiSayisi": {"type": "integer"}, "tur": {"type": "string"}}, "required": ["oid", "kisiBasinaDusenIkramiye", "kisiSayisi", "tur"]}}, "buyukIkrKazananIlIlceler": {"type": "array", "items": {"type": "object", "properties": {"il": {"type": "string"}, "ilView": {"type": "string"}, "ilce": {"type": "string"}, "ilceView": {"type": "string"}}, "required": ["il", "ilView", "ilce", "ilceView"]}}, "kibrisHasilati": {"type": "integer"}, "devirTutari": {"type": "number"}, "kolonSayisi": {"type": "integer"}, "kdv": {"type": "number"}, "toplamHasilat": {"type": "integer"}, "hasilat": {"type": "number"}, "sov": {"type": "number"}, "ikramiyeEH": {"type": "number"}, "buyukIkramiye": {"type": "number"}, "haftayaDevredenTutar": {"type": "number"}}, "required": ["oid", "hafta", "buyukIkramiyeKazananIl", "cekilisTarihi", "cekilisTuru", "rakamlar", "rakamlarNumaraSirasi", "devretti", "devirSayisi", "bilenKisiler", "buyukIkrKazananIlIlceler", "kibrisHasilati", "devirTutari", "kolonSayisi", "kdv", "toplamHasilat", "hasilat", "sov", "ikramiyeEH", "buyukIkramiye", "haftayaDevredenTutar"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"oid" : "3zfnntjd0ist4900", "hafta" : 808, "buyukIkramiyeKazananIl" : "", "cekilisTarihi" : "29/01/2018", "cekilisTuru" : "ON_NUMARA", "rakamlar" : "56#39#51#22#33#77#80#61#63#60#03#32#72#37#30#02#29#38#75#20#57#18", "rakamlarNumaraSirasi" : "02 - 03 - 18 - 20 - 22 - 29 - 30 - 32 - 33 - 37 - 38 - 39 - 51 - 56 - 57 - 60 - 61 - 63 - 72 - 75 - 77 - 80", "devretti" : false, "devirSayisi" : 0, "bilenKisiler" : [{"oid" : "3zu1cajd0ist4405", "kisiBasinaDusenIkramiye" : 3.05, "kisiSayisi" : 200437, "tur" : "$HIC"}, {"oid" : "3zu1cajd0ist4404", "kisiBasinaDusenIkramiye" : 4.45, "kisiSayisi" : 106626, "tur" : "$6_BILEN"}, {"oid" : "3zu1cajd0ist4403", "kisiBasinaDusenIkramiye" : 26.35, "kisiSayisi" : 17028, "tur" : "$7_BILEN"}, {"oid" : "3zu1cajd0ist4402", "kisiBasinaDusenIkramiye" : 152.3, "kisiSayisi" : 1552, "tur" : "$8_BILEN"}, {"oid" : "3zu1cajd0ist4401", "kisiBasinaDusenIkramiye" : 2486.05, "kisiSayisi" : 95, "tur" : "$9_BILEN"}, {"oid" : "3zu1cajd0ist4400", "kisiBasinaDusenIkramiye" : 118062.8, "kisiSayisi" : 3, "tur" : "$10_BILEN"}], "buyukIkrKazananIlIlceler" : [{"il" : "07", "ilView" : "ANTALYA", "ilce" : "00719", "ilceView" : "MURATPA\u015eA"}, {"il" : "10", "ilView" : "BALIKES\u0130R", "ilce" : "01030", "ilceView" : "KARES\u0130"}, {"il" : "16", "ilView" : "BURSA", "ilce" : "01614", "ilceView" : "KESTEL"}], "kibrisHasilati" : 18292, "devirTutari" : 0.48, "kolonSayisi" : 6188400, "kdv" : 941202.92, "toplamHasilat" : 6188400, "hasilat" : 5247197.08, "sov" : 524719.71, "ikramiyeEH" : 4722477.37, "buyukIkramiye" : 354185.8, "haftayaDevredenTutar" : 0.06} | json_instruct | {"type": "object", "properties": {"oid": {"type": "string"}, "hafta": {"type": "integer"}, "buyukIkramiyeKazananIl": {"type": "string"}, "cekilisTarihi": {"type": "string"}, "cekilisTuru": {"type": "string"}, "rakamlar": {"type": "string"}, "rakamlarNumaraSirasi": {"type": "string"}, "devretti": {"type": "boolean"}, "devirSayisi": {"type": "integer"}, "bilenKisiler": {"type": "array", "items": {"type": "object", "properties": {"oid": {"type": "string"}, "kisiBasinaDusenIkramiye": {"type": "number"}, "kisiSayisi": {"type": "integer"}, "tur": {"type": "string"}}, "required": ["oid", "kisiBasinaDusenIkramiye", "kisiSayisi", "tur"]}}, "buyukIkrKazananIlIlceler": {"type": "array", "items": {"type": "object", "properties": {"il": {"type": "string"}, "ilView": {"type": "string"}, "ilce": {"type": "string"}, "ilceView": {"type": "string"}}, "required": ["il", "ilView", "ilce", "ilceView"]}}, "kibrisHasilati": {"type": "integer"}, "devirTutari": {"type": "number"}, "kolonSayisi": {"type": "integer"}, "kdv": {"type": "number"}, "toplamHasilat": {"type": "integer"}, "hasilat": {"type": "number"}, "sov": {"type": "number"}, "ikramiyeEH": {"type": "number"}, "buyukIkramiye": {"type": "number"}, "haftayaDevredenTutar": {"type": "number"}}, "required": ["oid", "hafta", "buyukIkramiyeKazananIl", "cekilisTarihi", "cekilisTuru", "rakamlar", "rakamlarNumaraSirasi", "devretti", "devirSayisi", "bilenKisiler", "buyukIkrKazananIlIlceler", "kibrisHasilati", "devirTutari", "kolonSayisi", "kdv", "toplamHasilat", "hasilat", "sov", "ikramiyeEH", "buyukIkramiye", "haftayaDevredenTutar"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "flourisher", "definition" : "One who flourishes."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "image", "date"]}}, "relate": {"type": "array", "items": {"type": "object", "properties": {"relate": {"type": "string"}, "src": {"type": "integer"}, "dst": {"type": "integer"}}, "required": ["relate", "src", "dst"]}}}, "required": ["id", "node", "relate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 65214, "node" : [{"id" : 65214, "name" : "\u5211\u4e8b110\u30ad\u30ed", "image" : "//lain.bgm.tv/pic/cover/m/ec/bf/65214_4Cd01.jpg", "date" : "2013-04-25"}, {"id" : 102456, "name" : "\u5211\u4e8b110\u30ad\u30ed2", "image" : "//lain.bgm.tv/pic/cover/m/9f/0a/102456_Dc9cF.jpg", "date" : "2014-04-17"}], "relate" : [{"relate" : "\u7eed\u96c6", "src" : 65214, "dst" : 102456}, {"relate" : "\u524d\u4f20", "src" : 102456, "dst" : 65214}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "node": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "image": {"type": "string"}, "date": {"type": "string"}}, "required": ["id", "name", "image", "date"]}}, "relate": {"type": "array", "items": {"type": "object", "properties": {"relate": {"type": "string"}, "src": {"type": "integer"}, "dst": {"type": "integer"}}, "required": ["relate", "src", "dst"]}}}, "required": ["id", "node", "relate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"gpk": {"type": "string"}}, "required": ["gpk"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "bin", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gpk", "version" : "1.0.0", "description" : "A decentralized and secure package manager.", "main" : "./lib/package.js", "bin" : {"gpk" : "./bin/gpk"}, "scripts" : {"test" : "node ./vendor/bmocha/bin/bmocha --reporter spec test/**/*-test.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/braydonf/gpk.git"}, "author" : "Braydon Fuller", "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/braydonf/gpk/issues"}, "homepage" : "https://github.com/braydonf/gpk#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"gpk": {"type": "string"}}, "required": ["gpk"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "bin", "scripts", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"label" : "Person", "normalizedVertices" : [{"x" : 0.62581635, "y" : 0.32586798}, {"x" : 0.82336015, "y" : 0.32586798}, {"x" : 0.82336015, "y" : 0.7553085}, {"x" : 0.62581635, "y" : 0.7553085}], "score" : 0.5347566}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertices", "score"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"186": {"type": "string"}, "4010": {"type": "string"}}, "required": ["186", "4010"]}, "timeto": {"type": "object", "properties": {"186": {"type": "number"}, "4010": {"type": "number"}}, "required": ["186", "4010"]}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 4009, "title" : ["[Aegenis General Store]"], "description" : ["Torches cast flickering light across the stone walls of this cavernous shop. The high walls terminate in a vaulted roof high above, fashioned of thick wooden timber. Various pieces of metalwork hang suspended from the beams above. A long wooden counter stands before a curtained doorway through which employees occasionally wander."], "paths" : ["Obvious exits: north, out"], "location" : "Ta'Illistim", "wayto" : {"186" : "out", "4010" : "north"}, "timeto" : {"186" : 0.2, "4010" : 0.2}, "tags" : ["general store"]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"186": {"type": "string"}, "4010": {"type": "string"}}, "required": ["186", "4010"]}, "timeto": {"type": "object", "properties": {"186": {"type": "number"}, "4010": {"type": "number"}}, "required": ["186", "4010"]}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "tags"], "$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"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "homepage": {"type": "string"}, "type": {"type": "string"}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "snesi/mpwarfwk": {"type": "string"}, "twig/twig": {"type": "string"}, "twig/extensions": {"type": "string"}, "smarty/smarty": {"type": "string"}, "smarty-gettext/smarty-gettext": {"type": "string"}, "symfony/console": {"type": "string"}}, "required": ["php", "snesi/mpwarfwk", "twig/twig", "twig/extensions", "smarty/smarty", "smarty-gettext/smarty-gettext", "symfony/console"]}, "minimum-stability": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"": {"type": "string"}, "CLI\\": {"type": "string"}}, "required": ["", "CLI\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "authors", "license", "keywords", "homepage", "type", "repositories", "require", "minimum-stability", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "snesi/mpwarfwk-app", "description" : "Example app for David's MPWAR Framework", "authors" : [{"name" : "David G. Shannon", "email" : "[email protected]"}], "license" : "Apache-2.0", "keywords" : [], "homepage" : "https://github.com/Snesi/mpwarfwk-standard-edition", "type" : "project", "repositories" : [{"type" : "vcs", "url" : "[email protected]:Snesi/mpwarfwk.git"}], "require" : {"php" : ">=5.3.2", "snesi/mpwarfwk" : "dev-master", "twig/twig" : "1.18.*", "twig/extensions" : "1.2.*", "smarty/smarty" : "3.1.*", "smarty-gettext/smarty-gettext" : "1.2.*", "symfony/console" : "2.7.*"}, "minimum-stability" : "dev", "autoload" : {"psr-4" : {"" : "src/", "CLI\\" : "cli/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "homepage": {"type": "string"}, "type": {"type": "string"}, "repositories": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "snesi/mpwarfwk": {"type": "string"}, "twig/twig": {"type": "string"}, "twig/extensions": {"type": "string"}, "smarty/smarty": {"type": "string"}, "smarty-gettext/smarty-gettext": {"type": "string"}, "symfony/console": {"type": "string"}}, "required": ["php", "snesi/mpwarfwk", "twig/twig", "twig/extensions", "smarty/smarty", "smarty-gettext/smarty-gettext", "symfony/console"]}, "minimum-stability": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"": {"type": "string"}, "CLI\\": {"type": "string"}}, "required": ["", "CLI\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "authors", "license", "keywords", "homepage", "type", "repositories", "require", "minimum-stability", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"<page title>": {"type": "string"}, "agc": {"type": "string"}, "audio input": {"type": "string"}, "awb": {"type": "string"}, "bc": {"type": "string"}, "builtin lens": {"type": "string"}, "consumption": {"type": "string"}, "control mount": {"type": "string"}, "daynight": {"type": "string"}, "digital dnr": {"type": "string"}, "dimension": {"type": "string"}, "electronic shutler": {"type": "string"}, "fob price": {"type": "string"}, "image sensor": {"type": "string"}, "minillu": {"type": "string"}, "minorder quantity": {"type": "string"}, "mirror image": {"type": "string"}, "model": {"type": "string"}, "payment terms": {"type": "string"}, "port": {"type": "string"}, "power supply": {"type": "string"}, "protocol": {"type": "string"}, "resolution": {"type": "string"}, "sn ratio": {"type": "string"}, "supply ability": {"type": "string"}, "sync": {"type": "string"}, "total pixels": {"type": "string"}, "video": {"type": "string"}, "video format": {"type": "string"}, "video output": {"type": "string"}, "wdr": {"type": "string"}, "weight": {"type": "string"}, "working temp": {"type": "string"}}, "required": ["<page title>", "agc", "audio input", "awb", "bc", "builtin lens", "consumption", "control mount", "daynight", "digital dnr", "dimension", "electronic shutler", "fob price", "image sensor", "minillu", "minorder quantity", "mirror image", "model", "payment terms", "port", "power supply", "protocol", "resolution", "sn ratio", "supply ability", "sync", "total pixels", "video", "video format", "video output", "wdr", "weight", "working temp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"<page title>" : "Hd-sdi Dome Camera 1080p With 3.0mp Sony Cmos Image Sensor - Buy Sdi Dome Camera,Dome Camera,Camera 1080p Product on Alibaba.com", "agc" : "Auto, High/Middle/Low", "audio input" : "Built-in MIC/Extermal input", "awb" : "Push(default)/Auto", "bc" : "Auto", "builtin lens" : "4-12mm, F1.4 zoom lens", "consumption" : "\u22642.5W", "control mount" : "RS485", "daynight" : "Support Color to B&W,auto ICR IR-cut", "digital dnr" : "Auto", "dimension" : "141*141*114mm", "electronic shutler" : "1/25-1/12000s, key control optional(1/25-1/1000)", "fob price" : "US $50 - 70 / Piece\nGet Latest Price", "image sensor" : "1/2.8\" SONY CMOS sensor", "minillu" : "0.2Lux/F1.2", "minorder quantity" : "100 Piece/Pieces", "mirror image" : "Vertical/Horizontal", "model" : "VD-CBS330MR VD-CBS320MR VD-CBS310MR", "payment terms" : "L/C,T/T,Western Union", "port" : "Shenzhen/Zhuhai", "power supply" : "AD/DC:10-24V", "protocol" : "Pelco-D", "resolution" : "2048(H)*1536(V) 1920(H)*1080(V) 1280(H)*720(V)", "sn ratio" : "\u226560dB \u226568dB", "supply ability" : "500 Piece/Pieces per Week", "sync" : "Built-in", "total pixels" : "3.0MP 2.0MP 1.3MP", "video" : "English OSD Menu", "video format" : "1080p60,1080p50,1080i60, 1080i50, 720p60,720p50 720p60,720p50, 720p30,720p25", "video output" : "1CH HD-SDI mount", "wdr" : "80dB 100dB 120dB", "weight" : "0.9kg", "working temp" : "`-20\u00b0C~+60\u00b0C"} | json_instruct | {"type": "object", "properties": {"<page title>": {"type": "string"}, "agc": {"type": "string"}, "audio input": {"type": "string"}, "awb": {"type": "string"}, "bc": {"type": "string"}, "builtin lens": {"type": "string"}, "consumption": {"type": "string"}, "control mount": {"type": "string"}, "daynight": {"type": "string"}, "digital dnr": {"type": "string"}, "dimension": {"type": "string"}, "electronic shutler": {"type": "string"}, "fob price": {"type": "string"}, "image sensor": {"type": "string"}, "minillu": {"type": "string"}, "minorder quantity": {"type": "string"}, "mirror image": {"type": "string"}, "model": {"type": "string"}, "payment terms": {"type": "string"}, "port": {"type": "string"}, "power supply": {"type": "string"}, "protocol": {"type": "string"}, "resolution": {"type": "string"}, "sn ratio": {"type": "string"}, "supply ability": {"type": "string"}, "sync": {"type": "string"}, "total pixels": {"type": "string"}, "video": {"type": "string"}, "video format": {"type": "string"}, "video output": {"type": "string"}, "wdr": {"type": "string"}, "weight": {"type": "string"}, "working temp": {"type": "string"}}, "required": ["<page title>", "agc", "audio input", "awb", "bc", "builtin lens", "consumption", "control mount", "daynight", "digital dnr", "dimension", "electronic shutler", "fob price", "image sensor", "minillu", "minorder quantity", "mirror image", "model", "payment terms", "port", "power supply", "protocol", "resolution", "sn ratio", "supply ability", "sync", "total pixels", "video", "video format", "video output", "wdr", "weight", "working temp"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"got": {"type": "string"}}, "required": ["got"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslint"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "version", "main", "license", "dependencies", "devDependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "imgur-up", "version" : "2.0.1", "main" : "api.js", "license" : "MIT", "dependencies" : {"got" : "^7.0.0"}, "devDependencies" : {"eslint" : "^4.0.0"}, "scripts" : {"test" : "eslint *.js"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"got": {"type": "string"}}, "required": ["got"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslint"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}}, "required": ["name", "version", "main", "license", "dependencies", "devDependencies", "scripts"], "$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"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["test", "coverage"]}, "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": {"istanbul": {"type": "string"}, "tap-spec": {"type": "string"}, "tape": {"type": "string"}}, "required": ["istanbul", "tap-spec", "tape"]}, "dependencies": {"type": "object", "properties": {"cpy": {"type": "string"}, "debug": {"type": "string"}, "empty-trash": {"type": "string"}, "fildes": {"type": "string"}, "glob": {"type": "string"}, "rimraf": {"type": "string"}, "trash": {"type": "string"}}, "required": ["cpy", "debug", "empty-trash", "fildes", "glob", "rimraf", "trash"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "fildes-extra", "version" : "0.6.0", "description" : "Extends fildes promises with rm -rf, cp -r and mkdir -p", "main" : "lib/main.js", "scripts" : {"test" : "tape test/test.js | tap-spec", "coverage" : "istanbul cover test/test.js | tap-spec"}, "repository" : {"type" : "git", "url" : "git+https://github.com/thisconnect/fildes-extra.git"}, "keywords" : ["promise", "fildes", "mkdir", "mkdirp", "empty", "delete", "trash", "rm", "rimraf", "cp", "copy"], "author" : "Enrique Erne", "license" : "MIT", "bugs" : {"url" : "https://github.com/thisconnect/fildes-extra/issues"}, "homepage" : "https://github.com/thisconnect/fildes-extra#readme", "devDependencies" : {"istanbul" : "^0.4.5", "tap-spec" : "^5.0.0", "tape" : "^5.0.0"}, "dependencies" : {"cpy" : "^8.1.0", "debug" : "^4.1.1", "empty-trash" : "^3.0.0", "fildes" : "^3.0.0", "glob" : "^7.1.6", "rimraf" : "^3.0.2", "trash" : "^6.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["test", "coverage"]}, "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": {"istanbul": {"type": "string"}, "tap-spec": {"type": "string"}, "tape": {"type": "string"}}, "required": ["istanbul", "tap-spec", "tape"]}, "dependencies": {"type": "object", "properties": {"cpy": {"type": "string"}, "debug": {"type": "string"}, "empty-trash": {"type": "string"}, "fildes": {"type": "string"}, "glob": {"type": "string"}, "rimraf": {"type": "string"}, "trash": {"type": "string"}}, "required": ["cpy", "debug", "empty-trash", "fildes", "glob", "rimraf", "trash"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "KOTA BANDAR LAMPUNG", "originalFilename" : "KARWANTI.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 60446, "noUrut" : 1, "nama" : "KARWANTI, S.Pd. M.Pd.", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA BANDAR LAMPUNG", "originalFilename" : "FOTO Ir. Hj. NURHASANAH.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 86449, "noUrut" : 2, "nama" : "Ir.. HJ. NURHASANAH, M.M.", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA BANDAR LAMPUNG", "originalFilename" : "FOTO SERLY.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 61330, "noUrut" : 3, "nama" : "SERLY APRILIA, S.H., M.H.", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "KOTA BANDAR LAMPUNG", "originalFilename" : "9. FOTO TRI SETIAWAN.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 128928, "noUrut" : 4, "nama" : "TRI SETIAWAN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "LAMPUNG TIMUR", "originalFilename" : "FOTO SAMSU HARISON.jpg", "namaPartai" : "PARTAI BERKARYA", "id" : 59871, "noUrut" : 5, "nama" : "SAMSU HARISON", "stringJenisKelamin" : "Laki-Laki"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "henrietta cloth", "definition" : "A fine wide wooled fabric much used for women's dresses."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"package" : "taeper", "downloads" : 3400, "count" : 3054}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "extensions": {"type": "array", "items": {"type": "string"}}, "tmScope": {"type": "string"}, "aceMode": {"type": "string"}, "languageId": {"type": "integer"}}, "required": ["name", "type", "extensions", "tmScope", "aceMode", "languageId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "DNS Zone", "type" : "data", "extensions" : [".zone", ".arpa"], "tmScope" : "text.zone_file", "aceMode" : "text", "languageId" : 84} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "extensions": {"type": "array", "items": {"type": "string"}}, "tmScope": {"type": "string"}, "aceMode": {"type": "string"}, "languageId": {"type": "integer"}}, "required": ["name", "type", "extensions", "tmScope", "aceMode", "languageId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"curSeq": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "maxSeq": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "state": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["curSeq", "maxSeq", "state"]}}, "required": ["title", "type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "agentInfo", "type" : "object", "properties" : {"curSeq" : {"type" : "integer"}, "maxSeq" : {"type" : "integer"}, "state" : {"type" : "string"}}} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"curSeq": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "maxSeq": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "state": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["curSeq", "maxSeq", "state"]}}, "required": ["title", "type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 10736, "citation_title" : "The Social Costs of Gun Ownership", "citation_author" : ["Phillip J. Cook", "Jens Ludwig"], "citation_publication_date" : "2004-09-06", "issue_date" : "2004-09-06", "revision_date" : "None", "topics" : ["Public Economics", "Taxation", "Health, Education, and Welfare", "Health"], "program" : ["Health Economics"], "projects" : null, "working_groups" : null, "abstract" : "\n\nThis paper provides new estimates of the effect of household gun prevalence on homicide rates, and infers the marginal external cost of handgun ownership. The estimates utilize a superior proxy for gun prevalence, the percentage of suicides committed with a gun, which we validate. Using county- and state-level panels for 20 years, we estimate the elasticity of homicide with respect to gun prevalence as between +.1 and +.3. All of the effect of gun prevalence is on gun homicide rates. Under certain reasonable assumptions, the average annual marginal social cost of household gun ownership is in the range $100 to $600.\n\n", "acknowledgement" : "\n"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$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" : "3519060007", "district_id" : "3519060", "name" : "CERMO"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"modules": {"type": "object", "properties": {"acquire": {"type": "object", "properties": {"timeout_sec": {"type": "integer"}}, "required": ["timeout_sec"]}}, "required": ["acquire"]}}, "required": ["modules"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"modules" : {"acquire" : {"timeout_sec" : 120}}} | json_instruct | {"type": "object", "properties": {"modules": {"type": "object", "properties": {"acquire": {"type": "object", "properties": {"timeout_sec": {"type": "integer"}}, "required": ["timeout_sec"]}}, "required": ["acquire"]}}, "required": ["modules"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"single_source": {"type": "object", "properties": {"kind": {"type": "string"}, "url": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["kind", "url", "sha1"]}, "username": {"type": "string"}, "state_directory": {"type": "boolean"}}, "required": ["single_source", "username", "state_directory"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"single_source" : {"kind" : "url_extract", "url" : "https://binaries.cockroachdb.com/cockroach-v2.1.7.linux-amd64.tgz", "sha1" : "68021a4779a5df27dfd8a8e72dbd20599018623d"}, "username" : "dcos_cockroach", "state_directory" : true} | json_instruct | {"type": "object", "properties": {"single_source": {"type": "object", "properties": {"kind": {"type": "string"}, "url": {"type": "string"}, "sha1": {"type": "string"}}, "required": ["kind", "url", "sha1"]}, "username": {"type": "string"}, "state_directory": {"type": "boolean"}}, "required": ["single_source", "username", "state_directory"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["algolia-react-input", "clemthedasher-react-component-boilerplate", "creative-snapshot", "ember-cli-deploy-ssh", "ember-cli-page-object", "epub-validator", "fieldvalidator", "file-changed", "global-bin-path", "grunt-workflow-hooks", "hashcat", "hmhyr", "ical.js", "ionic-cordova-gulp-seed", "is-global-exec", "jade2php", "jade2phpv2", "kendo-react", "metalsmith-react-templates", "metalsmith-transform", "metropolis", "mtwtfss-calendar", "perturb", "progresso", "react-adminlte-dash", "react-algoliasearch", "react-amazing-grid", "react-appear", "react-aztec", "react-event-calendar", "react-eventsource", "react-facet-filter", "react-geolocated", "react-gooey", "react-gradient-color-picker", "react-jspm-loader", "react-lightweight-tooltip", "react-load-umd", "react-progress-bar-battlenet-style", "react-redux-notifications", "react-redux-notifications-immutable", "react-selection-popover", "react-simple-timepicker", "react-spotify-album-player", "react-svgpathplayer", "react-umd-loader", "react-uploadFile", "react-vertical-timeline", "react-xhr-uploader", "react-xhr-uploader-emondo", "s10d-touchable", "sebastiendaniel-utilities", "semantic-card-sample", "stylish-commit-auto-hook-install", "wui-admin", "wui-bigdata", "wui-mobile", "wui-web", "wui-webapp"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"mods": {"type": "array", "items": {}}, "itemId": {"type": "string"}, "parent": {"type": "string"}, "itemName": {"type": "string"}, "playerRating": {"type": "number"}, "playerItemRatingAfter": {"type": "number"}, "playerItemRatingBefore": {"type": "integer"}}, "required": ["mods", "itemId", "parent", "itemName", "playerRating", "playerItemRatingAfter", "playerItemRatingBefore"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "c1d53935-932b-4ce9-9b15-f566f3751ff2", "playerTags" : ["16aff709-e855-47c8-8818-b9ba66e90fe8"], "teamTags" : ["36569151-a2fb-43c1-9df7-2df512424c82"], "gameTags" : [], "metadata" : {"mods" : [], "itemId" : "98b33443-6949-4038-b5c1-a39cc9bfc91d", "parent" : "b6c0bc45-49b2-4a2c-9df9-2388344c5819", "itemName" : "Bat", "playerRating" : 2.9910812788197028, "playerItemRatingAfter" : 0.025890408097770323, "playerItemRatingBefore" : 0}, "created" : "2021-04-11T18:16:02.122Z", "season" : 14, "tournament" : -1, "type" : 127, "day" : 113, "phase" : 13, "category" : 1, "description" : "Mullen Peterson gained Bat.", "nuts" : 10} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"mods": {"type": "array", "items": {}}, "itemId": {"type": "string"}, "parent": {"type": "string"}, "itemName": {"type": "string"}, "playerRating": {"type": "number"}, "playerItemRatingAfter": {"type": "number"}, "playerItemRatingBefore": {"type": "integer"}}, "required": ["mods", "itemId", "parent", "itemName", "playerRating", "playerItemRatingAfter", "playerItemRatingBefore"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1915, 6], [1916, 5], [1921, 6], [1922, 12], [1924, 5], [1925, 6], [1926, 7], [1927, 7], [1930, 11], [1931, 5], [1932, 5], [1940, 6], [1944, 5], [1951, 5], [1956, 5], [1960, 5], [1965, 6], [1967, 5], [1968, 9], [1971, 6], [1976, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "maintainers": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/ws": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/ws", "ts-node", "typescript"]}, "dependencies": {"type": "object", "properties": {"ws": {"type": "string"}}, "required": ["ws"]}}, "required": ["name", "maintainers", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dcl-websocket-broadcast", "maintainers" : ["Kyllian LE BORGNE ROPERCH"], "version" : "1.0.0", "description" : "Simple broadcasting websocket server", "main" : "src/index.ts", "scripts" : {"start" : "ts-node src/index.ts"}, "keywords" : [], "author" : "", "license" : "MIT", "devDependencies" : {"@types/ws" : "^7.2.6", "ts-node" : "^8.10.2", "typescript" : "^3.9.6"}, "dependencies" : {"ws" : "^7.3.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "maintainers": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/ws": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/ws", "ts-node", "typescript"]}, "dependencies": {"type": "object", "properties": {"ws": {"type": "string"}}, "required": ["ws"]}}, "required": ["name", "maintainers", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "2721_cam-image_array_.jpg", "user/angle" : 0.162, "user/throttle" : 0.514, "user/mode" : "user", "pos/pos_x" : 80.06285, "pos/pos_y" : 0.5560752, "pos/pos_z" : 42.3824, "pos/speed" : 9.650319, "pos/cte" : -5.279552, "milliseconds" : 147470} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"browser-polyfill.js": {"type": "string"}, "browser-polyfill.min.js": {"type": "string"}, "browser.js": {"type": "string"}, "browser.min.js": {"type": "string"}}, "required": ["browser-polyfill.js", "browser-polyfill.min.js", "browser.js", "browser.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"browser-polyfill.js" : "sha256-Jck0FeW3j4u5jBjD53y6h+LrnXZJKOisybs9e5dRGf4=", "browser-polyfill.min.js" : "sha256-WG76WPX9QA3URG2YCKA751XKaKwPSdzZP76qEGYDqSg=", "browser.js" : "sha256-X+zishuWlQ3HfuYoP0OJWIugiRPqy833S9TJB+e3QnE=", "browser.min.js" : "sha256-3gDQfLEGfbuXRlXRHmXY/KNSCpWkZPyGDWw85lymVt8="} | json_instruct | {"type": "object", "properties": {"browser-polyfill.js": {"type": "string"}, "browser-polyfill.min.js": {"type": "string"}, "browser.js": {"type": "string"}, "browser.min.js": {"type": "string"}}, "required": ["browser-polyfill.js", "browser-polyfill.min.js", "browser.js", "browser.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"station" : [{"pref_cd" : 23, "line_cd" : 30005, "line_name" : "\u540d\u9244\u4e09\u6cb3\u7dda", "station_cd" : 3000520, "station_g_cd" : 3000520, "station_name" : "\u6885\u576a", "lon" : 137.162206, "lat" : 35.099654}]} | json_instruct | {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"version": {"type": "string"}, "update": {"type": "boolean"}, "release_note": {"type": "string"}}, "required": ["version", "update", "release_note"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "1.1.3", "update" : false, "release_note" : "Fixed bugs with heroku integration"} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "update": {"type": "boolean"}, "release_note": {"type": "string"}}, "required": ["version", "update", "release_note"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}, "editor.formatOnSave": {"type": "boolean"}, "editor.tabSize": {"type": "integer"}, "typescript.tsdk": {"type": "string"}}, "required": ["cSpell.words", "editor.formatOnSave", "editor.tabSize", "typescript.tsdk"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cSpell.words" : ["Aagaard", "Z\u00e6\u00f8\u00e5", "copyfiles", "devtool", "syncyarnlock", "wwwroot"], "editor.formatOnSave" : true, "editor.tabSize" : 2, "typescript.tsdk" : "node_modules/typescript/lib"} | json_instruct | {"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}, "editor.formatOnSave": {"type": "boolean"}, "editor.tabSize": {"type": "integer"}, "typescript.tsdk": {"type": "string"}}, "required": ["cSpell.words", "editor.formatOnSave", "editor.tabSize", "typescript.tsdk"], "$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"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "99ff8af461771867dc14ae8d2ea40bdcd213c051"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["370113001", "\u6587\u660c\u8857\u9053", "370113"], ["370113002", "\u5d2e\u4e91\u6e56\u8857\u9053", "370113"], ["370113003", "\u5e73\u5b89\u8857\u9053", "370113"], ["370113004", "\u4e94\u5cf0\u5c71\u8857\u9053", "370113"], ["370113101", "\u5f52\u5fb7\u9547", "370113"], ["370113102", "\u5b5d\u91cc\u9547", "370113"], ["370113103", "\u4e07\u5fb7\u9547", "370113"], ["370113106", "\u5f20\u590f\u9547", "370113"], ["370113107", "\u9a6c\u5c71\u9547", "370113"], ["370113108", "\u53cc\u6cc9\u9547", "370113"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"results" : [{"tech" : 1, "pts" : 1291, "connections" : 361957, "capacity" : 24675885, "investments" : 209164457}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$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"}, "permissions": {"type": "array", "items": {"type": "string"}}, "host_permissions": {"type": "array", "items": {"type": "string"}}, "background": {"type": "object", "properties": {"service_worker": {"type": "string"}}, "required": ["service_worker"]}, "manifest_version": {"type": "integer"}}, "required": ["name", "description", "version", "permissions", "host_permissions", "background", "manifest_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Test", "description" : "Manifest V3 Test", "version" : "0.1.107", "permissions" : ["contextMenus", "storage"], "host_permissions" : ["<all_urls>"], "background" : {"service_worker" : "background.js"}, "manifest_version" : 3} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "host_permissions": {"type": "array", "items": {"type": "string"}}, "background": {"type": "object", "properties": {"service_worker": {"type": "string"}}, "required": ["service_worker"]}, "manifest_version": {"type": "integer"}}, "required": ["name", "description", "version", "permissions", "host_permissions", "background", "manifest_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lastUpdated" : 1655019279666, "username" : "laser_guy25", "scores" : [{"xp" : 1858, "rank" : 355, "cardId" : 558}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.