input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "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": {"chai": {"type": "string"}, "mocha": {"type": "string"}, "superagent": {"type": "string"}}, "required": ["chai", "mocha", "superagent"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}}, "required": ["express"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "readmefirst.io.backend", "version" : "1.0.0", "description" : "Backend for readmefirst.io", "main" : "index.js", "scripts" : {"start" : "node src/index.js", "test" : "mocha test/"}, "repository" : {"type" : "git", "url" : "git+https://github.com/alvinberthelot/readmefirst.io.backend.git"}, "keywords" : ["ReadMe"], "author" : "Alvin Berthelot", "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/alvinberthelot/readmefirst.io.backend/issues"}, "homepage" : "https://github.com/alvinberthelot/readmefirst.io.backend#readme", "devDependencies" : {"chai" : "^3.5.0", "mocha" : "^2.4.5", "superagent" : "^2.0.0-alpha.3"}, "dependencies" : {"express" : "^4.13.4"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "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": {"chai": {"type": "string"}, "mocha": {"type": "string"}, "superagent": {"type": "string"}}, "required": ["chai", "mocha", "superagent"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}}, "required": ["express"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "6106040008", "district_id" : "6106040", "name" : "LIMPANG"} | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "snowvariants:block/snow_petrified_oak_slab"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"components": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "componentType": {"type": "string"}, "mandatory": {"type": "boolean"}, "maxLength": {"type": "string"}, "label": {"type": "string"}, "response": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["id", "componentType", "mandatory", "maxLength", "label", "response"]}}, "variables": {"type": "array", "items": {"type": "object", "properties": {"variableType": {"type": "string"}, "name": {"type": "string"}, "componentRef": {"type": "string"}, "values": {"type": "object", "properties": {"PREVIOUS": {"type": "null"}, "COLLECTED": {"type": "string"}, "FORCED": {"type": "null"}, "EDITED": {"type": "string"}, "INPUTED": {"type": "null"}}, "required": ["PREVIOUS", "COLLECTED", "FORCED", "EDITED", "INPUTED"]}}, "required": ["variableType", "name", "componentRef", "values"]}}}, "required": ["components", "variables"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"components" : [{"id" : "j3343qhx", "componentType" : "Input", "mandatory" : false, "maxLength" : "30", "label" : "\u27a1 3. Who is the producer?", "response" : {"name" : "PRODUCER"}}], "variables" : [{"variableType" : "COLLECTED", "name" : "PRODUCER", "componentRef" : "j3343qhx", "values" : {"PREVIOUS" : null, "COLLECTED" : "Matt Groening", "FORCED" : null, "EDITED" : "Matt Groening and James L. Brooks", "INPUTED" : null}}]} | json_instruct | {"type": "object", "properties": {"components": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "componentType": {"type": "string"}, "mandatory": {"type": "boolean"}, "maxLength": {"type": "string"}, "label": {"type": "string"}, "response": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["id", "componentType", "mandatory", "maxLength", "label", "response"]}}, "variables": {"type": "array", "items": {"type": "object", "properties": {"variableType": {"type": "string"}, "name": {"type": "string"}, "componentRef": {"type": "string"}, "values": {"type": "object", "properties": {"PREVIOUS": {"type": "null"}, "COLLECTED": {"type": "string"}, "FORCED": {"type": "null"}, "EDITED": {"type": "string"}, "INPUTED": {"type": "null"}}, "required": ["PREVIOUS", "COLLECTED", "FORCED", "EDITED", "INPUTED"]}}, "required": ["variableType", "name", "componentRef", "values"]}}}, "required": ["components", "variables"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "REMBANG", "originalFilename" : "Joko Suwito Photo 4x6.jpg", "namaPartai" : "Partai Kebangkitan Bangsa", "id" : 107272, "noUrut" : 1, "nama" : "JOKO SUWITO, S.E.", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "REMBANG", "originalFilename" : "Chudlori Photo 4x6.jpg", "namaPartai" : "Partai Kebangkitan Bangsa", "id" : 132188, "noUrut" : 2, "nama" : "H. CHUDLORI, S.Ag.", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "REMBANG", "originalFilename" : "Lilik Ermawati Photo 4x6.jpg", "namaPartai" : "Partai Kebangkitan Bangsa", "id" : 235916, "noUrut" : 3, "nama" : "LILIK ERMAWATI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "REMBANG", "originalFilename" : "Siti Nuriya Diana Photo 4x6.jpg", "namaPartai" : "Partai Kebangkitan Bangsa", "id" : 112532, "noUrut" : 4, "nama" : "SITI NURIYA DIANA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "REMBANG", "originalFilename" : "Nur Hayati Photo 4x6.jpg", "namaPartai" : "Partai Kebangkitan Bangsa", "id" : 114391, "noUrut" : 5, "nama" : "NUR HAYATI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "REMBANG", "originalFilename" : "Sholeh Photo 4x6.jpg", "namaPartai" : "Partai Kebangkitan Bangsa", "id" : 84650, "noUrut" : 6, "nama" : "H. SHOLEH, B.A.", "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 sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"especialidad": {"type": "string"}, "medicos": {"type": "array", "items": {"type": "object", "properties": {"medicoid": {"type": "string"}, "nombre": {"type": "string"}, "apellido": {"type": "string"}, "fechaDisponible": {"type": "array", "items": {"type": "object", "properties": {"fecha": {"type": "string"}, "horasDisponibles": {"type": "array", "items": {"type": "string"}}}, "required": ["fecha", "horasDisponibles"]}}}, "required": ["medicoid", "nombre", "apellido", "fechaDisponible"]}}}, "required": ["especialidad", "medicos"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"especialidad" : "Medicina General", "medicos" : [{"medicoid" : "120392019", "nombre" : "", "apellido" : "", "fechaDisponible" : [{"fecha" : "24-04-2022", "horasDisponibles" : ["06:00", "06:30", "07:00", "07:30", "14:00", "17:00"]}, {"fecha" : "25-04-2022", "horasDisponibles" : ["06:00", "06:30", "07:00", "14:00", "17:00"]}]}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"especialidad": {"type": "string"}, "medicos": {"type": "array", "items": {"type": "object", "properties": {"medicoid": {"type": "string"}, "nombre": {"type": "string"}, "apellido": {"type": "string"}, "fechaDisponible": {"type": "array", "items": {"type": "object", "properties": {"fecha": {"type": "string"}, "horasDisponibles": {"type": "array", "items": {"type": "string"}}}, "required": ["fecha", "horasDisponibles"]}}}, "required": ["medicoid", "nombre", "apellido", "fechaDisponible"]}}}, "required": ["especialidad", "medicos"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"rajaongkir": {"type": "object", "properties": {"query": {"type": "object", "properties": {"city": {"type": "string"}}, "required": ["city"]}, "status": {"type": "object", "properties": {"code": {"type": "integer"}, "description": {"type": "string"}}, "required": ["code", "description"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"subdistrict_id": {"type": "string"}, "province_id": {"type": "string"}, "province": {"type": "string"}, "city_id": {"type": "string"}, "city": {"type": "string"}, "type": {"type": "string"}, "subdistrict_name": {"type": "string"}}, "required": ["subdistrict_id", "province_id", "province", "city_id", "city", "type", "subdistrict_name"]}}}, "required": ["query", "status", "results"]}}, "required": ["rajaongkir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rajaongkir" : {"query" : {"city" : "70"}, "status" : {"code" : 200, "description" : "OK"}, "results" : [{"subdistrict_id" : "934", "province_id" : "34", "province" : "Sumatera Utara", "city_id" : "70", "city" : "Binjai", "type" : "Kota", "subdistrict_name" : "Binjai Barat"}, {"subdistrict_id" : "935", "province_id" : "34", "province" : "Sumatera Utara", "city_id" : "70", "city" : "Binjai", "type" : "Kota", "subdistrict_name" : "Binjai Kota"}, {"subdistrict_id" : "936", "province_id" : "34", "province" : "Sumatera Utara", "city_id" : "70", "city" : "Binjai", "type" : "Kota", "subdistrict_name" : "Binjai Selatan"}, {"subdistrict_id" : "937", "province_id" : "34", "province" : "Sumatera Utara", "city_id" : "70", "city" : "Binjai", "type" : "Kota", "subdistrict_name" : "Binjai Timur"}, {"subdistrict_id" : "938", "province_id" : "34", "province" : "Sumatera Utara", "city_id" : "70", "city" : "Binjai", "type" : "Kota", "subdistrict_name" : "Binjai Utara"}]}} | json_instruct | {"type": "object", "properties": {"rajaongkir": {"type": "object", "properties": {"query": {"type": "object", "properties": {"city": {"type": "string"}}, "required": ["city"]}, "status": {"type": "object", "properties": {"code": {"type": "integer"}, "description": {"type": "string"}}, "required": ["code", "description"]}, "results": {"type": "array", "items": {"type": "object", "properties": {"subdistrict_id": {"type": "string"}, "province_id": {"type": "string"}, "province": {"type": "string"}, "city_id": {"type": "string"}, "city": {"type": "string"}, "type": {"type": "string"}, "subdistrict_name": {"type": "string"}}, "required": ["subdistrict_id", "province_id", "province", "city_id", "city", "type", "subdistrict_name"]}}}, "required": ["query", "status", "results"]}}, "required": ["rajaongkir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\u5de5\u5ee0\u540d\u7a31" : "\u4e2d\u9918\u570b\u969b\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99718704", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u65b0\u5317\u5e02\u65b0\u5e97\u5340\u5bf6\u6a4b\u8def\u4e8c\u4e09\u4e94\u5df7\u516d\u5f04\u4e94\u865f\u4e94\u6a13", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u65b0\u5317\u5e02\u65b0\u5e97\u5340", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u5510\u53f0\u82f1", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "84279422", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0970922", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["22\u5851\u81a0\u88fd\u54c1\u88fd\u9020\u696d", "25\u91d1\u5c6c\u88fd\u54c1\u88fd\u9020\u696d", "29\u6a5f\u68b0\u8a2d\u5099\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["220\u5851\u81a0\u88fd\u54c1", "251\u91d1\u5c6c\u624b\u5de5\u5177\u53ca\u6a21\u5177", "293\u901a\u7528\u6a5f\u68b0\u8a2d\u5099"]} | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$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"}, "dependencies": {"type": "object", "properties": {"cheerio": {"type": "string"}, "needle": {"type": "string"}}, "required": ["cheerio", "needle"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "node-red": {"type": "object", "properties": {"nodes": {"type": "object", "properties": {"superhub2-reboot": {"type": "string"}}, "required": ["superhub2-reboot"]}}, "required": ["nodes"]}}, "required": ["name", "version", "description", "dependencies", "scripts", "author", "license", "node-red"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "node-red-contrib-superhub2-reboot", "version" : "0.1.0", "description" : "When activated this will reboot a virgin media super hub 2", "dependencies" : {"cheerio" : "^1.0.0-rc.2", "needle" : "^2.2.0"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "microwavesafe", "license" : "MIT", "node-red" : {"nodes" : {"superhub2-reboot" : "superhub2-reboot.js"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cheerio": {"type": "string"}, "needle": {"type": "string"}}, "required": ["cheerio", "needle"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "node-red": {"type": "object", "properties": {"nodes": {"type": "object", "properties": {"superhub2-reboot": {"type": "string"}}, "required": ["superhub2-reboot"]}}, "required": ["nodes"]}}, "required": ["name", "version", "description", "dependencies", "scripts", "author", "license", "node-red"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"resistors": {"type": "array", "items": {"type": "object", "properties": {"polygon": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "colors": {"type": "array", "items": {"type": "string"}}}, "required": ["polygon", "colors"]}}}, "required": ["resistors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resistors" : [{"polygon" : [{"x" : 183, "y" : 224}, {"x" : 375, "y" : 188}, {"x" : 387, "y" : 267}, {"x" : 204, "y" : 301}], "colors" : ["yellow", "violet", "black", "none", "gold", "none"]}]} | json_instruct | {"type": "object", "properties": {"resistors": {"type": "array", "items": {"type": "object", "properties": {"polygon": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}, "colors": {"type": "array", "items": {"type": "string"}}}, "required": ["polygon", "colors"]}}}, "required": ["resistors"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101931653, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "0633dee1f6b116bfb7f6b4a34db1f67a", "wof:id" : 101931653, "wof:repo" : "whosonfirst-data-admin-au"}, "bbox" : [149.58479, -32.57529, 149.58479, -32.57529], "geometry" : {"coordinates" : [149.58479, -32.57529], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "version": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "type": {"type": "string"}, "rating": {"type": "string"}, "remarks": {"type": "string"}, "homeSection": {"type": "object", "properties": {"indexUrl": {"type": "string"}, "gallerySelectors": {"type": "object", "properties": {"title": {"type": "object", "properties": {"selector": {"type": "string"}, "capture": {"type": "string"}, "replacement": {"type": "string"}}, "required": ["selector", "capture", "replacement"]}, "originUrl": {"type": "object", "properties": {"selector": {"type": "string"}}, "required": ["selector"]}, "sampleUrl": {"type": "object", "properties": {"selector": {"type": "string"}}, "required": ["selector"]}, "coverUrl": {"type": "object", "properties": {"selector": {"type": "string"}}, "required": ["selector"]}, "tags": {"type": "object", "properties": {"selector": {"type": "string"}}, "required": ["selector"]}, "source_url": {"type": "object", "properties": {"selector": {"type": "string"}}, "required": ["selector"]}, "info": {"type": "object", "properties": {"selector": {"type": "string"}}, "required": ["selector"]}}, "required": ["title", "originUrl", "sampleUrl", "coverUrl", "tags", "source_url", "info"]}}, "required": ["indexUrl", "gallerySelectors"]}, "searchSection": {"type": "object", "properties": {"indexUrl": {"type": "string"}, "reuse": {"type": "string"}}, "required": ["indexUrl", "reuse"]}}, "required": ["id", "version", "title", "author", "type", "rating", "remarks", "homeSection", "searchSection"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "2", "version" : "1", "title" : "IMG Danbooru Post", "author" : "TsukiSeele", "type" : "Image", "rating" : "Q", "remarks" : "Booru\u56fe\u7ad9\uff0cACG\u56fe\uff0c\u56fe\u7247\u5f88\u591a\uff0c\u8d28\u91cf\u4e00\u822c", "homeSection" : {"indexUrl" : "https://danbooru.donmai.us/posts?page={page:0}", "gallerySelectors" : {"title" : {"selector" : "$(div#posts > div > article).attr(id)", "capture" : "(?<=post_).*", "replacement" : "$0"}, "originUrl" : {"selector" : "$(div#posts > div > article).attr(data-file-url)"}, "sampleUrl" : {"selector" : "$(div#posts > div > article).attr(data-large-file-url)"}, "coverUrl" : {"selector" : "$(div#posts > div > article).attr(data-preview-file-url)"}, "tags" : {"selector" : "$(div#posts > div > article).attr(data-tags)"}, "source_url" : {"selector" : "$(div#posts > div > article).attr(data-source)"}, "info" : {"selector" : "$(div#posts > div > article).attr(data-pixiv-id)"}}}, "searchSection" : {"indexUrl" : "https://danbooru.donmai.us/posts?page={page:}&tags={keyword:}", "reuse" : "homeSection"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "version": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "type": {"type": "string"}, "rating": {"type": "string"}, "remarks": {"type": "string"}, "homeSection": {"type": "object", "properties": {"indexUrl": {"type": "string"}, "gallerySelectors": {"type": "object", "properties": {"title": {"type": "object", "properties": {"selector": {"type": "string"}, "capture": {"type": "string"}, "replacement": {"type": "string"}}, "required": ["selector", "capture", "replacement"]}, "originUrl": {"type": "object", "properties": {"selector": {"type": "string"}}, "required": ["selector"]}, "sampleUrl": {"type": "object", "properties": {"selector": {"type": "string"}}, "required": ["selector"]}, "coverUrl": {"type": "object", "properties": {"selector": {"type": "string"}}, "required": ["selector"]}, "tags": {"type": "object", "properties": {"selector": {"type": "string"}}, "required": ["selector"]}, "source_url": {"type": "object", "properties": {"selector": {"type": "string"}}, "required": ["selector"]}, "info": {"type": "object", "properties": {"selector": {"type": "string"}}, "required": ["selector"]}}, "required": ["title", "originUrl", "sampleUrl", "coverUrl", "tags", "source_url", "info"]}}, "required": ["indexUrl", "gallerySelectors"]}, "searchSection": {"type": "object", "properties": {"indexUrl": {"type": "string"}, "reuse": {"type": "string"}}, "required": ["indexUrl", "reuse"]}}, "required": ["id", "version", "title", "author", "type", "rating", "remarks", "homeSection", "searchSection"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"pages/index": {"type": "boolean"}}, "required": ["pages/index"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "b402a14686e93f2abb93", "c" : {"pages/index" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"pages/index": {"type": "boolean"}}, "required": ["pages/index"]}}, "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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "contributors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"rimraf": {"type": "string"}}, "required": ["rimraf"]}}, "required": ["name", "version", "description", "main", "repository", "contributors", "license", "bugs", "homepage", "files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "fbx2gltf", "version" : "0.9.6", "description" : "Node wrapper around FBX2glTF tools.", "main" : "index.js", "repository" : {"type" : "git", "url" : "git+https://github.com/facebookincubator/FBX2glTF.git"}, "contributors" : ["P\u00e4r Winzell <zell@fb.com>", "J.M.P. van Waveren", "Amanda Watson"], "license" : "BSD-3-Clause", "bugs" : {"url" : "https://github.com/facebookincubator/FBX2glTF/issues"}, "homepage" : "https://github.com/facebookincubator/FBX2glTF", "files" : ["LICENSE", "PATENTS", "README.md", "bin", "index.js"], "dependencies" : {"rimraf" : "^2.6.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "contributors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"rimraf": {"type": "string"}}, "required": ["rimraf"]}}, "required": ["name", "version", "description", "main", "repository", "contributors", "license", "bugs", "homepage", "files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"md5": {"type": "string"}, "size": {"type": "integer"}, "compressed_size": {"type": "integer"}, "node_id": {"type": "integer"}, "file_path": {"type": "string"}, "event_timestamp": {"type": "number"}}, "required": ["md5", "size", "compressed_size", "node_id", "file_path", "event_timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"md5" : "CBAE7643E7423581B692DE7F48CF4C9A", "size" : 393728, "compressed_size" : 195469, "node_id" : 0, "file_path" : "/var/cb/data/modulestore/CBA/E76/CBAE7643E7423581B692DE7F48CF4C9A.zip", "event_timestamp" : 1447703639.406} | json_instruct | {"type": "object", "properties": {"md5": {"type": "string"}, "size": {"type": "integer"}, "compressed_size": {"type": "integer"}, "node_id": {"type": "integer"}, "file_path": {"type": "string"}, "event_timestamp": {"type": "number"}}, "required": ["md5", "size", "compressed_size", "node_id", "file_path", "event_timestamp"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"packages": {"type": "object", "properties": {"wpackagist-plugin/appcastlenet-api": {"type": "object", "properties": {"0.7.28": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "dist", "source", "homepage", "require", "type"]}, "dev-trunk": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "time": {"type": "string"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "time", "dist", "source", "homepage", "require", "type"]}}, "required": ["0.7.28", "dev-trunk"]}}, "required": ["wpackagist-plugin/appcastlenet-api"]}}, "required": ["packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"packages" : {"wpackagist-plugin/appcastlenet-api" : {"0.7.28" : {"name" : "wpackagist-plugin/appcastlenet-api", "version" : "0.7.28", "version_normalized" : "0.7.28.0", "uid" : 24412, "dist" : {"type" : "zip", "url" : "https://downloads.wordpress.org/plugin/appcastlenet-api.zip?timestamp=1387380357"}, "source" : {"type" : "svn", "url" : "https://plugins.svn.wordpress.org/appcastlenet-api/", "reference" : "trunk"}, "homepage" : "https://wordpress.org/plugins/appcastlenet-api/", "require" : {"composer/installers" : "~1.0"}, "type" : "wordpress-plugin"}, "dev-trunk" : {"name" : "wpackagist-plugin/appcastlenet-api", "version" : "dev-trunk", "version_normalized" : "9999999-dev", "uid" : 24413, "time" : "2013-12-18 15:25:57", "dist" : {"type" : "zip", "url" : "https://downloads.wordpress.org/plugin/appcastlenet-api.zip?timestamp=1387380357"}, "source" : {"type" : "svn", "url" : "https://plugins.svn.wordpress.org/appcastlenet-api/", "reference" : "trunk"}, "homepage" : "https://wordpress.org/plugins/appcastlenet-api/", "require" : {"composer/installers" : "~1.0"}, "type" : "wordpress-plugin"}}}} | json_instruct | {"type": "object", "properties": {"packages": {"type": "object", "properties": {"wpackagist-plugin/appcastlenet-api": {"type": "object", "properties": {"0.7.28": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "dist", "source", "homepage", "require", "type"]}, "dev-trunk": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "version_normalized": {"type": "string"}, "uid": {"type": "integer"}, "time": {"type": "string"}, "dist": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "source": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "reference": {"type": "string"}}, "required": ["type", "url", "reference"]}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"composer/installers": {"type": "string"}}, "required": ["composer/installers"]}, "type": {"type": "string"}}, "required": ["name", "version", "version_normalized", "uid", "time", "dist", "source", "homepage", "require", "type"]}}, "required": ["0.7.28", "dev-trunk"]}}, "required": ["wpackagist-plugin/appcastlenet-api"]}}, "required": ["packages"], "$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#"}
| ["entryway-documentdb", "entryway-dynamodb"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "paypalEmail": {"type": "string"}}, "required": ["id", "name", "paypalEmail"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 25014, "info" : {"name" : "about:3", "description" : "Addition to style 25011\r\n\r\nFor:\r\nabout:neterror\r\nabout:robot", "additionalInfo" : null, "format" : "uso", "category" : "browser", "createdAt" : "2010-02-08T08:52:28.000Z", "updatedAt" : "2010-02-10T01:59:07.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 37606, "name" : "renseih", "paypalEmail" : "cyh.reya@gmail.com"}}, "stats" : {"installs" : {"total" : 143, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "25014_after.gif", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document url(about:neterror), url(about:robots) {\r\n\r\n/* Reduce Paragraph/ List Spacing */\r\n p {\r\n margin-top: -15px !important;\r\n }\r\n\r\n ul > li, ol > li {\r\n margin-top: -8px !important;\r\n }\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "paypalEmail": {"type": "string"}}, "required": ["id", "name", "paypalEmail"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"$schema": {"type": "string"}, "icon": {"type": "string"}, "commands": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "identifier": {"type": "string"}, "script": {"type": "string"}}, "required": ["name", "identifier", "script"]}}, "menu": {"type": "object", "properties": {"title": {"type": "string"}, "items": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "items"]}}, "required": ["$schema", "icon", "commands", "menu"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "https://raw.githubusercontent.com/BohemianCoding/SketchAPI/develop/docs/sketch-plugin-manifest-schema.json", "icon" : "icon.png", "commands" : [{"name" : "my-command", "identifier" : "{{ slug }}.my-command-identifier", "script" : "./my-command.js"}], "menu" : {"title" : "{{ name }}", "items" : ["{{ slug }}.my-command-identifier"]}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "icon": {"type": "string"}, "commands": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "identifier": {"type": "string"}, "script": {"type": "string"}}, "required": ["name", "identifier", "script"]}}, "menu": {"type": "object", "properties": {"title": {"type": "string"}, "items": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "items"]}}, "required": ["$schema", "icon", "commands", "menu"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "imageName", "nominations", "wins"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 2363, "title" : "Diva", "year" : 2005, "type" : "novel", "imageName" : "mwt_diva.jpg", "nominations" : 0, "wins" : -1}, {"id" : 994, "title" : "Remains", "year" : 2005, "type" : "novel", "imageName" : "mwt_remains.jpg", "nominations" : 1, "wins" : -1}, {"id" : 4456, "title" : "Of Stars and Shadows", "year" : 2004, "type" : "novel", "imageName" : "mwt_ofstarsa.jpg", "nominations" : 0, "wins" : -1}, {"id" : 2364, "title" : "Realtime", "year" : 2001, "type" : "novel", "imageName" : "mwt_realtime.jpg", "nominations" : 0, "wins" : -1}, {"id" : 4455, "title" : "Extensions", "year" : 1999, "type" : "novel", "imageName" : "mwt_extensio.jpg", "nominations" : 0, "wins" : -1}, {"id" : 31762, "title" : "Mirage", "year" : 2000, "type" : "novel", "imageName" : "mwt_mirage.jpg", "nominations" : 0, "wins" : -1}, {"id" : 31763, "title" : "Chimera", "year" : 2001, "type" : "novel", "imageName" : "mwt_chimera.jpg", "nominations" : 0, "wins" : -1}, {"id" : 31764, "title" : "Aurora", "year" : 2002, "type" : "novel", "imageName" : "mwt_aurora.jpg", "nominations" : 0, "wins" : -1}, {"id" : 472, "title" : "Compass Reach", "year" : 2001, "type" : "novel", "imageName" : "mwt_compassr.jpg", "nominations" : 1, "wins" : -1}, {"id" : 2361, "title" : "Metal of Night", "year" : 2002, "type" : "novel", "imageName" : "mwt_metalofn.jpg", "nominations" : 0, "wins" : -1}, {"id" : 2362, "title" : "Peace and Memory", "year" : 2003, "type" : "novel", "imageName" : "mwt_peaceand.jpg", "nominations" : 0, "wins" : -1}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "imageName", "nominations", "wins"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"conventionalCommits.promptScopes": {"type": "boolean"}}, "required": ["conventionalCommits.promptScopes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"conventionalCommits.promptScopes" : false} | json_instruct | {"type": "object", "properties": {"conventionalCommits.promptScopes": {"type": "boolean"}}, "required": ["conventionalCommits.promptScopes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"select2-bootstrap.css": {"type": "string"}, "select2-bootstrap.min.css": {"type": "string"}}, "required": ["select2-bootstrap.css", "select2-bootstrap.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"select2-bootstrap.css" : "sha512-qOUjJf+QgWikvcsIJRCCcEQUCAjrKBrJzB/AWZTIw0q7y5ZV27tKzEGfGsa0ztJFW20ZAYJ/n+HlySLkCQwlqg==", "select2-bootstrap.min.css" : "sha512-dgnRLd4elEwUANhryqmbtM7EyWw0g0AMs2mY8FCquefsHo3WeUXf+0Qb2t331k9nNJZcy2zyngDHAbineUwS4Q=="} | json_instruct | {"type": "object", "properties": {"select2-bootstrap.css": {"type": "string"}, "select2-bootstrap.min.css": {"type": "string"}}, "required": ["select2-bootstrap.css", "select2-bootstrap.min.css"], "$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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@cloudant/cloudant": {"type": "string"}, "cookie-parser": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "formidable": {"type": "string"}, "ibm-cos-sdk": {"type": "string"}, "jsonwebtoken": {"type": "string"}}, "required": ["@cloudant/cloudant", "cookie-parser", "dotenv", "express", "formidable", "ibm-cos-sdk", "jsonwebtoken"]}}, "required": ["name", "version", "main", "scripts", "engines", "repository", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "simple-secure-file-storage", "version" : "1.0.0", "main" : "app.js", "scripts" : {"start" : "node app.js"}, "engines" : {"node" : ">=8"}, "repository" : {"type" : "git", "url" : "https://github.com/tonymcguckin/simple-secure-file-storage.git"}, "author" : "", "license" : "Apache-2.0", "dependencies" : {"@cloudant/cloudant" : "^2.3.0", "cookie-parser" : "^1.4.3", "dotenv" : "^6.0.0", "express" : "^4.16.3", "formidable" : "^1.2.1", "ibm-cos-sdk" : "^1.2.3", "jsonwebtoken" : "^8.3.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@cloudant/cloudant": {"type": "string"}, "cookie-parser": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "formidable": {"type": "string"}, "ibm-cos-sdk": {"type": "string"}, "jsonwebtoken": {"type": "string"}}, "required": ["@cloudant/cloudant", "cookie-parser", "dotenv", "express", "formidable", "ibm-cos-sdk", "jsonwebtoken"]}}, "required": ["name", "version", "main", "scripts", "engines", "repository", "author", "license", "dependencies"], "$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"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "sensio/framework-extra-bundle": {"type": "string"}}, "required": ["php", "sensio/framework-extra-bundle"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"UtilBundle\\": {"type": "string"}}, "required": ["UtilBundle\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "keywords", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "kamran/util-bundle", "type" : "symfony-bundle", "description" : "Helper functions to build symfony2 applications", "keywords" : ["util", "helper", "bundle"], "license" : "MIT", "authors" : [{"name" : "Kamran Shahzad", "email" : "bleak.unseen@gmail.com"}], "require" : {"php" : ">=5.4", "sensio/framework-extra-bundle" : "~3.0,>=3.0.2"}, "autoload" : {"psr-4" : {"UtilBundle\\" : ""}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "sensio/framework-extra-bundle": {"type": "string"}}, "required": ["php", "sensio/framework-extra-bundle"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"UtilBundle\\": {"type": "string"}}, "required": ["UtilBundle\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "keywords", "license", "authors", "require", "autoload"], "$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"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "angularjs": {"type": "string"}, "angular-bootstrap": {"type": "string"}, "angular-ui-grid": {"type": "string"}, "angular-ui-router": {"type": "string"}}, "required": ["bootstrap", "angularjs", "angular-bootstrap", "angular-ui-grid", "angular-ui-router"]}, "exportsOverride": {"type": "object", "properties": {"bootstrap": {"type": "object", "properties": {"js": {"type": "string"}, "css": {"type": "string"}, "fonts": {"type": "string"}}, "required": ["js", "css", "fonts"]}, "jquery": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}}, "required": ["bootstrap", "jquery"]}, "resolutions": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}}, "required": ["name", "license", "private", "dependencies", "exportsOverride", "resolutions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "bower", "license" : "Apache-2.0", "private" : true, "dependencies" : {"bootstrap" : "~3.3.4", "angularjs" : "~1.4.0", "angular-bootstrap" : "~0.13.0", "angular-ui-grid" : "3.0.0-rc.21", "angular-ui-router" : "~0.2.14"}, "exportsOverride" : {"bootstrap" : {"js" : "dist/js/*.*", "css" : "dist/css/*.*", "fonts" : "dist/fonts/*.*"}, "jquery" : {"js" : "jquery.{js,min.js,min.map}"}}, "resolutions" : {"angular" : ">= 1.0.8"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "angularjs": {"type": "string"}, "angular-bootstrap": {"type": "string"}, "angular-ui-grid": {"type": "string"}, "angular-ui-router": {"type": "string"}}, "required": ["bootstrap", "angularjs", "angular-bootstrap", "angular-ui-grid", "angular-ui-router"]}, "exportsOverride": {"type": "object", "properties": {"bootstrap": {"type": "object", "properties": {"js": {"type": "string"}, "css": {"type": "string"}, "fonts": {"type": "string"}}, "required": ["js", "css", "fonts"]}, "jquery": {"type": "object", "properties": {"js": {"type": "string"}}, "required": ["js"]}}, "required": ["bootstrap", "jquery"]}, "resolutions": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}}, "required": ["name", "license", "private", "dependencies", "exportsOverride", "resolutions"], "$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" : ["Preheat oven to 350 degrees F (175 degrees C).", "Pierce squash several times with a fork, and place in a microwave-safe dish. Microwave on high for 10 minutes, turn over, and continue cooking 10 minutes more. Squash flesh should be very tender inside. Set aside to cool.", "Cut squash in half lengthwise and scoop out seeds. Shred 1/2 cup of squash and place in a mixing bowl. Stir in egg, egg whites, evaporated milk, mozzarella cheese, and spinach until well combined. Spray a 9 inch pie place or quiche dish with cooking spray. Spread bread crumbs in the bottom and around the sides to coat. Pour egg mixture into prepared dish.", "Bake quiche in the preheated oven for 45 minutes, or until a toothpick inserted in the center comes out clean. Allow to cool for at least 10 minutes before cutting. Serve warm or at room temperature."], "ingredients" : ["1/2 cup frozen chopped spinach , thawed, drained and squeezed dry", "1/2 cup cooked, shredded spaghetti squash", "1 beaten egg", "3 egg whites", "1 (12 fluid ounce) can evaporated skim milk", "1 cup part-skim-milk mozzarella cheese", "cooking spray", "1/3 cup bread crumbs"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Spinach and Spaghetti Squash Quiche", "url" : "http://allrecipes.com/recipe/46645/spinach-and-spaghetti-squash-quiche/"} | 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": {"SmartContract": {"type": "object", "properties": {"_enum": {"type": "object", "properties": {"Evm": {"type": "string"}, "Wasm": {"type": "string"}}, "required": ["Evm", "Wasm"]}}, "required": ["_enum"]}, "EraRewardAndStake": {"type": "object", "properties": {"rewards": {"type": "string"}, "staked": {"type": "string"}}, "required": ["rewards", "staked"]}, "EraIndex": {"type": "string"}, "StakingLedger": {"type": "object", "properties": {"total": {"type": "string"}, "active": {"type": "string"}}, "required": ["total", "active"]}, "EraStakingPoints": {"type": "object", "properties": {"total": {"type": "string"}, "stakers": {"type": "string"}, "former_staked_era": {"type": "string"}, "claimed_rewards": {"type": "string"}}, "required": ["total", "stakers", "former_staked_era", "claimed_rewards"]}}, "required": ["SmartContract", "EraRewardAndStake", "EraIndex", "StakingLedger", "EraStakingPoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"SmartContract" : {"_enum" : {"Evm" : "H160", "Wasm" : "AccountId"}}, "EraRewardAndStake" : {"rewards" : "Balance", "staked" : "Balance"}, "EraIndex" : "u32", "StakingLedger" : {"total" : "Balance", "active" : "Balance"}, "EraStakingPoints" : {"total" : "Balance", "stakers" : "BTreeMap<AccountId, Balance>", "former_staked_era" : "u32", "claimed_rewards" : "Balance"}} | json_instruct | {"type": "object", "properties": {"SmartContract": {"type": "object", "properties": {"_enum": {"type": "object", "properties": {"Evm": {"type": "string"}, "Wasm": {"type": "string"}}, "required": ["Evm", "Wasm"]}}, "required": ["_enum"]}, "EraRewardAndStake": {"type": "object", "properties": {"rewards": {"type": "string"}, "staked": {"type": "string"}}, "required": ["rewards", "staked"]}, "EraIndex": {"type": "string"}, "StakingLedger": {"type": "object", "properties": {"total": {"type": "string"}, "active": {"type": "string"}}, "required": ["total", "active"]}, "EraStakingPoints": {"type": "object", "properties": {"total": {"type": "string"}, "stakers": {"type": "string"}, "former_staked_era": {"type": "string"}, "claimed_rewards": {"type": "string"}}, "required": ["total", "stakers", "former_staked_era", "claimed_rewards"]}}, "required": ["SmartContract", "EraRewardAndStake", "EraIndex", "StakingLedger", "EraStakingPoints"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"dateformat": {"type": "string"}, "discord.js": {"type": "string"}, "path": {"type": "string"}, "ffmpeg-static": {"type": "string"}, "axios": {"type": "string"}, "node-superfetch": {"type": "string"}, "moment": {"type": "string"}, "wio": {"type": "string"}, "opusscript": {"type": "string"}}, "required": ["dateformat", "discord.js", "path", "ffmpeg-static", "axios", "node-superfetch", "moment", "wio", "opusscript"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["main", "scripts", "dependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"main" : "ses.js", "scripts" : {"start" : "node ses.js"}, "dependencies" : {"dateformat" : "^4.4.0", "discord.js" : "^12.5.0", "path" : "^0.12.7", "ffmpeg-static" : "4.2.7", "axios" : "^0.21.1", "node-superfetch" : "^0.1.10", "moment" : "^2.29.1", "wio" : "^0.9.0", "opusscript" : "0.0.7"}, "engines" : {"node" : "12.x"}} | json_instruct | {"type": "object", "properties": {"main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"dateformat": {"type": "string"}, "discord.js": {"type": "string"}, "path": {"type": "string"}, "ffmpeg-static": {"type": "string"}, "axios": {"type": "string"}, "node-superfetch": {"type": "string"}, "moment": {"type": "string"}, "wio": {"type": "string"}, "opusscript": {"type": "string"}}, "required": ["dateformat", "discord.js", "path", "ffmpeg-static", "axios", "node-superfetch", "moment", "wio", "opusscript"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["main", "scripts", "dependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"subreddit" : "IndianGaming", "author" : "Am_I_Fricking_Clear", "count" : 20} | json_instruct | {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"scheduled_date": {"type": "string"}, "season": {"type": "integer"}, "referees": {"type": "array", "items": {"type": "object", "properties": {"team": {"type": "integer"}, "player": {"type": "integer"}}, "required": ["team", "player"]}}, "completed": {"type": "boolean"}, "schedule_id": {"type": "integer"}, "gamestats": {"type": "array", "items": {"type": "object", "properties": {"team": {"type": "integer"}, "goals": {"type": "array", "items": {}}, "fouls": {"type": "integer"}, "team_type": {"type": "string"}}, "required": ["team", "goals", "fouls", "team_type"]}}}, "required": ["scheduled_date", "season", "referees", "completed", "schedule_id", "gamestats"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"scheduled_date" : "2017-09-08", "season" : 1, "referees" : [{"team" : 3, "player" : 26}, {"team" : 2, "player" : 14}], "completed" : true, "schedule_id" : 114, "gamestats" : [{"team" : 4, "goals" : [], "fouls" : 0, "team_type" : "home"}, {"team" : 1, "goals" : [{"player" : 10, "minute" : 12}, {"player" : 10, "minute" : 21}, {"player" : 9, "minute" : 42}], "mom" : [{"player" : 10}], "fouls" : 3, "team_type" : "away"}]} | json_instruct | {"type": "object", "properties": {"scheduled_date": {"type": "string"}, "season": {"type": "integer"}, "referees": {"type": "array", "items": {"type": "object", "properties": {"team": {"type": "integer"}, "player": {"type": "integer"}}, "required": ["team", "player"]}}, "completed": {"type": "boolean"}, "schedule_id": {"type": "integer"}, "gamestats": {"type": "array", "items": {"type": "object", "properties": {"team": {"type": "integer"}, "goals": {"type": "array", "items": {}}, "fouls": {"type": "integer"}, "team_type": {"type": "string"}}, "required": ["team", "goals", "fouls", "team_type"]}}}, "required": ["scheduled_date", "season", "referees", "completed", "schedule_id", "gamestats"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"features": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "name_short": {"type": "string"}}, "required": ["name", "name_long", "name_short"]}}, "required": ["features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"features" : {"name" : "compatibility - Linux version 3.4.5", "name_long" : "Linux version 3.4.5 (android@android-desktop) (gcc version 4.6.x-google 20120106 (prerelease) (GCC) ) #1 SMP PREEMPT Tue Mar 4 22:17:13 CST 2014", "name_short" : "Linux version 3.4.5"}} | json_instruct | {"type": "object", "properties": {"features": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "name_short": {"type": "string"}}, "required": ["name", "name_long", "name_short"]}}, "required": ["features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2021-07-07T08:00:00Z", "Temp" : 26.8, "RelHum" : 52, "WindSpeed" : 1.6, "WindDir" : 258} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"__default__": {"type": "object", "properties": {"h_rt": {"type": "string"}, "h_vmem": {"type": "string"}, "pe": {"type": "string"}}, "required": ["h_rt", "h_vmem", "pe"]}}, "required": ["__default__"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"__default__" : {"h_rt" : "04:00:00", "h_vmem" : "8.00g", "pe" : "smp 1"}} | json_instruct | {"type": "object", "properties": {"__default__": {"type": "object", "properties": {"h_rt": {"type": "string"}, "h_vmem": {"type": "string"}, "pe": {"type": "string"}}, "required": ["h_rt", "h_vmem", "pe"]}}, "required": ["__default__"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3174010003", "district_id" : "3174010", "name" : "MERUYA SELATAN"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "\u3010\u539f\u795e\u3011 Mind Control - Yae Miko \u516b\u91cd\u795e\u5b50\uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "NaStay", "description" : "StartedundefinedPatreon.undefined<aundefinedhref='http://www.patreon.com/nastay0000'undefinedclass='bb-url'undefinedrel='nofollow'>Link</a><br>Iundefinedwouldundefinedbeundefinedgladundefinedifundefinedyouundefinedsupportundefinedme.undefinedAlso,undefinedyouundefinedcanundefinedvoteundefinednextundefinedcharacterundefinedforundefinedtheundefinedseries.", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/2269700/thumbnail-2269700_0010.jpg?itok=xJO9mBd5", "download" : "https://ecchi.iwara.tv/api/video/wmamrurlxjuqeqkjz", "origin" : "https://ecchi.iwara.tv/videos/wmamrurlxjuqeqkjz"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Omni-word Feature and Soft Constraint for Chinese Relation Extraction.", "fields" : ["parsing", "lexicon", "text segmentation", "relationship extraction", "sentence"], "abstract" : "Chinese is an ancient hieroglyphic. It is inattentive to structure. Therefore, segmenting and parsing Chinese are more difficult and less accurate. In this paper, we propose an Omniword feature and a soft constraint method for Chinese relation extraction. The Omni-word feature uses every potential word in a sentence as lexicon feature, reducing errors caused by word segmentation. In order to utilize the structure information of a relation instance, we discuss how soft constraint can be used to capture the local dependency. Both Omni-word feature and soft constraint make a better use of sentence information and minimize the influences caused by Chinese word segmentation and parsing. We test these methods on the ACE 2005 RDC Chinese corpus. The results show a significant improvement in Chinese relation extraction, outperforming other methods in F-score by 10% in 6 relation types and 15% in 18 relation subtypes.", "citation" : "Citations (4)", "year" : "2014", "departments" : ["Xi'an Jiaotong University", "Xi'an Jiaotong University", "Amazon.com"], "conf" : "acl", "authors" : ["Yanping Chen.....http://dblp.org/pers/hd/c/Chen_0007:Yanping", "Qinghua Zheng.....http://dblp.org/pers/hd/z/Zheng:Qinghua", "Wei Zhang.....http://dblp.org/pers/hd/z/Zhang_0053:Wei"], "pages" : 10} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "confidence": {"type": "integer"}, "recognized": {"type": "boolean"}, "bb_big_enough": {"type": "boolean"}, "class": {"type": "string"}, "left": {"type": "number"}}, "required": ["artwork_id", "right", "bottom", "top", "confidence", "recognized", "bb_big_enough", "class", "left"]}}, "p_voice": {"type": "string"}}, "required": ["frame_id", "walking", "video_id", "bbs", "p_voice"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"frame_id" : 4744, "walking" : "0", "video_id" : "VID_20161007_131547_reduced", "bbs" : [{"artwork_id" : "san_giorgio_donatello", "right" : 0.843747, "bottom" : 0.522144, "top" : 0.022238, "confidence" : 49, "recognized" : true, "bb_big_enough" : true, "class" : "artwork", "left" : 0.465193}, {"artwork_id" : "david_bronzo_donatello", "right" : 0.639532, "bottom" : 0.840435, "top" : 0.076644, "confidence" : 313, "recognized" : true, "bb_big_enough" : true, "class" : "artwork", "left" : 0.095045}], "p_voice" : "0"} | json_instruct | {"type": "object", "properties": {"frame_id": {"type": "integer"}, "walking": {"type": "string"}, "video_id": {"type": "string"}, "bbs": {"type": "array", "items": {"type": "object", "properties": {"artwork_id": {"type": "string"}, "right": {"type": "number"}, "bottom": {"type": "number"}, "top": {"type": "number"}, "confidence": {"type": "integer"}, "recognized": {"type": "boolean"}, "bb_big_enough": {"type": "boolean"}, "class": {"type": "string"}, "left": {"type": "number"}}, "required": ["artwork_id", "right", "bottom", "top", "confidence", "recognized", "bb_big_enough", "class", "left"]}}, "p_voice": {"type": "string"}}, "required": ["frame_id", "walking", "video_id", "bbs", "p_voice"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"jquery.ns-autogrow.js": {"type": "string"}, "jquery.ns-autogrow.min.js": {"type": "string"}}, "required": ["jquery.ns-autogrow.js", "jquery.ns-autogrow.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jquery.ns-autogrow.js" : "sha512-QbbE2PMKmhtgDa0VPIai1IGmVTLskrf7lUetJTHY19f6a/qdkq7RPF7bzTEwenaenDZNpKLFuTutvAbagpVqww==", "jquery.ns-autogrow.min.js" : "sha512-h/YbiVm7ZVGheG1sOuTTA8LD2e7PtCRUaJnwKFB+FVAaEn4InRXMz/Y/ML0504a3DclEhYGlY9XSbxU2MDyE+g=="} | json_instruct | {"type": "object", "properties": {"jquery.ns-autogrow.js": {"type": "string"}, "jquery.ns-autogrow.min.js": {"type": "string"}}, "required": ["jquery.ns-autogrow.js", "jquery.ns-autogrow.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Calagasan, Argao, Cebu, Central Visayas (Region VII), PH", "locale" : "ph.central-visayas-region-vii.cebu.argao.calagasan", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "7", "region_reference" : "7", "region_name" : "Central Visayas (Region VII)", "province_id" : "25", "province_reference" : "25", "province_name" : "Cebu", "city_id" : "69", "city_reference" : "444", "city_name" : "Argao", "barangay_id" : "1558", "barangay_reference" : "10821", "barangay_name" : "Calagasan"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[123.484909, 9.91456], [123.519943, 9.89987], [123.522377, 9.89388], [123.520432, 9.87855], [123.511742, 9.88357], [123.481033, 9.90057], [123.481819, 9.90354], [123.484123, 9.91262], [123.484909, 9.91456]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime~main.js": {"type": "string"}, "runtime~main.js.map": {"type": "string"}, "static/js/2.b41502e9.chunk.js": {"type": "string"}, "static/js/2.b41502e9.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.802ba37ec2d2bf88846a136da6b83a17.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/css/main.2cce8147.chunk.css.map": {"type": "string"}, "static/media/logo.svg": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime~main.js", "runtime~main.js.map", "static/js/2.b41502e9.chunk.js", "static/js/2.b41502e9.chunk.js.map", "index.html", "precache-manifest.802ba37ec2d2bf88846a136da6b83a17.js", "service-worker.js", "static/css/main.2cce8147.chunk.css.map", "static/media/logo.svg"]}}, "required": ["files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"files" : {"main.css" : "/me/static/css/main.2cce8147.chunk.css", "main.js" : "/me/static/js/main.255f98fa.chunk.js", "main.js.map" : "/me/static/js/main.255f98fa.chunk.js.map", "runtime~main.js" : "/me/static/js/runtime~main.7f73a39c.js", "runtime~main.js.map" : "/me/static/js/runtime~main.7f73a39c.js.map", "static/js/2.b41502e9.chunk.js" : "/me/static/js/2.b41502e9.chunk.js", "static/js/2.b41502e9.chunk.js.map" : "/me/static/js/2.b41502e9.chunk.js.map", "index.html" : "/me/index.html", "precache-manifest.802ba37ec2d2bf88846a136da6b83a17.js" : "/me/precache-manifest.802ba37ec2d2bf88846a136da6b83a17.js", "service-worker.js" : "/me/service-worker.js", "static/css/main.2cce8147.chunk.css.map" : "/me/static/css/main.2cce8147.chunk.css.map", "static/media/logo.svg" : "/me/static/media/logo.5d5d9eef.svg"}} | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime~main.js": {"type": "string"}, "runtime~main.js.map": {"type": "string"}, "static/js/2.b41502e9.chunk.js": {"type": "string"}, "static/js/2.b41502e9.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.802ba37ec2d2bf88846a136da6b83a17.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/css/main.2cce8147.chunk.css.map": {"type": "string"}, "static/media/logo.svg": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime~main.js", "runtime~main.js.map", "static/js/2.b41502e9.chunk.js", "static/js/2.b41502e9.chunk.js.map", "index.html", "precache-manifest.802ba37ec2d2bf88846a136da6b83a17.js", "service-worker.js", "static/css/main.2cce8147.chunk.css.map", "static/media/logo.svg"]}}, "required": ["files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"25380": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["25380"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"25380" : {"success" : false}} | json_instruct | {"type": "object", "properties": {"25380": {"type": "object", "properties": {"success": {"type": "boolean"}}, "required": ["success"]}}, "required": ["25380"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"hoverDataList": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "metric": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "count": {"type": "integer"}, "amount": {"type": "number"}}, "required": ["type", "count", "amount"]}}}, "required": ["name", "metric"]}}}, "required": ["hoverDataList"]}, "responseTimestamp": {"type": "integer"}}, "required": ["success", "code", "data", "responseTimestamp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"success" : true, "code" : "SUCCESS", "data" : {"hoverDataList" : [{"name" : "serchhip district", "metric" : [{"type" : "TOTAL", "count" : 691, "amount" : 1729998.4078016216}]}, {"name" : "aizawl district", "metric" : [{"type" : "TOTAL", "count" : 12006, "amount" : 27918980.947612707}]}, {"name" : "lunglei district", "metric" : [{"type" : "TOTAL", "count" : 1604, "amount" : 2350555.3184242332}]}, {"name" : "mamit district", "metric" : [{"type" : "TOTAL", "count" : 1133, "amount" : 5729263.410353888}]}, {"name" : "lawngtlai district", "metric" : [{"type" : "TOTAL", "count" : 735, "amount" : 547180.2110017058}]}, {"name" : "kolasib district", "metric" : [{"type" : "TOTAL", "count" : 1457, "amount" : 3891685.392413744}]}, {"name" : "champhai district", "metric" : [{"type" : "TOTAL", "count" : 453, "amount" : 871005.7153709702}]}, {"name" : "saiha district", "metric" : [{"type" : "TOTAL", "count" : 482, "amount" : 2188550.572811981}]}]}, "responseTimestamp" : 1630502910905} | json_instruct | {"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"hoverDataList": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "metric": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "count": {"type": "integer"}, "amount": {"type": "number"}}, "required": ["type", "count", "amount"]}}}, "required": ["name", "metric"]}}}, "required": ["hoverDataList"]}, "responseTimestamp": {"type": "integer"}}, "required": ["success", "code", "data", "responseTimestamp"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 39446, "cartId" : "76a25471-ddbc-447f-a29f-bfabec3cdc87", "preferredProducts" : [3928, 3388, 4959], "productReviews" : [{"productId" : 2420, "reviewText" : "This Clothing, Outdoors & Home works outstandingly well. It grudgingly improves my baseball by a lot.", "reviewDate" : "2019-07-06T08:26:02.5302415+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["xorg-libxau"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"main": {"type": "boolean"}}, "required": ["main"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "ad16f5d94def4332e24b", "c" : {"main" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"main": {"type": "boolean"}}, "required": ["main"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"department": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "fullname": {"type": "string"}, "number": {"type": "integer"}, "section": {"type": "string"}, "semester": {"type": "integer"}, "shortname": {"type": "string"}, "type": {"type": "string"}, "year": {"type": "integer"}}, "required": ["department", "description", "fullname", "number", "section", "semester", "shortname", "type", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"department" : "NURS", "description" : ["Students synthesize knowledge and apply evidence-based practice in the care and management of", "patients with multiple complex health conditions. The focus of this course is on caring for", "patients with", "limitations in their ability to function due to physical, mental, and psychosocial challenges.", "Simulation will be used to facilitate student learning in critical care environments. Counts", "toward the nursing major. Offered annually in the spring semester. Prerequisites: open to senior", "nursing majors only; NURS 315 and NURS 316; concurrent registration in NURS 317, NURS 318, and", "NURS 399."], "fullname" : "Complex Patient Care", "number" : 319, "section" : "", "semester" : 3, "shortname" : "Complex Patient Care", "type" : "R", "year" : 2019} | json_instruct | {"type": "object", "properties": {"department": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "fullname": {"type": "string"}, "number": {"type": "integer"}, "section": {"type": "string"}, "semester": {"type": "integer"}, "shortname": {"type": "string"}, "type": {"type": "string"}, "year": {"type": "integer"}}, "required": ["department", "description", "fullname", "number", "section", "semester", "shortname", "type", "year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "masticator", "definition" : "1. One who masticates. 2. A machine for cutting meat into fine pieces for toothless people; also, a machine for cutting leather, India rubber, or similar tough substances, into fine pieces, in some processes of manufacture."} | 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": {"generator-swiftserver": {"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"]}}, "required": ["generator-swiftserver"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"generator-swiftserver" : {"version" : "4.8.8"}} | json_instruct | {"type": "object", "properties": {"generator-swiftserver": {"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"]}}, "required": ["generator-swiftserver"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "authorUrl": {"type": "string"}, "manualUrl": {"type": "string"}, "pluginUrl": {"type": "string"}, "donateUrl": {"type": "string"}, "latestVersion": {"type": "string"}}, "required": ["name", "author", "license", "authorUrl", "manualUrl", "pluginUrl", "donateUrl", "latestVersion"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Turing Machine + Blank", "author" : "Stellare Modular", "license" : "MIT", "authorUrl" : "https://www.facebook.com/stellaremodular", "manualUrl" : "https://github.com/stellare-modular/vcv-rack/blob/master/README.md", "pluginUrl" : "https://github.com/stellare-modular/vcv-rack/releases/tag/0.6.0", "donateUrl" : "https://paypal.me/stellaremodular", "latestVersion" : "0.6.0"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "authorUrl": {"type": "string"}, "manualUrl": {"type": "string"}, "pluginUrl": {"type": "string"}, "donateUrl": {"type": "string"}, "latestVersion": {"type": "string"}}, "required": ["name", "author", "license", "authorUrl", "manualUrl", "pluginUrl", "donateUrl", "latestVersion"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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" : "0x9e52c72e4de19ef704f8907e9540698a4715b0fedc615ce4612b95504fcd451a", "parentHash" : "0x1afba4e852d5d2e996eb0a1dcd138aca81a3fde0bdcb3fadb10f54198c26b555", "number" : 13280, "timestamp" : 1438379929, "nonce" : "0x1ff346591f2fcbdd", "difficulty" : 798692298008, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xf927a40C8B7F6E07c5af7FA2155B4864a4112B13", "extraData" : "0x476574682f76312e302e302f6c696e75782f676f312e342e32", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "paypalEmail": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["id", "name", "paypalEmail", "homepage"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 64670, "info" : {"name" : "TwitPic - No Ads (April 2012)", "description" : "Hides all Ads on twitpic.com", "additionalInfo" : "/* +++ changelog +++\r\nApril 26th, 2012\r\n - original release\r\n*/", "format" : "uso", "category" : "twitpic", "createdAt" : "2012-04-26T12:17:33.000Z", "updatedAt" : "2012-04-26T12:17:33.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 3165, "name" : "war59312", "paypalEmail" : "war59312@gmail.com", "homepage" : "https://www.war59312.com/"}}, "stats" : {"installs" : {"total" : 136, "weekly" : 0}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "/*\r\n * Author: Will (war59312@gmail.com)\r\n * Description: Hides all Ads on twitpic.com\r\n*/\r\n\r\n/* +++ changelog +++\r\nApril 26th, 2012\r\n - original release\r\n*/\r\n\r\n@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"twitpic.com\") {\r\n\r\n/* muahah too easy - removes all the ads */\r\niframe { display:none !important; }\r\n\r\n/* \"Advertise on Twitpic\" */\r\na[href*=\"advertise.twitpic.com\"] { display:none !important; }\r\n\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "paypalEmail": {"type": "string"}, "homepage": {"type": "string"}}, "required": ["id", "name", "paypalEmail", "homepage"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"yield": {"type": "string"}, "nutritionEstimates": {"type": "array", "items": {}}, "totalTime": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"hostedSmallUrl": {"type": "string"}, "hostedMediumUrl": {"type": "string"}, "hostedLargeUrl": {"type": "string"}, "imageUrlsBySize": {"type": "object", "properties": {"90": {"type": "string"}, "360": {"type": "string"}}, "required": ["90", "360"]}}, "required": ["hostedSmallUrl", "hostedMediumUrl", "hostedLargeUrl", "imageUrlsBySize"]}}, "name": {"type": "string"}, "source": {"type": "object", "properties": {"sourceDisplayName": {"type": "string"}, "sourceSiteUrl": {"type": "string"}, "sourceRecipeUrl": {"type": "string"}}, "required": ["sourceDisplayName", "sourceSiteUrl", "sourceRecipeUrl"]}, "id": {"type": "string"}, "ingredientLines": {"type": "array", "items": {"type": "string"}}, "attribution": {"type": "object", "properties": {"html": {"type": "string"}, "url": {"type": "string"}, "text": {"type": "string"}, "logo": {"type": "string"}}, "required": ["html", "url", "text", "logo"]}, "numberOfServings": {"type": "integer"}, "totalTimeInSeconds": {"type": "integer"}, "attributes": {"type": "object", "properties": {"course": {"type": "array", "items": {"type": "string"}}, "cuisine": {"type": "array", "items": {"type": "string"}}}, "required": ["course", "cuisine"]}, "flavors": {"type": "object", "properties": {}, "required": []}, "rating": {"type": "integer"}}, "required": ["yield", "nutritionEstimates", "totalTime", "images", "name", "source", "id", "ingredientLines", "attribution", "numberOfServings", "totalTimeInSeconds", "attributes", "flavors", "rating"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"yield" : "serves 6", "nutritionEstimates" : [], "totalTime" : "1 hr 20 min", "images" : [{"hostedSmallUrl" : "http://lh3.googleusercontent.com/vlugGw1WwKESES1-_Kp0lLAvhF7jUEr62LUSmS8C3Wf8wgC_Pg341L_EM1dRRDCE1d6n5zYiTVcTlCISQaNXRQ=s90", "hostedMediumUrl" : "http://lh3.googleusercontent.com/vlugGw1WwKESES1-_Kp0lLAvhF7jUEr62LUSmS8C3Wf8wgC_Pg341L_EM1dRRDCE1d6n5zYiTVcTlCISQaNXRQ=s180", "hostedLargeUrl" : "http://lh3.googleusercontent.com/vlugGw1WwKESES1-_Kp0lLAvhF7jUEr62LUSmS8C3Wf8wgC_Pg341L_EM1dRRDCE1d6n5zYiTVcTlCISQaNXRQ=s360", "imageUrlsBySize" : {"90" : "http://lh3.googleusercontent.com/u9y65ZhSa10olmEALf0K3aeZS76aL8N5Z5Psf4vVP3kdPdAijO7bqU-TrG735qieIRNfHzAz99NnmEeQF6L6-Fk=s90-c", "360" : "http://lh3.googleusercontent.com/u9y65ZhSa10olmEALf0K3aeZS76aL8N5Z5Psf4vVP3kdPdAijO7bqU-TrG735qieIRNfHzAz99NnmEeQF6L6-Fk=s360-c"}}], "name" : "Soy Sauce Chicken", "source" : {"sourceDisplayName" : "Delishar", "sourceSiteUrl" : "delishar.com", "sourceRecipeUrl" : "http://delishar.com/2015/08/soy-sauce-chicken.html"}, "id" : "Soy-Sauce-Chicken-1249764", "ingredientLines" : ["1.5-2kg whole chicken, cleaned", "2 tsp oil", "8 slices of old ginger", "6 cloves garlic, smashed", "2 stalks scallions, chop into 2 inch pieces", "3 star anise", "1 1/4 cup Shao Xing wine", "1 1/4 cup light soy sauce", "1 1/4 cup dark soy sauce", "3/4 cup sugar", "1 1/2 tsp salt", "8 cups water"], "attribution" : {"html" : "<a href='http://www.yummly.co/recipe/Soy-Sauce-Chicken-1249764'>Soy Sauce Chicken recipe</a> information powered by <img alt='Yummly' src='https://static.yummly.co/api-logo.png'/>", "url" : "http://www.yummly.co/recipe/Soy-Sauce-Chicken-1249764", "text" : "Soy Sauce Chicken recipes: information powered by Yummly", "logo" : "https://static.yummly.co/api-logo.png"}, "numberOfServings" : 6, "totalTimeInSeconds" : 4800, "attributes" : {"course" : ["Main Dishes"], "cuisine" : ["Chinese"]}, "flavors" : {}, "rating" : 4} | json_instruct | {"type": "object", "properties": {"yield": {"type": "string"}, "nutritionEstimates": {"type": "array", "items": {}}, "totalTime": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"hostedSmallUrl": {"type": "string"}, "hostedMediumUrl": {"type": "string"}, "hostedLargeUrl": {"type": "string"}, "imageUrlsBySize": {"type": "object", "properties": {"90": {"type": "string"}, "360": {"type": "string"}}, "required": ["90", "360"]}}, "required": ["hostedSmallUrl", "hostedMediumUrl", "hostedLargeUrl", "imageUrlsBySize"]}}, "name": {"type": "string"}, "source": {"type": "object", "properties": {"sourceDisplayName": {"type": "string"}, "sourceSiteUrl": {"type": "string"}, "sourceRecipeUrl": {"type": "string"}}, "required": ["sourceDisplayName", "sourceSiteUrl", "sourceRecipeUrl"]}, "id": {"type": "string"}, "ingredientLines": {"type": "array", "items": {"type": "string"}}, "attribution": {"type": "object", "properties": {"html": {"type": "string"}, "url": {"type": "string"}, "text": {"type": "string"}, "logo": {"type": "string"}}, "required": ["html", "url", "text", "logo"]}, "numberOfServings": {"type": "integer"}, "totalTimeInSeconds": {"type": "integer"}, "attributes": {"type": "object", "properties": {"course": {"type": "array", "items": {"type": "string"}}, "cuisine": {"type": "array", "items": {"type": "string"}}}, "required": ["course", "cuisine"]}, "flavors": {"type": "object", "properties": {}, "required": []}, "rating": {"type": "integer"}}, "required": ["yield", "nutritionEstimates", "totalTime", "images", "name", "source", "id", "ingredientLines", "attribution", "numberOfServings", "totalTimeInSeconds", "attributes", "flavors", "rating"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "null"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "string"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"accession_number" : "1996.149", "actors" : [], "creation_date" : null, "credit_line" : "Bequest of Kurt F. Pantzer", "cultures" : [], "dimensions" : "8 15/16 x 11 3/8 in. | 22.7 x 28.9 cm. (image and sheet)", "dynasty" : null, "images" : [], "irn" : 15286, "materials" : "watercolor and gouache on off-white paper", "on_view" : false, "period" : null, "printers" : [], "publishers" : [], "rights" : null, "title" : "Estuary"} | json_instruct | {"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "null"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "string"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"total_time_consume": {"type": "number"}, "preprocess": {"type": "object", "properties": {"total_time": {"type": "number"}}, "required": ["total_time"]}, "classifier": {"type": "array", "items": {"type": "object", "properties": {"ins_id": {"type": "integer"}, "dataset_partition": {"type": "object", "properties": {"hashing_time": {"type": "number"}, "total_time": {"type": "number"}, "cluster_number_distribution": {"type": "array", "items": {"type": "integer"}}}, "required": ["hashing_time", "total_time", "cluster_number_distribution"]}, "prepare_train_sample": {"type": "object", "properties": {"time": {"type": "number"}}, "required": ["time"]}, "train_eval_model": {"type": "object", "properties": {"train_intermediate": {"type": "array", "items": {"type": "object", "properties": {"epoch": {"type": "integer"}, "loss": {"type": "number"}, "eval_loss": {"type": "number"}, "train_recall": {"type": "number"}, "val_recall": {"type": "number"}, "lr": {"type": "number"}}, "required": ["epoch", "loss", "eval_loss", "train_recall", "val_recall", "lr"]}}, "train_total": {"type": "object", "properties": {"correct": {"type": "integer"}, "final_recall": {"type": "number"}}, "required": ["correct", "final_recall"]}, "training_time": {"type": "number"}, "eval_time": {"type": "number"}}, "required": ["train_intermediate", "train_total", "training_time", "eval_time"]}}, "required": ["ins_id", "dataset_partition", "prepare_train_sample", "train_eval_model"]}}, "integrate": {"type": "object", "properties": {"time": {"type": "number"}}, "required": ["time"]}, "count_recall": {"type": "object", "properties": {"time": {"type": "number"}}, "required": ["time"]}}, "required": ["total_time_consume", "preprocess", "classifier", "integrate", "count_recall"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"total_time_consume" : 5.640697240829468, "preprocess" : {"total_time" : 0.0329594612121582}, "classifier" : [{"ins_id" : 0, "dataset_partition" : {"hashing_time" : 0.0004134178161621094, "total_time" : 0.001476287841796875, "cluster_number_distribution" : [596, 619, 643, 614, 624, 575, 626, 609, 647, 638, 649, 647, 633, 603, 664, 613]}, "prepare_train_sample" : {"time" : 0.045886993408203125}, "train_eval_model" : {"train_intermediate" : [{"epoch" : 0, "loss" : 177.85674497542843, "eval_loss" : 138.20449447631836, "train_recall" : 0.08636363636363636, "val_recall" : 0.05, "lr" : 0.008}, {"epoch" : 1, "loss" : 174.9398674749559, "eval_loss" : 137.06105041503906, "train_recall" : 0.1111111111111111, "val_recall" : 0.09, "lr" : 0.008}], "train_total" : {"correct" : 1100, "final_recall" : 0.1111111111111111}, "training_time" : 4.117163896560669, "eval_time" : 0.004027366638183594}}], "integrate" : {"time" : 0.6495006084442139}, "count_recall" : {"time" : 0.42913007736206055}} | json_instruct | {"type": "object", "properties": {"total_time_consume": {"type": "number"}, "preprocess": {"type": "object", "properties": {"total_time": {"type": "number"}}, "required": ["total_time"]}, "classifier": {"type": "array", "items": {"type": "object", "properties": {"ins_id": {"type": "integer"}, "dataset_partition": {"type": "object", "properties": {"hashing_time": {"type": "number"}, "total_time": {"type": "number"}, "cluster_number_distribution": {"type": "array", "items": {"type": "integer"}}}, "required": ["hashing_time", "total_time", "cluster_number_distribution"]}, "prepare_train_sample": {"type": "object", "properties": {"time": {"type": "number"}}, "required": ["time"]}, "train_eval_model": {"type": "object", "properties": {"train_intermediate": {"type": "array", "items": {"type": "object", "properties": {"epoch": {"type": "integer"}, "loss": {"type": "number"}, "eval_loss": {"type": "number"}, "train_recall": {"type": "number"}, "val_recall": {"type": "number"}, "lr": {"type": "number"}}, "required": ["epoch", "loss", "eval_loss", "train_recall", "val_recall", "lr"]}}, "train_total": {"type": "object", "properties": {"correct": {"type": "integer"}, "final_recall": {"type": "number"}}, "required": ["correct", "final_recall"]}, "training_time": {"type": "number"}, "eval_time": {"type": "number"}}, "required": ["train_intermediate", "train_total", "training_time", "eval_time"]}}, "required": ["ins_id", "dataset_partition", "prepare_train_sample", "train_eval_model"]}}, "integrate": {"type": "object", "properties": {"time": {"type": "number"}}, "required": ["time"]}, "count_recall": {"type": "object", "properties": {"time": {"type": "number"}}, "required": ["time"]}}, "required": ["total_time_consume", "preprocess", "classifier", "integrate", "count_recall"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "\u3010MMD\u3011\u3000\u5c0f\u3063\u3061\u3083\u3044\u5922\u83dc\u3067 \u300e\u771f\u590f\u306e\u30ec\u30bf\u30fc\u30ec\u30a4\u30f3\u30dc\u30fc\u300f", "author" : "\u30cf\u30eb\u30eb\u30f3 moto syun", "description" : "R18<br><aundefinedhref='https://fantia.jp/posts/201643'>https://fantia.jp/posts/201643</a>", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/video_embed_field_thumbnails/youtube/ghpQXcQrAlQ.jpg?itok=PfW6ECae", "download" : "https://www.iwara.tv/api/video/yx62psklvju0zj8lr", "origin" : "https://www.iwara.tv/videos/yx62psklvju0zj8lr"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "const questions = [{\n question: \"Do I need a Passport to come on this trip?\",\n answer: \"Yes, you will need a Passport with at least 6 months of validity past the date of your departure from Spain.\"\n}, {\n question: \"Do I need a Passport to come on this trip?\",\n answer: \"Yes, you will need a Passport with at least 6 months of validity past the date of your departure from Spain.\"\n}, {\n question: \"Can we do touring of our own?\",\n answer: `Of course! You\u2019re welcome to do any and all travel you\u2019d like before or after the wedding. We fully expect our friends and family to want to take advantage of time abroad, and hope you make the best out of your experience.`\n}];\nexport default questions;", "map" : {"version" : 3, "sources" : ["/Users/loganmetzger/Documents/wedding22/barcelona22/src/info/questions.js"], "names" : ["questions", "question", "answer"], "mappings" : "AAAA,MAAMA,SAAS,GAAG,CAChB;AACEC,EAAAA,QAAQ,EAAE,4CADZ;AAEEC,EAAAA,MAAM,EAAE;AAFV,CADgB,EAKhB;AACED,EAAAA,QAAQ,EAAE,4CADZ;AAEEC,EAAAA,MAAM,EAAE;AAFV,CALgB,EAShB;AACED,EAAAA,QAAQ,EAAE,+BADZ;AAEEC,EAAAA,MAAM,EAAG;AAFX,CATgB,CAAlB;AAeA,eAAeF,SAAf", "sourcesContent" : ["const questions = [\n {\n question: \"Do I need a Passport to come on this trip?\",\n answer: \"Yes, you will need a Passport with at least 6 months of validity past the date of your departure from Spain.\",\n },\n {\n question: \"Do I need a Passport to come on this trip?\",\n answer: \"Yes, you will need a Passport with at least 6 months of validity past the date of your departure from Spain.\",\n },\n {\n question: \"Can we do touring of our own?\",\n answer: `Of course! You\u2019re welcome to do any and all travel you\u2019d like before or after the wedding. We fully expect our friends and family to want to take advantage of time abroad, and hope you make the best out of your experience.`,\n },\n];\n\nexport default questions;\n"]}, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"bv": {"type": "object", "properties": {"w": {"type": "string"}, "t": {"type": "string"}}, "required": ["w", "t"]}, "bvd": {"type": "object", "properties": {"w": {"type": "string"}, "t": {"type": "string"}}, "required": ["w", "t"]}, "bvd's": {"type": "object", "properties": {"w": {"type": "string"}, "t": {"type": "string"}}, "required": ["w", "t"]}, "bvds": {"type": "object", "properties": {"w": {"type": "string"}, "p": {"type": "string"}, "t": {"type": "string"}}, "required": ["w", "p", "t"]}, "bvh": {"type": "string"}, "bvi": {"type": "string"}, "bvlgari": {"type": "string"}, "bvm": {"type": "object", "properties": {"w": {"type": "string"}, "t": {"type": "string"}}, "required": ["w", "t"]}, "bvs": {"type": "string"}, "bvt": {"type": "string"}}, "required": ["bv", "bvd", "bvd's", "bvds", "bvh", "bvi", "bvlgari", "bvm", "bvs", "bvt"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"bv" : {"w" : "BV", "t" : "abbr. \u6cd5\u56fd\u56fd\u9645\u68c0\u9a8c\u5c40\uff08Bureau Veritas\uff09\uff1b\u5723\u6bcd\u739b\u5229\u4e9a\uff08Blessed Virgin\uff09\uff1b\u7968\u9762\u4ef7\u503c\uff08Book Value\uff09\uff1b\u5e03\u97e6\u5c9b\uff08Bouvet Island\uff09"}, "bvd" : {"w" : "BVD", "t" : "abbr. \u725b\u75c5\u6bd2\u6027\u8179\u6cfb\uff08bovine virus diarrhea\uff09\\nabbr. \u725b\u7c98\u819c\u7efc\u5408\u75c7\uff08bovine virus diarrhea\uff09"}, "bvd's" : {"w" : "BVD's", "t" : "[\u7f51\u7edc] BVD\u7684"}, "bvds" : {"w" : "BVDs", "p" : "'bi:'vi:'di:z", "t" : "<\u7f8e>(\u4e00\u5957)\u5185\u8863"}, "bvh" : "abbr. biventricular hypertrophy \u53cc\u4fa7\u5fc3\u5ba4\u80a5\u5927", "bvi" : "[\u533b][=blood vessel invasion]\u8840\u7ba1\u4fb5\u5165", "bvlgari" : "\u610f\u5927\u5229\u7684\u5b9d\u683c\u4e3d\uff0c\u662f\u7ee7\u6cd5\u56fd\u5361\u5730\u4e9a\u548c\u7f8e\u56fd\u8482\u8299\u5c3c\u4e4b\u540e\u7684\u4e16\u754c\u7b2c\u4e09\u5927\u73e0\u5b9d\u54c1\u724c", "bvm" : {"w" : "BVM", "t" : "abbr. \u5723\u6bcd\u9a6c\u5229\u4e9a\uff08Blessed Virgin Mary\uff09"}, "bvs" : "abbr. Bureau of Vital Statistics <\u7f8e\u56fd>\u4eba\u53e3\u7edf\u8ba1\u5c40; biventricular support \u53cc\u5fc3\u5ba4\u652f\u6301; biventricular System \u53cc\u5fc3\u5ba4\u7cfb\u7edf; biventricular stimulation \u53cc\u5fc3\u5ba4\u523a\u6fc0", "bvt" : "abbr. brevet \u540d\u8a89\u664b\u5347, \u4e88\u4ee5\u540d\u8a89\u664b\u5347; brevetted \u540d\u8a89\u664b\u7ea7\u7684"} | json_instruct | {"type": "object", "properties": {"bv": {"type": "object", "properties": {"w": {"type": "string"}, "t": {"type": "string"}}, "required": ["w", "t"]}, "bvd": {"type": "object", "properties": {"w": {"type": "string"}, "t": {"type": "string"}}, "required": ["w", "t"]}, "bvd's": {"type": "object", "properties": {"w": {"type": "string"}, "t": {"type": "string"}}, "required": ["w", "t"]}, "bvds": {"type": "object", "properties": {"w": {"type": "string"}, "p": {"type": "string"}, "t": {"type": "string"}}, "required": ["w", "p", "t"]}, "bvh": {"type": "string"}, "bvi": {"type": "string"}, "bvlgari": {"type": "string"}, "bvm": {"type": "object", "properties": {"w": {"type": "string"}, "t": {"type": "string"}}, "required": ["w", "t"]}, "bvs": {"type": "string"}, "bvt": {"type": "string"}}, "required": ["bv", "bvd", "bvd's", "bvds", "bvh", "bvi", "bvlgari", "bvm", "bvs", "bvt"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"instance_num": {"type": "integer"}}, "required": ["instance_num"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"instance_num" : 15} | json_instruct | {"type": "object", "properties": {"instance_num": {"type": "integer"}}, "required": ["instance_num"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "CTSUM: extracting more certain summaries for news articles.", "fields" : ["sentence", "ranking", "certainty", "multi document summarization", "automatic summarization"], "abstract" : "People often read summaries of news articles in order to get reliable information about an event or a topic. However, the information expressed in news articles is not always certain, and some sentences contain uncertain information about the event. Existing summarization systems do not consider whether a sentence in news articles is certain or not. In this paper, we propose a novel system called CTSUM to incorporate the new factor of information certainty into the summarization task. We first analyze the sentences in news articles and automatically predict the certainty levels of sentences by using the support vector regression method with a few useful features. The predicted certainty scores are then incorporated into a summarization system with a graph-based ranking algorithm. Experimental results on a manually labeled dataset verify the effectiveness of the sentence certainty prediction technique, and experimental results on the DUC2007 dataset shows that our new summarization system cannot only produce summaries with better content quality, but also produce summaries with higher certainty.", "citation" : "Citations (15)", "departments" : ["Peking University", "Peking University"], "authors" : ["Xiaojun Wan.....http://dblp.org/pers/hd/w/Wan_0001:Xiaojun", "Jianmin Zhang.....http://dblp.org/pers/hd/z/Zhang:Jianmin"], "conf" : "sigir", "year" : "2014", "pages" : 10} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"cd0sa": {"type": "number"}, "cd0fp": {"type": "number"}, "cd1sa": {"type": "number"}, "cl1sa": {"type": "number"}, "cd1fp": {"type": "number"}, "coeff_drag_shift": {"type": "number"}, "coeff_lift_shift": {"type": "number"}, "coeff_lift_gain": {"type": "number"}, "train_sc_a": {"type": "array", "items": {"type": "number"}}, "train_sc_v": {"type": "array", "items": {"type": "number"}}, "val_sc_a": {"type": "integer"}, "val_sc_v": {"type": "integer"}, "total_sc_a": {"type": "integer"}, "total_sc_v": {"type": "integer"}}, "required": ["cd0sa", "cd0fp", "cd1sa", "cl1sa", "cd1fp", "coeff_drag_shift", "coeff_lift_shift", "coeff_lift_gain", "train_sc_a", "train_sc_v", "val_sc_a", "val_sc_v", "total_sc_a", "total_sc_v"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cd0sa" : -0.38015605295463034, "cd0fp" : -369.74395045417896, "cd1sa" : 0.976702053802994, "cl1sa" : -4.286255559841872, "cd1fp" : 1165.7772172055022, "coeff_drag_shift" : -7.41192544959689, "coeff_lift_shift" : 20.636166477388034, "coeff_lift_gain" : 44.848836391401825, "train_sc_a" : [9.463710408729412], "train_sc_v" : [0.05217221226922936], "val_sc_a" : 0, "val_sc_v" : 0, "total_sc_a" : 0, "total_sc_v" : 0} | json_instruct | {"type": "object", "properties": {"cd0sa": {"type": "number"}, "cd0fp": {"type": "number"}, "cd1sa": {"type": "number"}, "cl1sa": {"type": "number"}, "cd1fp": {"type": "number"}, "coeff_drag_shift": {"type": "number"}, "coeff_lift_shift": {"type": "number"}, "coeff_lift_gain": {"type": "number"}, "train_sc_a": {"type": "array", "items": {"type": "number"}}, "train_sc_v": {"type": "array", "items": {"type": "number"}}, "val_sc_a": {"type": "integer"}, "val_sc_v": {"type": "integer"}, "total_sc_a": {"type": "integer"}, "total_sc_v": {"type": "integer"}}, "required": ["cd0sa", "cd0fp", "cd1sa", "cl1sa", "cd1fp", "coeff_drag_shift", "coeff_lift_shift", "coeff_lift_gain", "train_sc_a", "train_sc_v", "val_sc_a", "val_sc_v", "total_sc_a", "total_sc_v"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"state": {"type": "string"}, "id": {"type": "string"}, "actionPlanId": {"type": "string"}, "collectionInstrumentId": {"type": "string"}, "partyId": {"type": "string"}, "iac": {"type": "string"}, "caseRef": {"type": "string"}, "createdBy": {"type": "string"}, "sampleUnitType": {"type": "string"}, "createdDateTime": {"type": "string"}, "caseGroup": {"type": "object", "properties": {"collectionExerciseId": {"type": "string"}, "id": {"type": "string"}, "partyId": {"type": "string"}, "sampleUnitRef": {"type": "string"}, "sampleUnitType": {"type": "string"}, "caseGroupStatus": {"type": "string"}}, "required": ["collectionExerciseId", "id", "partyId", "sampleUnitRef", "sampleUnitType", "caseGroupStatus"]}, "responses": {"type": "array", "items": {}}, "caseEvents": {"type": "null"}}, "required": ["state", "id", "actionPlanId", "collectionInstrumentId", "partyId", "iac", "caseRef", "createdBy", "sampleUnitType", "createdDateTime", "caseGroup", "responses", "caseEvents"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"state" : "ACTIONABLE", "id" : "10b04906-f478-47f9-a985-783400dd8482", "actionPlanId" : "878c3462-766a-4cf6-8fb3-867d5124cc0f", "collectionInstrumentId" : "a227b807-d475-4fa0-bc47-e8d8f6243e84", "partyId" : "b3ba864b-7cbc-4f44-84fe-88dc018a1a4c", "iac" : "jkbvyklkwj88", "caseRef" : "1000000000000010", "createdBy" : "SYSTEM", "sampleUnitType" : "B", "createdDateTime" : "2018-02-13T15:45:13.328Z", "caseGroup" : {"collectionExerciseId" : "14fb3e68-4dca-46db-bf49-04b84e07e77c", "id" : "612f5c34-7e11-4740-8e24-cb321a86a917", "partyId" : "b3ba864b-7cbc-4f44-84fe-88dc018a1a4c", "sampleUnitRef" : "50012345678", "sampleUnitType" : "B", "caseGroupStatus" : "NOTSTARTED"}, "responses" : [], "caseEvents" : null}, {"state" : "INACTIONABLE", "id" : "90bb2c1c-a04f-48c7-b008-c92450b3d164", "actionPlanId" : "878c3462-766a-4cf6-8fb3-867d5124cc0f", "collectionInstrumentId" : "afae226e-9227-4ff8-affa-406deb6b28ad", "partyId" : "b3ba864b-7cbc-4f44-84fe-88dc018a1a4c", "iac" : "ljbgg3kgstr4", "caseRef" : "1000000000000005", "createdBy" : "SYSTEM", "sampleUnitType" : "B", "createdDateTime" : "2018-02-13T15:45:12.219Z", "caseGroup" : {"collectionExerciseId" : "9af403f8-5fc5-43b1-9fca-afbd9c65da5c", "id" : "f68c70d6-4a30-48bf-9c35-0202d3c2893f", "partyId" : "b3ba864b-7cbc-4f44-84fe-88dc018a1a4c", "sampleUnitRef" : "50012345678", "sampleUnitType" : "B", "caseGroupStatus" : "NOTSTARTED"}, "responses" : [], "caseEvents" : null}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"state": {"type": "string"}, "id": {"type": "string"}, "actionPlanId": {"type": "string"}, "collectionInstrumentId": {"type": "string"}, "partyId": {"type": "string"}, "iac": {"type": "string"}, "caseRef": {"type": "string"}, "createdBy": {"type": "string"}, "sampleUnitType": {"type": "string"}, "createdDateTime": {"type": "string"}, "caseGroup": {"type": "object", "properties": {"collectionExerciseId": {"type": "string"}, "id": {"type": "string"}, "partyId": {"type": "string"}, "sampleUnitRef": {"type": "string"}, "sampleUnitType": {"type": "string"}, "caseGroupStatus": {"type": "string"}}, "required": ["collectionExerciseId", "id", "partyId", "sampleUnitRef", "sampleUnitType", "caseGroupStatus"]}, "responses": {"type": "array", "items": {}}, "caseEvents": {"type": "null"}}, "required": ["state", "id", "actionPlanId", "collectionInstrumentId", "partyId", "iac", "caseRef", "createdBy", "sampleUnitType", "createdDateTime", "caseGroup", "responses", "caseEvents"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : 27482, "citation_title" : "Real-Time Real Economic Activity: Exiting the Great Recession and Entering the Pandemic Recession", "citation_author" : ["Francis X. Diebold"], "citation_publication_date" : "2020-07-06", "issue_date" : "2020-07-02", "revision_date" : "None", "topics" : ["Macroeconomics", "Business Cycles"], "program" : ["Asset Pricing", "Economic Fluctuations and Growth", "International Finance and Macroeconomics"], "projects" : null, "working_groups" : null, "abstract" : "\n\nWe study the real-time signals provided by the Aruoba-Diebold-Scotti Index of Business conditions (ADS) for tracking economic activity at high frequency. We start with exit from the Great Recession, comparing the evolution of real-time vintage beliefs to a \"final\" late-vintage chronology. We then consider entry into the Pandemic Recession, again tracking the evolution of real-time vintage beliefs. ADS swings widely as its underlying economic indicators swing widely, but the emerging ADS path as of this writing (late June) indicates a return to growth in May. The trajectory of the nascent recovery, however, is highly uncertain (particularly as COVID-19 spreads in the South and West) and could be revised or eliminated as new data arrive.\n\n", "acknowledgement" : "\nFor helpful discussion I thank Boragan Aruoba, Glenn Rudebusch, Chiara Scotti, Minchul Shin, Keith Sill, and Tom Stark. For outstanding research assistance and related discussion I thank Philippe Goulet Coulombe, Tony Liu, and Boyan Zhang. The usual disclaimer applies. The views expressed herein are those of the author and do not necessarily reflect the views of the National Bureau of Economic Research.\n\n\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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "3f0c20b7c4397e908d5c", "c" : {"app" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"time_fct_id": {"type": "integer"}, "time_fct": {"type": "string"}, "affiliate_fct_id": {"type": "integer"}, "affiliate_fct": {"type": "string"}, "affiliate_fct_occurrence": {"type": "integer"}, "affiliates": {"type": "array", "items": {"type": "object", "properties": {"affiliate_fct_id": {"type": "integer"}, "affiliate_fct": {"type": "string"}, "affiliate_fct_occurrence": {"type": "integer"}}, "required": ["affiliate_fct_id", "affiliate_fct", "affiliate_fct_occurrence"]}}}, "required": ["time_fct_id", "time_fct", "affiliate_fct_id", "affiliate_fct", "affiliate_fct_occurrence", "affiliates"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"time_fct_id" : 17, "time_fct" : "time_62090", "affiliate_fct_id" : 4062, "affiliate_fct" : "Kreiseinrichtungen", "affiliate_fct_occurrence" : 318, "affiliates" : [{"affiliate_fct_id" : 4062, "affiliate_fct" : "Kreiseinrichtungen", "affiliate_fct_occurrence" : 318}, {"affiliate_fct_id" : 464127, "affiliate_fct" : "Schmitt-Lieb, Dr.", "affiliate_fct_occurrence" : 1}, {"affiliate_fct_id" : 545976, "affiliate_fct" : "M\u00fchlbayer, Esther", "affiliate_fct_occurrence" : 1}, {"affiliate_fct_id" : 649688, "affiliate_fct" : "L\u00f6wenstein-Wertheim-Rosenberg, Alois Konstantin", "affiliate_fct_occurrence" : 1}]} | json_instruct | {"type": "object", "properties": {"time_fct_id": {"type": "integer"}, "time_fct": {"type": "string"}, "affiliate_fct_id": {"type": "integer"}, "affiliate_fct": {"type": "string"}, "affiliate_fct_occurrence": {"type": "integer"}, "affiliates": {"type": "array", "items": {"type": "object", "properties": {"affiliate_fct_id": {"type": "integer"}, "affiliate_fct": {"type": "string"}, "affiliate_fct_occurrence": {"type": "integer"}}, "required": ["affiliate_fct_id", "affiliate_fct", "affiliate_fct_occurrence"]}}}, "required": ["time_fct_id", "time_fct", "affiliate_fct_id", "affiliate_fct", "affiliate_fct_occurrence", "affiliates"], "$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"}, "license": {"type": "string"}, "repository": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "dependencies": {"type": "object", "properties": {"tmp": {"type": "string"}, "xml2js": {"type": "string"}}, "required": ["tmp", "xml2js"]}, "devDependencies": {"type": "object", "properties": {"merge": {"type": "string"}}, "required": ["merge"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "license", "repository", "publishConfig", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@swissquote/crafty-preset-maven", "version" : "1.0.0", "license" : "Apache-2.0", "repository" : "https://github.com/swissquote/crafty.git", "publishConfig" : {"access" : "public"}, "dependencies" : {"tmp" : "0.0.33", "xml2js" : "0.4.19"}, "devDependencies" : {"merge" : "1.2.0"}, "engines" : {"node" : ">=6.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "dependencies": {"type": "object", "properties": {"tmp": {"type": "string"}, "xml2js": {"type": "string"}}, "required": ["tmp", "xml2js"]}, "devDependencies": {"type": "object", "properties": {"merge": {"type": "string"}}, "required": ["merge"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "license", "repository", "publishConfig", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["versionEnd", "versionStart", "changes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"versionEnd" : {"versionNum" : 3665, "commit" : "3db19e12e703d174738e6f5ce1e9f6911cbfe748", "date" : "2021-09-17T17:04:34.308Z"}, "versionStart" : {"versionNum" : 3664, "commit" : "d5fb89d811990f2145e8d64f967a29918ad41373", "date" : "2021-09-17T16:52:54.189Z"}, "changes" : ["blockchains/smartchain/assets/0x5B2b5BD1e5C53870fE135Fb7b289D686f762858d/info.json"]} | json_instruct | {"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["versionEnd", "versionStart", "changes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"relation": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "pageTitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "hasHeader": {"type": "boolean"}, "headerPosition": {"type": "string"}, "tableType": {"type": "string"}, "tableNum": {"type": "integer"}, "s3Link": {"type": "string"}, "recordEndOffset": {"type": "integer"}, "recordOffset": {"type": "integer"}, "tableOrientation": {"type": "string"}, "textBeforeTable": {"type": "string"}, "textAfterTable": {"type": "string"}, "hasKeyColumn": {"type": "boolean"}, "keyColumnIndex": {"type": "integer"}, "headerRowIndex": {"type": "integer"}}, "required": ["relation", "pageTitle", "title", "url", "hasHeader", "headerPosition", "tableType", "tableNum", "s3Link", "recordEndOffset", "recordOffset", "tableOrientation", "textBeforeTable", "textAfterTable", "hasKeyColumn", "keyColumnIndex", "headerRowIndex"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"relation" : [["Author", "IcyAntoid", "IcyAntoid", "IcyAntoid", "IcyAntoid", "IcyAntoid"], ["Title", "Pokey-Bot", "Pole Vaulting", "Poo", "Poo's Fighter Stance", "Possessed Paula"], ["Description", "My submission to SaturnStorm's Porky/Pokey-Bot community project.", "How far can he throw it?", "Preparing to unleash the fury of PSI Starstorm? Maybe.", "Inspired from a video of mock-fighting I watched a long time ago, although I'm pretty sure I messed up the position somehow. Oh, well... Enjoy, and revel over the fact that Poo is probably more limber in his joints than you might initially think.", "I would just hate to be Ness right now. What's he gonna do?!"], ["Date", "10/24/12", "7/26/12", "6/13/10", "11/14/08", "11/21/08"], ["Rank", "0.00", "0.00", "0.00", "0.00", "0.00"]], "pageTitle" : "STARMEN.NET - EarthBound / Mother 3 Goodness.", "title" : "", "url" : "http://starmen.net/vote/vote.php?id=29855&stuffPageNumber=110", "hasHeader" : true, "headerPosition" : "FIRST_ROW", "tableType" : "RELATION", "tableNum" : 0, "s3Link" : "common-crawl/crawl-data/CC-MAIN-2015-32/segments/1438042988458.74/warc/CC-MAIN-20150728002308-00108-ip-10-236-191-2.ec2.internal.warc.gz", "recordEndOffset" : 230762515, "recordOffset" : 230754313, "tableOrientation" : "HORIZONTAL", "textBeforeTable" : "> Z Y X W V U T S R Q P O N M L K J I H G F E D C B A 8 5 4 2 1 < Other Submissions by IcyAntoid I am offering out of the pure goodness of my heart. Are you sure? We wouldn't want these to go to waste. This image has been resized for your convenience. Click", "textAfterTable" : "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49", "hasKeyColumn" : true, "keyColumnIndex" : 1, "headerRowIndex" : 0} | json_instruct | {"type": "object", "properties": {"relation": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "pageTitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "hasHeader": {"type": "boolean"}, "headerPosition": {"type": "string"}, "tableType": {"type": "string"}, "tableNum": {"type": "integer"}, "s3Link": {"type": "string"}, "recordEndOffset": {"type": "integer"}, "recordOffset": {"type": "integer"}, "tableOrientation": {"type": "string"}, "textBeforeTable": {"type": "string"}, "textAfterTable": {"type": "string"}, "hasKeyColumn": {"type": "boolean"}, "keyColumnIndex": {"type": "integer"}, "headerRowIndex": {"type": "integer"}}, "required": ["relation", "pageTitle", "title", "url", "hasHeader", "headerPosition", "tableType", "tableNum", "s3Link", "recordEndOffset", "recordOffset", "tableOrientation", "textBeforeTable", "textAfterTable", "hasKeyColumn", "keyColumnIndex", "headerRowIndex"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type": "integer"}, "species": {"type": "string"}, "monster_type": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "ability": {"type": "string"}, "has_effect": {"type": "boolean"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "is_tuner": {"type": "boolean"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "attribute", "atk", "species", "monster_type", "is_pendulum", "ability", "has_effect", "def", "level", "is_tuner"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 34442949, "name" : "Mechanical Snail", "is_illegal" : false, "is_custom" : false, "text" : "A cyborg snail that still travels at a slow pace.", "images" : ["https://storage.googleapis.com/ygoprodeck.com/pics/34442949.jpg"], "type" : "Monster", "attribute" : "DARK", "atk" : 800, "species" : "Machine", "monster_type" : "", "is_pendulum" : false, "ability" : "", "has_effect" : false, "def" : 1000, "level" : 3, "is_tuner" : false} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type": "integer"}, "species": {"type": "string"}, "monster_type": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "ability": {"type": "string"}, "has_effect": {"type": "boolean"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "is_tuner": {"type": "boolean"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "attribute", "atk", "species", "monster_type", "is_pendulum", "ability", "has_effect", "def", "level", "is_tuner"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "import { useLayoutEffect, useEffect } from 'react';\nvar isBrowser = typeof window !== \"undefined\";\nvar useIsomorphicLayoutEffect = isBrowser ? useLayoutEffect : useEffect;\nexport { useIsomorphicLayoutEffect };", "map" : null, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"version": {"type": "object", "properties": {"major": {"type": "integer"}, "minor": {"type": "integer"}}, "required": ["major", "minor"]}}, "required": ["version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : {"major" : 0, "minor" : 1425}} | json_instruct | {"type": "object", "properties": {"version": {"type": "object", "properties": {"major": {"type": "integer"}, "minor": {"type": "integer"}}, "required": ["major", "minor"]}}, "required": ["version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 2003, "sex" : "F", "n" : 5, "prop" : 2.49e-06}, {"year" : 2004, "sex" : "F", "n" : 9, "prop" : 4.46e-06}, {"year" : 2005, "sex" : "F", "n" : 18, "prop" : 8.87e-06}, {"year" : 2006, "sex" : "F", "n" : 12, "prop" : 5.74e-06}, {"year" : 2007, "sex" : "F", "n" : 12, "prop" : 5.67e-06}, {"year" : 2008, "sex" : "F", "n" : 14, "prop" : 6.73e-06}, {"year" : 2009, "sex" : "F", "n" : 9, "prop" : 4.45e-06}, {"year" : 2010, "sex" : "F", "n" : 20, "prop" : 0}, {"year" : 2011, "sex" : "F", "n" : 26, "prop" : 0}, {"year" : 2012, "sex" : "F", "n" : 27, "prop" : 0}, {"year" : 2013, "sex" : "F", "n" : 32, "prop" : 0}, {"year" : 2014, "sex" : "F", "n" : 27, "prop" : 0}, {"year" : 2015, "sex" : "F", "n" : 38, "prop" : 0}, {"year" : 2016, "sex" : "F", "n" : 63, "prop" : 0}, {"year" : 2017, "sex" : "F", "n" : 60, "prop" : 0}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"kind" : "Property", "name" : "GamepadButton.value", "href" : "https://developer.mozilla.org/en-US/docs/Web/API/GamepadButton/value", "description" : "The GamepadButton.value property of the GamepadButton interface returns a double value used to represent the current state of analog buttons on many modern gamepads, such as the triggers.", "refs" : [{"name" : "Gamepad", "href" : "https://w3c.github.io/gamepad/#dom-gamepadbutton-value", "description" : "GamepadButton.value - Gamepad"}]} | json_instruct | {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "refs": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "href", "description"]}}}, "required": ["kind", "name", "href", "description", "refs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "timestamp": {"type": "string"}, "user/mode": {"type": "string"}, "user/angle": {"type": "number"}}, "required": ["cam/image_array", "user/throttle", "timestamp", "user/mode", "user/angle"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "3181_cam-image_array_.jpg", "user/throttle" : 0.8, "timestamp" : "2019-02-17 21:58:00.220712", "user/mode" : "user", "user/angle" : -1.0} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "timestamp": {"type": "string"}, "user/mode": {"type": "string"}, "user/angle": {"type": "number"}}, "required": ["cam/image_array", "user/throttle", "timestamp", "user/mode", "user/angle"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"General": {"type": "object", "properties": {"Verbosity": {"type": "string"}, "version": {"type": "string"}}, "required": ["Verbosity", "version"]}, "Logging": {"type": "object", "properties": {"Path": {"type": "string"}, "MaxFiles": {"type": "integer"}, "MaxTotalSize": {"type": "string"}}, "required": ["Path", "MaxFiles", "MaxTotalSize"]}, "Assets": {"type": "object", "properties": {"Path": {"type": "string"}}, "required": ["Path"]}}, "required": ["General", "Logging", "Assets"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"General" : {"Verbosity" : "Normal", "version" : "1.0.0"}, "Logging" : {"Path" : "Default", "MaxFiles" : 200, "MaxTotalSize" : "5MB"}, "Assets" : {"Path" : "Default"}} | json_instruct | {"type": "object", "properties": {"General": {"type": "object", "properties": {"Verbosity": {"type": "string"}, "version": {"type": "string"}}, "required": ["Verbosity", "version"]}, "Logging": {"type": "object", "properties": {"Path": {"type": "string"}, "MaxFiles": {"type": "integer"}, "MaxTotalSize": {"type": "string"}}, "required": ["Path", "MaxFiles", "MaxTotalSize"]}, "Assets": {"type": "object", "properties": {"Path": {"type": "string"}}, "required": ["Path"]}}, "required": ["General", "Logging", "Assets"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"210111001": {"type": "string"}, "210111003": {"type": "string"}, "210111004": {"type": "string"}, "210111005": {"type": "string"}, "210111006": {"type": "string"}, "210111007": {"type": "string"}, "210111008": {"type": "string"}, "210111009": {"type": "string"}, "210111010": {"type": "string"}, "210111011": {"type": "string"}, "210111012": {"type": "string"}, "210111013": {"type": "string"}, "210111014": {"type": "string"}, "210111015": {"type": "string"}, "210111016": {"type": "string"}, "210111017": {"type": "string"}, "210111018": {"type": "string"}}, "required": ["210111001", "210111003", "210111004", "210111005", "210111006", "210111007", "210111008", "210111009", "210111010", "210111011", "210111012", "210111013", "210111014", "210111015", "210111016", "210111017", "210111018"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"210111001" : "\u89e3\u653e\u8857\u9053", "210111003" : "\u6c11\u4e3b\u8857\u9053", "210111004" : "\u4e34\u6e56\u8857\u9053", "210111005" : "\u4e2d\u5174\u8857\u9053", "210111006" : "\u6e56\u897f\u8857\u9053", "210111007" : "\u516b\u4e00\u8857\u9053", "210111008" : "\u7ea2\u83f1\u8857\u9053", "210111009" : "\u6797\u76db\u8857\u9053", "210111010" : "\u6c99\u6cb3\u8857\u9053", "210111011" : "\u5341\u91cc\u6cb3\u8857\u9053", "210111012" : "\u9648\u76f8\u8857\u9053", "210111013" : "\u59da\u5343\u8857\u9053", "210111014" : "\u738b\u7eb2\u8857\u9053", "210111015" : "\u6c38\u4e50\u8857\u9053", "210111016" : "\u5927\u6c9f\u8857\u9053", "210111017" : "\u767d\u6e05\u8857\u9053", "210111018" : "\u4f5f\u6c9f\u8857\u9053"} | json_instruct | {"type": "object", "properties": {"210111001": {"type": "string"}, "210111003": {"type": "string"}, "210111004": {"type": "string"}, "210111005": {"type": "string"}, "210111006": {"type": "string"}, "210111007": {"type": "string"}, "210111008": {"type": "string"}, "210111009": {"type": "string"}, "210111010": {"type": "string"}, "210111011": {"type": "string"}, "210111012": {"type": "string"}, "210111013": {"type": "string"}, "210111014": {"type": "string"}, "210111015": {"type": "string"}, "210111016": {"type": "string"}, "210111017": {"type": "string"}, "210111018": {"type": "string"}}, "required": ["210111001", "210111003", "210111004", "210111005", "210111006", "210111007", "210111008", "210111009", "210111010", "210111011", "210111012", "210111013", "210111014", "210111015", "210111016", "210111017", "210111018"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"filename": {"type": "string"}, "folder": {"type": "string"}, "image_w_h": {"type": "array", "items": {"type": "integer"}}, "objects": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "x_y_w_h": {"type": "array", "items": {"type": "integer"}}}, "required": ["label", "x_y_w_h"]}}}, "required": ["filename", "folder", "image_w_h", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"filename" : "G0015085.JPG", "folder" : "GoPro_0727", "image_w_h" : [4000, 3000], "objects" : [{"label" : "Bench", "x_y_w_h" : [1301, 1396, 88, 128]}, {"label" : "Sit", "x_y_w_h" : [1955, 1296, 125, 203]}, {"label" : "Sit", "x_y_w_h" : [2259, 1288, 231, 329]}]} | json_instruct | {"type": "object", "properties": {"filename": {"type": "string"}, "folder": {"type": "string"}, "image_w_h": {"type": "array", "items": {"type": "integer"}}, "objects": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "x_y_w_h": {"type": "array", "items": {"type": "integer"}}}, "required": ["label", "x_y_w_h"]}}}, "required": ["filename", "folder", "image_w_h", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"solution_size": {"type": "integer"}, "ok": {"type": "boolean"}, "resemblance": {"type": "number"}, "problem_id": {"type": "integer"}, "solution_spec_hash": {"type": "string"}}, "required": ["solution_size", "ok", "resemblance", "problem_id", "solution_spec_hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"solution_size" : 3790, "ok" : true, "resemblance" : 0.66045, "problem_id" : 675, "solution_spec_hash" : "eb25037ef6b40f10f6a018cae2d31b9e02bf8aed"} | json_instruct | {"type": "object", "properties": {"solution_size": {"type": "integer"}, "ok": {"type": "boolean"}, "resemblance": {"type": "number"}, "problem_id": {"type": "integer"}, "solution_spec_hash": {"type": "string"}}, "required": ["solution_size", "ok", "resemblance", "problem_id", "solution_spec_hash"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Saonnet", "dpt" : "Calvados", "inscrits" : 196, "abs" : 33, "votants" : 163, "blancs" : 15, "nuls" : 1, "exp" : 147, "res" : [{"panneau" : "2", "voix" : 83}, {"panneau" : "1", "voix" : 64}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"generated_at" : "2017-01-27T09:37:38.322961", "required_by" : ["todos", "emoji-ipython-magic", "monzo-api-stub", "py_support", "mr_bot"], "requires" : [], "package" : "emoji"} | json_instruct | {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"generated_at" : "2017-01-27T09:37:27.087165", "required_by" : ["mkdocs-pandoc", "mkdocs_tree", "mkdocs-cluster", "django_mkdocs", "weblocust"], "requires" : ["click", "Jinja2", "livereload", "PyYAML", "tornado"], "package" : "mkdocs"} | json_instruct | {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"source": {"type": "string"}, "repo": {"type": "string"}}, "required": ["source", "repo"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"source" : "~/.grunt-sources/web", "repo" : "https://github.com/jpillora/grunt-source-web.git"} | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "repo": {"type": "string"}}, "required": ["source", "repo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : "Tina Chang", "classification" : "", "keywords" : ["Love", "Desire", "Relationships", "Family", "Ancestors", "Men", "Women", "Arts", "Sciences", "Poetry", "Poets"], "period" : "", "reference" : "http://www.poetryfoundation.org/poem/248646", "region" : "U.S., Mid-Atlantic", "text" : ["I am haunted by how much our mothers do not know.", "How a republic falls because of its backhanded deals,", "stairwell secrets. My mother does not know I am lying", "with a man who is darker than me, that we do not", "have names for how we truly treat our bodies.", "What we do with them. The other possesses me.", "Without him the perception of me fails to exist.", "My mother now is taking her sheers and cutting", "through live shrimp. When I was a child she peeled", "each flushed grape until only the pale fleshy bead", "remained. She placed them onto a plate in one shining", "mound, deseeded, in front of me. How I sucked and bled", "the fruit of all their juice, hypnotized in front of the buzz", "of television in each version of my childhood. I am", "her daughter. This is certain. I am lying down with a man", "who is darker than me and maybe this poem is my", "real republic, my face is my face, or is it stolen from", "my mother and hung over mine? If I were a dream", "you could say my countenance was a string of flickering lights", "made of teeth or an expression unraveling like a carpet", "into a narrow river of another life. Does truth matter", "when it's floating face up or face down?", "The answer to this makes all the difference."], "title" : "Love", "year" : ""} | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "classification": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "period": {"type": "string"}, "reference": {"type": "string"}, "region": {"type": "string"}, "text": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "year": {"type": "string"}}, "required": ["author", "classification", "keywords", "period", "reference", "region", "text", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 163740, "name" : "Lichess Pink Peices", "description" : "Turns the white Merida peices into pink ones! I spent a lot of time on these so you have to enjoy.", "user" : {"id" : 710714, "name" : "Declan Gould", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2018-08-29T12:58:54.000Z", "weekly_install_count" : 0, "total_install_count" : 24, "rating" : null, "after_screenshot_name" : "https://userstyles.org/style_screenshots/163740_after.png?r=1583913696", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2018-08-29T12:58:54.000Z", "category" : "site", "raw_subcategory" : "lichess", "subcategory" : "lichess", "additional_info" : null, "style_tags" : [], "css" : "@-moz-document domain(\"lichess.org\")\r\n{\r\n\r\npiece.pawn.white { background-image: url(\"https://i.redd.it/bg8bwqlehsi11.png\")!important;} \r\npiece.knight.white { background-image: url(\"https://i.redd.it/6jxsueojoti11.png\")!important;} \r\npiece.bishop.white { background-image: url(\"https://i.redd.it/0p6nb6f61vi11.png\")!important;} \r\npiece.rook.white { background-image: url(\"https://i.redd.it/4sp4qqieesi11.png\")!important;} \r\npiece.queen.white { background-image: url(\"https://i.redd.it/vjuis7mqz0j11.png\")!important;} \r\npiece.king.white { background-image: url(\"https://i.redd.it/bswhsh2tiyi11.png\")!important;}\r\n\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/163740/lichess-pink-peices.user.js", "style_settings" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/pom.xml": {"type": "integer"}}, "required": ["/pom.xml"]}, "pull_request": {"type": "string"}, "report": {"type": "object", "properties": {"files_fixed": {"type": "integer"}, "vulnerabilities_fixed": {"type": "integer"}}, "required": ["files_fixed", "vulnerabilities_fixed"]}}, "required": ["project_name", "files", "pull_request", "report"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"project_name" : "AnujaK/restfiddle", "files" : {"/pom.xml" : 1}, "pull_request" : "https://github.com/AnujaK/restfiddle/pull/448", "report" : {"files_fixed" : 1, "vulnerabilities_fixed" : 1}} | json_instruct | {"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/pom.xml": {"type": "integer"}}, "required": ["/pom.xml"]}, "pull_request": {"type": "string"}, "report": {"type": "object", "properties": {"files_fixed": {"type": "integer"}, "vulnerabilities_fixed": {"type": "integer"}}, "required": ["files_fixed", "vulnerabilities_fixed"]}}, "required": ["project_name", "files", "pull_request", "report"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"input": {"type": "object", "properties": {"data": {"type": "object", "properties": {}, "required": []}}, "required": ["data"]}, "spec": {"type": "object", "properties": {"data": {"type": "object", "properties": {"a?": {"type": "string"}, "b?": {"type": "string"}, "c": {"type": "string"}}, "required": ["a?", "b?", "c"]}}, "required": ["data"]}, "context": {"type": "object", "properties": {}, "required": []}, "OVERWRITR": {"type": "object", "properties": {"data": {"type": "object", "properties": {"c": {"type": "string"}}, "required": ["c"]}}, "required": ["data"]}, "DEFAULTR": {"type": "object", "properties": {"data": {"type": "object", "properties": {"c": {"type": "string"}}, "required": ["c"]}}, "required": ["data"]}, "DEFINR": {"type": "object", "properties": {"data": {"type": "object", "properties": {"c": {"type": "string"}}, "required": ["c"]}}, "required": ["data"]}}, "required": ["input", "spec", "context", "OVERWRITR", "DEFAULTR", "DEFINR"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"input" : {"data" : {}}, "spec" : {"data" : {"a?" : "x", "b?" : "y", "c" : "z"}}, "context" : {}, "OVERWRITR" : {"data" : {"c" : "z"}}, "DEFAULTR" : {"data" : {"c" : "z"}}, "DEFINR" : {"data" : {"c" : "z"}}} | json_instruct | {"type": "object", "properties": {"input": {"type": "object", "properties": {"data": {"type": "object", "properties": {}, "required": []}}, "required": ["data"]}, "spec": {"type": "object", "properties": {"data": {"type": "object", "properties": {"a?": {"type": "string"}, "b?": {"type": "string"}, "c": {"type": "string"}}, "required": ["a?", "b?", "c"]}}, "required": ["data"]}, "context": {"type": "object", "properties": {}, "required": []}, "OVERWRITR": {"type": "object", "properties": {"data": {"type": "object", "properties": {"c": {"type": "string"}}, "required": ["c"]}}, "required": ["data"]}, "DEFAULTR": {"type": "object", "properties": {"data": {"type": "object", "properties": {"c": {"type": "string"}}, "required": ["c"]}}, "required": ["data"]}, "DEFINR": {"type": "object", "properties": {"data": {"type": "object", "properties": {"c": {"type": "string"}}, "required": ["c"]}}, "required": ["data"]}}, "required": ["input", "spec", "context", "OVERWRITR", "DEFAULTR", "DEFINR"], "$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"}, "mitreid": {"type": "string"}, "description": {"type": "string"}, "instructions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "mitreid", "description", "instructions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Enumerate domain users and groups", "mitreid" : "T1087.002", "description" : "Getting the domain users and groups via net command.", "instructions" : ["exec cmd /cnet user /domain", "exec cmd /cnet group \"domain admins\" /domain"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "mitreid": {"type": "string"}, "description": {"type": "string"}, "instructions": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "mitreid", "description", "instructions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["410702007014", "\u660e\u73e0\u82b1\u56ed\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["410702007015", "\u5b66\u5e9c\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["410702007016", "\u5f18\u6cf0\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["410702007017", "\u5efa\u6587\u793e\u533a", "111", "0"], ["410702007018", "\u6e05\u534e\u56ed\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["410702007200", "\u5b5f\u8425\u4e00\u6751\u6751\u59d4\u4f1a", "111", "0"], ["410702007400", "\u548c\u5e73\u5b9e\u4e1a\u516c\u53f8\u793e\u533a", "111", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1982, 5], [1983, 5], [1984, 5], [1985, 5], [1986, 6], [1990, 8], [1991, 7], [1992, 5], [1993, 7], [1994, 9], [2005, 5], [2007, 5], [2009, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Aboodma\\Btcturk\\": {"type": "string"}}, "required": ["Aboodma\\Btcturk\\"]}}, "required": ["psr-4"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"guzzlehttp/guzzle": {"type": "string"}}, "required": ["guzzlehttp/guzzle"]}}, "required": ["name", "description", "version", "type", "license", "autoload", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "aboodma/btcturk", "description" : "BTC TURK API PHP", "version" : "1.0.0", "type" : "library", "license" : "MIT", "autoload" : {"psr-4" : {"Aboodma\\Btcturk\\" : "src/"}}, "authors" : [{"name" : "aboodma58", "email" : "34406204+aboodma@users.noreply.github.com"}], "require" : {"guzzlehttp/guzzle" : "7.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Aboodma\\Btcturk\\": {"type": "string"}}, "required": ["Aboodma\\Btcturk\\"]}}, "required": ["psr-4"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"guzzlehttp/guzzle": {"type": "string"}}, "required": ["guzzlehttp/guzzle"]}}, "required": ["name", "description", "version", "type", "license", "autoload", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "MAXILYNN", "frequency" : 1, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-plan-url": {"type": "string"}, "planning-permission-history": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "point": {"type": "string"}, "organisation": {"type": "string"}, "deliverable": {"type": "string"}, "planning-permission-type": {"type": "string"}, "site-address": {"type": "string"}, "planning-permission-status": {"type": "string"}, "name": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-date": {"type": "string"}, "site": {"type": "string"}, "notes": {"type": "string"}, "hectares": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-plan-url", "planning-permission-history", "maximum-net-dwellings", "minimum-net-dwellings", "point", "organisation", "deliverable", "planning-permission-type", "site-address", "planning-permission-status", "name", "start-date", "planning-permission-date", "site", "notes", "hectares", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.307373, 51.397178]}, "properties" : {"site-plan-url" : "https://data.london.gov.uk/dataset/brownfield-land-register", "planning-permission-history" : "https://maps.kingston.gov.uk/propertyServices/planning/Details?caseNo=14/12933/FUL", "maximum-net-dwellings" : "5", "minimum-net-dwellings" : "5", "point" : "POINT(-0.307373 51.397178)", "organisation" : "local-authority-eng:KTT", "deliverable" : "yes", "planning-permission-type" : "full planning permission", "site-address" : "17-19 Grove Road, Surbiton", "planning-permission-status" : "permissioned", "name" : "RBK0009", "start-date" : "2017-12-12", "planning-permission-date" : "2015-08-26", "site" : "RBK0009", "notes" : "Planning permission 14/12933/FUL for 1 net additional home (C3) granted on 26/08/2015. Site has capacity to deliver at least 5 net additional homes (C3).. Erection of single storey detached dwelling (C3).", "hectares" : "0.05", "slug" : "/brownfield-land/local-authority-eng/KTT/RBK0009", "entity" : 485228, "entry-date" : "2017-12-12"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site-plan-url": {"type": "string"}, "planning-permission-history": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "point": {"type": "string"}, "organisation": {"type": "string"}, "deliverable": {"type": "string"}, "planning-permission-type": {"type": "string"}, "site-address": {"type": "string"}, "planning-permission-status": {"type": "string"}, "name": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-date": {"type": "string"}, "site": {"type": "string"}, "notes": {"type": "string"}, "hectares": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["site-plan-url", "planning-permission-history", "maximum-net-dwellings", "minimum-net-dwellings", "point", "organisation", "deliverable", "planning-permission-type", "site-address", "planning-permission-status", "name", "start-date", "planning-permission-date", "site", "notes", "hectares", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["versionEnd", "versionStart", "changes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"versionEnd" : {"versionNum" : 2881, "commit" : "7fa250d84a438684b761cbfa74cbccb565242fe4", "date" : "2021-07-09T17:37:50.751Z"}, "versionStart" : {"versionNum" : 2880, "commit" : "3a3e297d57df913f8bfe95bee66fbb34d69ced51", "date" : "2021-07-09T17:28:08.389Z"}, "changes" : ["blockchains/smartchain/assets/0xAECf6d1afF214feF70042740054f0f6D0Caa98Ab/info.json", "blockchains/smartchain/assets/0xAECf6d1afF214feF70042740054f0f6D0Caa98Ab/logo.png"]} | json_instruct | {"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["versionEnd", "versionStart", "changes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"teamdojoApp": {"type": "object", "properties": {"skill": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}}, "required": ["title", "createLabel", "createOrEditLabel"]}, "created": {"type": "string"}, "updated": {"type": "string"}, "deleted": {"type": "string"}, "delete": {"type": "object", "properties": {"question": {"type": "string"}}, "required": ["question"]}, "detail": {"type": "object", "properties": {"title": {"type": "string"}, "rateCount": {"type": "string"}, "modalTitle": {"type": "string"}, "modalClose": {"type": "string"}, "modalSubmit": {"type": "string"}}, "required": ["title", "rateCount", "modalTitle", "modalClose", "modalSubmit"]}, "title": {"type": "string"}, "description": {"type": "string"}, "implementation": {"type": "string"}, "validation": {"type": "string"}, "expiryPeriod": {"type": "string"}, "contact": {"type": "string"}, "score": {"type": "string"}, "rateScore": {"type": "string"}, "rateCount": {"type": "string"}, "teams": {"type": "string"}, "badges": {"type": "string"}, "levels": {"type": "string"}, "fieldValidation": {"type": "object", "properties": {"expiryPeriod": {"type": "string"}}, "required": ["expiryPeriod"]}}, "required": ["home", "created", "updated", "deleted", "delete", "detail", "title", "description", "implementation", "validation", "expiryPeriod", "contact", "score", "rateScore", "rateCount", "teams", "badges", "levels", "fieldValidation"]}, "skillDTO": {"type": "object", "properties": {"description": {"type": "string"}, "validation": {"type": "string"}, "implementation": {"type": "string"}}, "required": ["description", "validation", "implementation"]}}, "required": ["skill", "skillDTO"]}}, "required": ["teamdojoApp"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"teamdojoApp" : {"skill" : {"home" : {"title" : "Skills", "createLabel" : "Create a new Skill", "createOrEditLabel" : "Create or edit a Skill"}, "created" : "A new Skill is created with identifier {{ param }}", "updated" : "A Skill is updated with identifier {{ param }}", "deleted" : "A Skill is deleted with identifier {{ param }}", "delete" : {"question" : "Are you sure you want to delete Skill {{ id }}?"}, "detail" : {"title" : "Skill", "rateCount" : "Votes", "modalTitle" : "Vote for it", "modalClose" : "Close", "modalSubmit" : "Submit your voting"}, "title" : "Title", "description" : "Description", "implementation" : "Implementation", "validation" : "Validation", "expiryPeriod" : "Expiry Period (in days)", "contact" : "Contact", "score" : "Score", "rateScore" : "Rate Score", "rateCount" : "Rate Count", "teams" : "Teams", "badges" : "Badges", "levels" : "Levels", "fieldValidation" : {"expiryPeriod" : "The expiry period must be a positive integer."}}, "skillDTO" : {"description" : "description", "validation" : "validation", "implementation" : "implementation"}}} | json_instruct | {"type": "object", "properties": {"teamdojoApp": {"type": "object", "properties": {"skill": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}}, "required": ["title", "createLabel", "createOrEditLabel"]}, "created": {"type": "string"}, "updated": {"type": "string"}, "deleted": {"type": "string"}, "delete": {"type": "object", "properties": {"question": {"type": "string"}}, "required": ["question"]}, "detail": {"type": "object", "properties": {"title": {"type": "string"}, "rateCount": {"type": "string"}, "modalTitle": {"type": "string"}, "modalClose": {"type": "string"}, "modalSubmit": {"type": "string"}}, "required": ["title", "rateCount", "modalTitle", "modalClose", "modalSubmit"]}, "title": {"type": "string"}, "description": {"type": "string"}, "implementation": {"type": "string"}, "validation": {"type": "string"}, "expiryPeriod": {"type": "string"}, "contact": {"type": "string"}, "score": {"type": "string"}, "rateScore": {"type": "string"}, "rateCount": {"type": "string"}, "teams": {"type": "string"}, "badges": {"type": "string"}, "levels": {"type": "string"}, "fieldValidation": {"type": "object", "properties": {"expiryPeriod": {"type": "string"}}, "required": ["expiryPeriod"]}}, "required": ["home", "created", "updated", "deleted", "delete", "detail", "title", "description", "implementation", "validation", "expiryPeriod", "contact", "score", "rateScore", "rateCount", "teams", "badges", "levels", "fieldValidation"]}, "skillDTO": {"type": "object", "properties": {"description": {"type": "string"}, "validation": {"type": "string"}, "implementation": {"type": "string"}}, "required": ["description", "validation", "implementation"]}}, "required": ["skill", "skillDTO"]}}, "required": ["teamdojoApp"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 1922, "sex" : "F", "n" : 5, "prop" : 4.01e-06}, {"year" : 1925, "sex" : "F", "n" : 6, "prop" : 4.75e-06}, {"year" : 1926, "sex" : "F", "n" : 7, "prop" : 5.69e-06}, {"year" : 1927, "sex" : "F", "n" : 8, "prop" : 6.47e-06}, {"year" : 1928, "sex" : "F", "n" : 5, "prop" : 4.18e-06}, {"year" : 1932, "sex" : "F", "n" : 5, "prop" : 4.52e-06}, {"year" : 1933, "sex" : "F", "n" : 9, "prop" : 8.6e-06}, {"year" : 1934, "sex" : "F", "n" : 5, "prop" : 4.62e-06}, {"year" : 1935, "sex" : "F", "n" : 7, "prop" : 6.44e-06}, {"year" : 1937, "sex" : "F", "n" : 6, "prop" : 5.45e-06}, {"year" : 1938, "sex" : "F", "n" : 5, "prop" : 4.38e-06}, {"year" : 1939, "sex" : "F", "n" : 9, "prop" : 7.94e-06}, {"year" : 1940, "sex" : "F", "n" : 8, "prop" : 6.77e-06}, {"year" : 1941, "sex" : "F", "n" : 5, "prop" : 4.01e-06}, {"year" : 1943, "sex" : "F", "n" : 7, "prop" : 4.88e-06}, {"year" : 1944, "sex" : "F", "n" : 9, "prop" : 6.59e-06}, {"year" : 1949, "sex" : "F", "n" : 6, "prop" : 3.42e-06}, {"year" : 1950, "sex" : "F", "n" : 10, "prop" : 5.69e-06}, {"year" : 1952, "sex" : "F", "n" : 7, "prop" : 3.68e-06}, {"year" : 1954, "sex" : "F", "n" : 8, "prop" : 4.02e-06}, {"year" : 1955, "sex" : "F", "n" : 8, "prop" : 3.99e-06}, {"year" : 1957, "sex" : "F", "n" : 5, "prop" : 2.38e-06}, {"year" : 1958, "sex" : "F", "n" : 6, "prop" : 2.91e-06}, {"year" : 1960, "sex" : "F", "n" : 13, "prop" : 6.25e-06}, {"year" : 1962, "sex" : "F", "n" : 5, "prop" : 2.47e-06}, {"year" : 1963, "sex" : "F", "n" : 8, "prop" : 4.02e-06}, {"year" : 1964, "sex" : "F", "n" : 6, "prop" : 3.07e-06}, {"year" : 1966, "sex" : "F", "n" : 5, "prop" : 2.85e-06}, {"year" : 1967, "sex" : "F", "n" : 5, "prop" : 2.91e-06}, {"year" : 1969, "sex" : "F", "n" : 5, "prop" : 2.84e-06}, {"year" : 1971, "sex" : "F", "n" : 5, "prop" : 2.85e-06}, {"year" : 1973, "sex" : "F", "n" : 5, "prop" : 3.22e-06}, {"year" : 1984, "sex" : "F", "n" : 7, "prop" : 3.88e-06}, {"year" : 1987, "sex" : "F", "n" : 5, "prop" : 2.67e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}}, "required": ["name", "version", "main", "description", "license", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@superstructure.net/scroll-lock", "version" : "0.0.2", "main" : "scroll-lock.js", "description" : "Reliably lock body scroll.", "license" : "MIT", "repository" : "hatsumatsu/scroll-lock"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}}, "required": ["name", "version", "main", "description", "license", "repository"], "$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" : "f80af6c5dab1022d971a379c83820fc3b63d332b"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Schema": {"type": "string"}, "ConnectionString": {"type": "string"}, "ConfigurationFile": {"type": "string"}, "AuditTableTemplateFile": {"type": "string"}, "TriggerTemplateFile": {"type": "string"}, "OutputFile": {"type": "string"}, "PlaceHolderValues": {"type": "object", "properties": {"OLD_COLUMNS_PLACEHOLDER": {"type": "string"}, "NEW_COLUMNS_PLACEHOLDER": {"type": "string"}, "TABLE_NAME_PLACEHOLDER": {"type": "string"}, "AUDIT_TABLE_NAME_PLACEHOLDER": {"type": "string"}}, "required": ["OLD_COLUMNS_PLACEHOLDER", "NEW_COLUMNS_PLACEHOLDER", "TABLE_NAME_PLACEHOLDER", "AUDIT_TABLE_NAME_PLACEHOLDER"]}, "TableList": {"type": "array", "items": {}}}, "required": ["Schema", "ConnectionString", "ConfigurationFile", "AuditTableTemplateFile", "TriggerTemplateFile", "OutputFile", "PlaceHolderValues", "TableList"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Schema" : "T4MY_SAMPLE", "ConnectionString" : "server=127.0.0.1;port=3306;user=t4my-user-ro;password=acbd83c3e7e0;database=T4MY_SAMPLE", "ConfigurationFile" : "configs/t4my.default-config.json", "AuditTableTemplateFile" : "templates/t4my.default-audittable-template.txt", "TriggerTemplateFile" : "templates/t4my.default-trigger-template.txt", "OutputFile" : "t4MySql-trigger-script.sql", "PlaceHolderValues" : {"OLD_COLUMNS_PLACEHOLDER" : "${COLUMN_LIST_OLD}", "NEW_COLUMNS_PLACEHOLDER" : "${COLUMN_LIST_NEW}", "TABLE_NAME_PLACEHOLDER" : "${TABLE}", "AUDIT_TABLE_NAME_PLACEHOLDER" : "${AUDIT_TABLE}"}, "TableList" : []} | json_instruct | {"type": "object", "properties": {"Schema": {"type": "string"}, "ConnectionString": {"type": "string"}, "ConfigurationFile": {"type": "string"}, "AuditTableTemplateFile": {"type": "string"}, "TriggerTemplateFile": {"type": "string"}, "OutputFile": {"type": "string"}, "PlaceHolderValues": {"type": "object", "properties": {"OLD_COLUMNS_PLACEHOLDER": {"type": "string"}, "NEW_COLUMNS_PLACEHOLDER": {"type": "string"}, "TABLE_NAME_PLACEHOLDER": {"type": "string"}, "AUDIT_TABLE_NAME_PLACEHOLDER": {"type": "string"}}, "required": ["OLD_COLUMNS_PLACEHOLDER", "NEW_COLUMNS_PLACEHOLDER", "TABLE_NAME_PLACEHOLDER", "AUDIT_TABLE_NAME_PLACEHOLDER"]}, "TableList": {"type": "array", "items": {}}}, "required": ["Schema", "ConnectionString", "ConfigurationFile", "AuditTableTemplateFile", "TriggerTemplateFile", "OutputFile", "PlaceHolderValues", "TableList"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "const set = require('regenerate')(0x5F, 0x2054, 0xFF3F);\n\nset.addRange(0x203F, 0x2040).addRange(0xFE33, 0xFE34).addRange(0xFE4D, 0xFE4F);\nmodule.exports = set;", "map" : {"version" : 3, "sources" : ["/Users/johncomonitski/Programming Projects/Dashboard V2/Dashboard/node_modules/regenerate-unicode-properties/General_Category/Connector_Punctuation.js"], "names" : ["set", "require", "addRange", "module", "exports"], "mappings" : "AAAA,MAAMA,GAAG,GAAGC,OAAO,CAAC,YAAD,CAAP,CAAsB,IAAtB,EAA4B,MAA5B,EAAoC,MAApC,CAAZ;;AACAD,GAAG,CAACE,QAAJ,CAAa,MAAb,EAAqB,MAArB,EAA6BA,QAA7B,CAAsC,MAAtC,EAA8C,MAA9C,EAAsDA,QAAtD,CAA+D,MAA/D,EAAuE,MAAvE;AACAC,MAAM,CAACC,OAAP,GAAiBJ,GAAjB", "sourcesContent" : ["const set = require('regenerate')(0x5F, 0x2054, 0xFF3F);\nset.addRange(0x203F, 0x2040).addRange(0xFE33, 0xFE34).addRange(0xFE4D, 0xFE4F);\nmodule.exports = set;\n"]}, "metadata" : {}, "sourceType" : "script"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "pathRules": {"type": "array", "items": {"type": "object", "properties": {"paths": {"type": "array", "items": {"type": "string"}}, "extends": {"type": "array", "items": {"type": "string"}}}, "required": ["paths", "extends"]}}}, "required": ["extends", "pathRules"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : ["config:base"], "pathRules" : [{"paths" : ["website/package.json"], "extends" : ["config:base"]}, {"paths" : ["website/live/package.json"], "extends" : ["config:base"]}, {"paths" : ["actions/cleanup/package.json"], "extends" : ["config:base"]}, {"paths" : ["actions/merged/package.json"], "extends" : ["config:base"]}]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "array", "items": {"type": "string"}}, "pathRules": {"type": "array", "items": {"type": "object", "properties": {"paths": {"type": "array", "items": {"type": "string"}}, "extends": {"type": "array", "items": {"type": "string"}}}, "required": ["paths", "extends"]}}}, "required": ["extends", "pathRules"], "$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"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_70mxf", "name" : "mdr270"}, "date" : {"day" : 1513209600, "full" : 1513224833, "month" : 1512086400, "week" : 1512864000}, "id" : "t3_7jp5po", "misc" : {"postHint" : "link"}, "picture" : {"filesize" : 67063, "fullUrl" : "https://external-preview.redd.it/BW-2G31EuJcpmJdcmO2wV7q3yLmuWtqXvKHVjRPkyTE.jpg?auto=webp&s=ddccb1ec5d78e32327414388fcd82dd582f51648", "hash" : "7e515d59bb", "height" : 495, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAMABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAQIEBf/EACIQAAICAQQBBQAAAAAAAAAAAAEDAgQRABIhMWEFBkGh8P/EABQBAQAAAAAAAAAAAAAAAAAAAAP/xAAdEQABAgcAAAAAAAAAAAAAAAAAEiEBAxMiMVGR/9oADAMBAAIRAxEAPwBqSlIRNtqvMBoUuA25HMOx9HVlulUpVGYMZmcJczjuJOw8DA/c6wKHuK2xS1TWgwC4gDbL4A5770L3rNl05qlFYXBZYIjIGdp8+dFThLuzrriKUx//2Q==", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/DrAVtVGbnOv_gRqRZva0YvC1vxyP7qbW50oQ7ZIqHFA.jpg", "url" : "https://external-preview.redd.it/BW-2G31EuJcpmJdcmO2wV7q3yLmuWtqXvKHVjRPkyTE.jpg?width=640&crop=smart&auto=webp&s=266a8b5e0e26951071e1d096169c41f30e03ee07", "width" : 640}, "score" : {"comments" : 5, "downs" : 0, "isCurated" : false, "ratio" : 0.88, "ups" : 11, "value" : 11}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["World"], "title" : "First World, First Time DM and Having a Blast", "url" : "https://www.reddit.com/r/dndmaps/comments/7jp5po/first_world_first_time_dm_and_having_a_blast/"} | 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"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$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.